.rmUIbioblocks {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rmUIbioblocks__content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.rmUIbio__card {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 17px;
    border-radius: 21px;
    border: 2px solid var(--elements-border);
    background-color: var(--block-bg);
}

.rmUIbio__card-title {
    font-family: 'Stolzl';
    font-weight: 600;
    color: var(--blue-color);
    font-size: 40px;
    line-height: 1;
}

.rmUIbio__card-text {
    font-family: 'Stolzl', sans-serif;
    font-weight: 500;
    color: var(--gray-color);
    font-size: 16px;
    line-height: 1;
}


/* МОЯ ИСТОРИЯ */
.rmUIhistory {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rmUIhistory__content {
    display: flex;
    flex-direction: column;
    width: 100%;
}

.rmUIhistory__content-arrows__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 31px;
    align-items: center;
}

.rmUIhistory__content-arrow {
    height: 30px;
    width: 30px;
    fill: var(--gray-color);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.rmUIhistory__content-arrow:hover {
    fill: var(--blue-color);
}

.rmUIhistory__content-arrow-prev {
    transform: rotate(-180deg);
}

.rmUIhistory__content-arrow.hidden {
    opacity: 0;
    pointer-events: none;
}

.rmUIhistory__track.dragging {
    transition: none;
    cursor: grabbing;
}



.rmUIhistory__slider {
    overflow: hidden;
    width: 100%;
    position: relative;
}

.rmUIhistory__track {
    display: flex;
    gap: 17px;
    will-change: transform;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.rmUIhistory__card {
    flex: 0 0 calc((100% - 34px) / 3);
}



.rmUIhistory__card {
    display: flex;
    flex-direction: column;
    gap: 11px;
    padding: 17px;
    border-radius: 21px;
    border: 2px solid var(--elements-border);
    background-color: var(--block-bg);
    transition: all 0.3s ease;
}

.rmUIhistory__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0, 119, 255, 0.18), 0 4px 10px rgba(0, 119, 255, 0.12);
}

.rmUIhistory__card-icon {
    position: relative;
    height: 11px;
    width: 11px;
    border-radius: 50%;
    background: var(--blue-color);
    box-shadow: 0 0 0 0 rgba(0, 119, 255, 0.6);
    margin-bottom: 13px;
    animation: pulse 2.2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.rmUIhistory__card-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0, 119, 255, 0.4);
    animation: pulse-ring 2.2s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

.rmUIhistory__card-icon::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: rgba(0, 217, 255, 0.3);
    animation: pulse-ring 2.2s infinite cubic-bezier(0.4, 0, 0.2, 1);
    animation-delay: 0.8s;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 119, 255, 0.6);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 0 0 6px rgba(0, 119, 255, 0.15);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 119, 255, 0);
    }
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    70% {
        transform: scale(2.8);
        opacity: 0;
    }
    100% {
        transform: scale(2.8);
        opacity: 0;
    }
}


.rmUIhistory__card-info {
    display: flex;
    flex-direction: column;
}

.rmUIhistory__card-date--text {
    font-family: 'Stolzl';
    font-weight: 600;
    color: var(--blue-color);
    font-size: 31px;
    margin-bottom: 11px;
}

.rmUIhistory__card-event--text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--gray-color);
    font-size: 16px;
}