:root {
    --rv-bg-card: #ffffff;
    --rv-bg-hover: #f5f5f5;
    --rv-border: #e5e5e5;
    --rv-border-btn: #dddddd;
    --rv-text-primary: #fff;
    --rv-text-secondary: #555555;
    --rv-text-muted: #888888;
    --rv-text-icon: #fff;
    --rv-dot-inactive: #cccccc;
    --rv-dot-active: #333333;
    --rv-radius-card: 12px;
    --rv-radius-btn: 50%;
    --button-color: #367ef6;
}

* {
    box-sizing: border-box;
}

.sw {
    padding: 1.5rem 0;
    position: relative;
    width: 100%;
    font-family: sans-serif;
}

.sv {
    overflow: hidden;
    width: 100%;
}

.st {
    display: flex;
    transition: transform 0.45s cubic-bezier(.4, 0, .2, 1);
    width: 100%;
}

.slide {
    min-width: 100%;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 0 80px;
}

.rc {
    /* background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-card); */
    padding: 1.55rem;
    display: flex;
    gap: 16px;
    align-items: flex-start;
    min-width: 0;
}

.rl {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
    width: 150px;
}

.av {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    font-weight: 500;
}

.rname {
    font-size: 15px;
    font-weight: 900;
    font-family: 'Montserrat', Arial, sans-serif;
    color: var(--rv-text-primary);
    margin: 0;
    text-align: center;
    word-break: break-word;
    white-space: normal;
    line-height: 1.3;
    margin-top: 10px;
}

.rrole {
    font-size: 11px;
    color: var(--rv-text-primary);
    margin: 0;
    text-align: center;
}

.rt {
    font-size: 15px;
    font-family: 'Montserrat', Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: var(--rv-text-secondary);
    line-height: 1.65;
    margin: 0;
    min-width: 0;
    flex: 1;

    background: var(--rv-bg-card);
    border: 1px solid var(--rv-border);
    border-radius: var(--rv-radius-card);
    padding: 1.55rem;
    
}

.arr {
    position: absolute;
    top: 39%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: var(--rv-radius-btn);
    border: 1px solid var(--rv-border-btn);
    background: var(--rv-bg-card);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
    z-index: 2;
}

.arr:hover {
    background: var(--rv-bg-hover);
}

.arr svg {
    width: 16px;
    height: 16px;
    stroke: var(--rv-text-icon);
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

#prev {
    left: 0;
    background-color: var(--button-color);
    border-color: var(--button-color);
}

#next {
    right: 0;
    background-color: var(--button-color);
    border-color: var(--button-color);
}

.dots {
    display: flex;
    gap: 6px;
    justify-content: center;
    margin-top: 1.25rem;
}

.dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--rv-dot-inactive);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.dot.active {
    background: var(--rv-dot-active);
    transform: scale(1.3);
}

@media (max-width: 520px) {
    .slide {
        grid-template-columns: minmax(0, 1fr);
        padding: 0 44px;
    }
}