:root {
    --navbar-height: 130px;
    --page-padding: clamp(1.5rem, 6vw, 12rem);
}

#main-content .rs1:first-of-type {
    margin-top: var(--navbar-height);
    min-height: calc(100vh - var(--navbar-height));
}

section {
    padding-block: clamp(4rem, 10vh, 13.5rem);
    position: relative;
}

.rs3-left,
.rs3-right,
.rs4-left,
.rs4-right,
.rs5-left,
.rs5-right {
    min-height: auto;
    height: auto;
}

/* ===== SHARED: SECTION INNER CONTAINERS (rs3–rs5) ===== */
.rs3-inner,
.rs4-inner,
.rs5-inner {
    max-width: 2560px;
    margin-inline: auto;
    display: flex;
    width: 100%;
    gap: clamp(3rem, 5vw, 7rem);
}

/* ===== SHARED: SECTION HEADINGS (rs2–rs5) ===== */
.rs2-inner h2,
.rs3-left h2,
.rs4-left h2,
.rs5-left h2 {
    font-size: clamp(2rem, 3.5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 0.02em;
    margin-bottom: clamp(1.2rem, 2vw, 2.5rem);
    font-style: italic;
    color: var(--text-primary);
}

/* ===== SHARED: TWO-COLUMN FLEX SIDES (rs3–rs5) ===== */
.rs3-left,
.rs3-right,
.rs4-left,
.rs4-right,
.rs5-left,
.rs5-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
}

.rs3-left,
.rs4-left,
.rs5-left {
    justify-content: center;
}

.rs3-left>*,
.rs4-left>*,
.rs5-left>* {
    max-width: 800px;
    width: 100%;
}

/* ===== SHARED: SECTION BODY TEXT (rs3–rs5) ===== */
.rs3-text p,
.rs4-text p,
.rs5-text p {
    font-size: clamp(1rem, 1.4vw, 2rem);
    line-height: 1.5;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
    margin-inline: auto;
}

/* ===== SHARED: RIGHT COLUMN ALIGNMENT (rs3–rs5) ===== */
.rs3-right,
.rs4-right,
.rs5-right {
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

/* ===== SHARED: MEDIA FRAMES (rs3–rs5) ===== */
.rs3-media,
.rs4-media,
.rs5-media {
    width: 100%;
    max-width: clamp(240px, 34vw, 750px);
    background: var(--bg-elevated);
    border-radius: clamp(40px, 5vw, 80px);
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid var(--border-subtle);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(212, 169, 41, 0.05) inset;
    position: relative;
}

.rs3-media-img,
.rs4-media-img,
.rs5-media-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
    display: block;
}

/* ===== SECTION 1 ===== */
.rs1 {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: var(--page-padding);
    background-color: var(--bg-primary);
    position: relative;
    overflow-x: clip;
    overflow-y: visible;
}

.rs1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--page-padding);
    right: var(--page-padding);
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-subtle), transparent);
    pointer-events: none;
    z-index: 1;
}

.rs1-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 55% at 50% 78%,
            rgba(212, 169, 41, 0.08) 0%,
            transparent 65%);
    pointer-events: none;
}

.rs1-inner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 2;
}

.rs1-showcase {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-inline: calc(-1 * var(--page-padding));
    width: calc(100% + 2 * var(--page-padding));
}

.rs1-carousel-dots {
    display: none;
}

.rs1-carousel-arrow {
    display: none;
}

.rs1-showcase-fan {
    position: relative;
    height: clamp(280px, min(42vw, 50vh), 660px);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rs1-showcase-wrapper {
    position: absolute;
    transform: translateX(var(--fan-x, 0px));
    transition:
        transform 0.42s cubic-bezier(0.34, 1.38, 0.64, 1),
        filter 0.32s ease,
        box-shadow 0.32s ease;
}

.rs1-showcase-wrapper:nth-child(1) {
    --fan-x: -26vw;
    z-index: 1;
    filter: brightness(0.68) saturate(0.85);
}

.rs1-showcase-wrapper:nth-child(2) {
    --fan-x: -13vw;
    z-index: 2;
    filter: brightness(0.82) saturate(0.92);
}

.rs1-showcase-wrapper:nth-child(3) {
    --fan-x: 0px;
    z-index: 5;
    filter: brightness(1) saturate(1);
}

.rs1-showcase-wrapper:nth-child(4) {
    --fan-x: 13vw;
    z-index: 2;
    filter: brightness(0.82) saturate(0.92);
}

.rs1-showcase-wrapper:nth-child(5) {
    --fan-x: 26vw;
    z-index: 1;
    filter: brightness(0.68) saturate(0.85);
}

.rs1-showcase-wrapper:nth-child(1):nth-last-child(4) {
    --fan-x: -19.5vw;
}

.rs1-showcase-wrapper:nth-child(2):nth-last-child(3) {
    --fan-x: -6.5vw;
}

.rs1-showcase-wrapper:nth-child(3):nth-last-child(2) {
    --fan-x: 6.5vw;
}

.rs1-showcase-wrapper:nth-child(4):nth-last-child(1) {
    --fan-x: 19.5vw;
}

.rs1-showcase-wrapper:nth-child(1):nth-last-child(3) {
    --fan-x: -13vw;
    z-index: 2;
    filter: brightness(0.82) saturate(0.92);
}

.rs1-showcase-wrapper:nth-child(2):nth-last-child(2) {
    --fan-x: 0px;
    z-index: 5;
    filter: brightness(1) saturate(1);
}

.rs1-showcase-wrapper:nth-child(3):nth-last-child(1) {
    --fan-x: 13vw;
    z-index: 2;
    filter: brightness(0.82) saturate(0.92);
}

.rs1-showcase-wrapper:nth-child(1):nth-last-child(2) {
    --fan-x: -6.5vw;
    z-index: 2;
    filter: brightness(0.82) saturate(0.92);
}

.rs1-showcase-wrapper:nth-child(2):nth-last-child(1) {
    --fan-x: 6.5vw;
    z-index: 2;
    filter: brightness(0.82) saturate(0.92);
}

.rs1-showcase-wrapper:nth-child(1):nth-last-child(1) {
    --fan-x: 0px;
    z-index: 5;
    filter: brightness(1) saturate(1);
}

.rs1-showcase-wrapper:hover {
    transform: translateX(var(--fan-x, 0px)) translateY(-58px) scale(1.035) !important;
    z-index: 20 !important;
    filter: brightness(1) saturate(1) !important;
}

/* League badge shown on hover above each fan card */
.rs1-showcase-league-badge {
    display: block;
    position: absolute;
    top: -2.8rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold-core);
    white-space: nowrap;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(212, 169, 41, 0.3);
    background: rgba(212, 169, 41, 0.06);
    backdrop-filter: blur(8px);
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease;
    pointer-events: none;
    z-index: 1;
}

.rs1-showcase-wrapper:hover .rs1-showcase-league-badge {
    opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

.rs1-showcase-fan .result-card {
    width: clamp(200px, min(24vw, 35vh), 370px);
    cursor: pointer;
    flex-shrink: 0;
}

.rs1-empty {
    color: var(--text-muted);
    font-size: 1.6rem;
    font-style: italic;
    text-align: center;
    padding: 6rem 2rem;
}

/* ===== SECTION 2 ===== */
.rs2 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: var(--page-padding);
    background-color: var(--bg-surface);
    background-image: radial-gradient(ellipse at center, rgba(212, 169, 41, 0.03) 0%, transparent 65%);
}

.rs2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--page-padding);
    right: var(--page-padding);
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-subtle), transparent);
    pointer-events: none;
}

.rs2-inner {
    text-align: center;
}

.rs2-inner p {
    font-size: clamp(1rem, 1.4vw, 2rem);
    line-height: 1.5;
    color: var(--text-secondary);
}

/* ===== SECTIONS 3 / 4 / 5 ===== */
.rs3,
.rs5 {
    width: 100%;
    display: block;
    padding-inline: var(--page-padding);
    background-color: var(--bg-primary);
}

.rs4 {
    width: 100%;
    display: block;
    padding-inline: var(--page-padding);
    background-color: var(--bg-surface);
}

.rs3::after,
.rs5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--page-padding);
    right: var(--page-padding);
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-subtle), transparent);
    pointer-events: none;
}

/* ===== SECTION 6 ===== */
.rs6 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: var(--page-padding);
    background-color: var(--bg-surface);
    background-image: radial-gradient(ellipse at center, rgba(212, 169, 41, 0.03) 0%, transparent 65%);
}

.rs6::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--page-padding);
    right: var(--page-padding);
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-subtle), transparent);
    pointer-events: none;
}

.rs6-inner {
    text-align: center;
}

.rs6-inner h2 {
    font-size: clamp(2rem, 3.5vw, 4.5rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    margin-bottom: clamp(1.2rem, 2vw, 2.5rem);
    color: var(--text-primary);
}

.rs6-inner p {
    font-size: clamp(1rem, 1.4vw, 2rem);
    line-height: 1.5;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    margin-inline: auto;
}

.rs6-grid {
    display: flex;
    flex-direction: column;
    gap: clamp(1.5rem, 3vw, 3rem);
    margin-top: clamp(4rem, 8vh, 7rem);
}

.rs6-row {
    display: flex;
    justify-content: center;
    gap: clamp(1.5rem, 3vw, 3rem);
    width: 100%;
}

.rs6-card {
    flex: 0 0 clamp(130px, 17vw, 280px);
}

.rs6-card-link {
    display: block;
    text-decoration: none;
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 27%;
    overflow: hidden;
    background: var(--bg-elevated);
    border: 1px solid var(--border-default);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.40);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.rs6-card-link:hover {
    border-color: rgba(212, 169, 41, 0.4);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(212, 169, 41, 0.12) inset;
}

.rs6-card-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
    transition: transform 0.35s ease;
    aspect-ratio: 1 / 1;
    border-radius: 27%;
    background: var(--bg-elevated);
    border: 1px solid var(--border-default);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.40);
}

.rs6-card-link:hover .rs6-card-img {
    transform: scale(1.06);
}

.rs6-card-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    padding: 12%;
}

.rs6-card-overlay {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-inline: clamp(0.5rem, 1vw, 1rem);
    padding-bottom: clamp(0.75rem, 1.4vw, 1.6rem);
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.88) 0%,
            rgba(0, 0, 0, 0.5) 40%,
            transparent 75%);
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.28s ease, transform 0.28s ease;
    pointer-events: none;
}

.rs6-card-link:hover .rs6-card-overlay {
    opacity: 1;
    transform: translateY(0);
}

.rs6-card-type {
    display: block;
    font-size: clamp(0.65rem, 0.95vw, 1.1rem);
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.03em;
    line-height: 1.2;
    text-align: center;
}

/* ===== SECTION 7 ===== */
.rs7 {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-inline: var(--page-padding);
    background-color: var(--bg-primary);
    overflow-x: clip;
    overflow-y: visible;
}

.rs7::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: var(--page-padding);
    right: var(--page-padding);
    height: 1px;
    background: linear-gradient(to right, transparent, var(--border-subtle), transparent);
    pointer-events: none;
}

.rs7-inner {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

.rs7-inner h2 {
    font-size: clamp(2rem, 3.5vw, 4.5rem);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.02em;
    color: var(--text-primary);
    margin-bottom: clamp(1.2rem, 2vw, 2.5rem);
    text-align: center;
}

.rs7-inner>p {
    font-size: clamp(1rem, 1.4vw, 2rem);
    line-height: 1.5;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: clamp(3.5rem, 6vh, 6rem);
}

.rs7-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(1.2rem, 2vw, 2.5rem);
    width: 100%;
}

.rs7-card {
    flex-shrink: 0;
}

.rs7-card .result-card {
    width: clamp(220px, 22vw, 340px);
    cursor: pointer;
}

.rs7-button {
    margin-top: clamp(3rem, 5vh, 5rem);
}

/* ===== RESPONSIVE BREAKPOINTS ===== */

/* Large monitor — ≤1920px */
@media (max-width: 1920px) {
    :root {
        --navbar-height: 110px;
    }
}

/* Large laptop — ≤1600px */
@media (max-width: 1600px) {}

/* Standard laptop — ≤1200px */
@media (max-width: 1200px) {
    :root {
        --page-padding: clamp(1.5rem, 5vw, 5rem);
        --navbar-height: 90px;
    }

    section {
        padding-block: clamp(3.5rem, 7vh, 8rem);
    }

    .rs1-inner {
        gap: 0.75rem;
    }

    .rs1-button {
        margin-top: 0.5rem;
    }

    .rs1-showcase-fan {
        height: clamp(380px, 40vw, 520px);
    }

    .rs1-showcase-fan .result-card {
        width: clamp(230px, 23vw, 320px);
        height: clamp(320px, 32vw, 450px);
    }

    .rs1-showcase-fan .card-cutout {
        height: clamp(120px, 11vw, 170px);
    }

    .rs1-showcase-wrapper:hover {
        transform: translateX(var(--fan-x, 0px)) translateY(-44px) scale(1.03) !important;
    }

    .rs3-inner,
    .rs4-inner,
    .rs5-inner {
        flex-direction: column;
        gap: 4rem;
    }

    .rs3-left,
    .rs4-left,
    .rs5-left {
        align-items: center;
        text-align: center;
    }

    .rs3-left>*,
    .rs4-left>*,
    .rs5-left>* {
        max-width: 100%;
    }

    .rs3-right,
    .rs4-right,
    .rs5-right {
        width: 100%;
        align-items: center;
    }

    .rs6-grid {
        margin-top: clamp(3rem, 6vh, 5rem);
    }
}

/* Tablet — ≤900px */
@media (max-width: 900px) {
    :root {
        --page-padding: clamp(1.5rem, 4vw, 3.5rem);
        --navbar-height: 80px;
    }

    section {
        padding-block: clamp(3rem, 5vh, 5rem);
    }

    .rs1-inner {
        gap: 0.75rem;
    }

    .rs1-showcase {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 50%;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        cursor: grab;
        padding-block: 1rem 2rem;
        margin-block: -1rem -2rem;
    }

    .rs1-showcase:active {
        cursor: grabbing;
    }

    .rs1-showcase.is-dragging {
        cursor: grabbing;
        scroll-snap-type: none;
    }

    .rs1-showcase::-webkit-scrollbar {
        display: none;
    }

    .rs1-carousel-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.55rem;
        margin-top: 0;
    }

    .rs1-carousel-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        border: 1px solid rgba(212, 169, 41, 0.35);
        background: transparent;
        cursor: pointer;
        padding: 0;
        transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
    }

    .rs1-carousel-dot.is-active {
        background: var(--gold-core);
        border-color: var(--gold-core);
        transform: scale(1.35);
    }

    .rs1-showcase-wrapper:hover {
        transform: none !important;
        filter: brightness(0.68) saturate(0.85) !important;
        z-index: auto !important;
    }

    .rs1-showcase-league-badge {
        opacity: 1;
        transform: translateX(-50%);
    }

    .rs1-showcase-wrapper:not(.is-active) {
        pointer-events: none;
    }

    .rs1-showcase-wrapper:not(.is-active) .result-card {
        pointer-events: auto;
    }

    .rs1-carousel-navwrap {
        position: relative;
        width: 100%;
        isolation: isolate;
        pointer-events: none;
    }

    .rs1-carousel-arrow {
        display: flex;
        pointer-events: auto;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 30;
        width: 2.6rem;
        height: 2.6rem;
        border-radius: 50%;
        background: rgba(10, 10, 10, 0.55);
        border: 1px solid rgba(212, 169, 41, 0.22);
        color: var(--gold-core, #d4a929);
        cursor: pointer;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition: background 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
        pointer-events: auto;
    }

    .rs1-carousel-arrow:hover {
        background: rgba(212, 169, 41, 0.14);
        transform: translateY(-50%) scale(1.08);
    }

    .rs1-carousel-arrow.prev {
        left: 0.75rem;
    }

    .rs1-carousel-arrow.next {
        right: 0.75rem;
    }

    .rs1-carousel-arrow svg {
        width: 1.1rem;
        height: 1.1rem;
        stroke: currentColor;
        stroke-width: 2.2;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
        flex-shrink: 0;
    }

    .rs1-carousel-arrow[data-disabled="true"] {
        opacity: 0.18;
        pointer-events: none;
    }

    .rs1-showcase-fan {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        height: auto;
        width: max-content;
        gap: 1rem;
        padding-inline: calc(50vw - clamp(100px, 26vw, 145px));
        padding-block: 6rem 1rem;
    }

    .rs1-showcase-wrapper {
        position: static !important;
        transform: none !important;
        filter: brightness(0.68) saturate(0.85) !important;
        transition: filter 0.3s ease, transform 0.3s ease !important;
        scroll-snap-align: center;
        flex-shrink: 0;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .rs1-showcase-wrapper:hover {
        transform: translateY(-10px) scale(1.02) !important;
    }

    .rs1-showcase-wrapper.is-active {
        filter: brightness(1) saturate(1) !important;
        transform: translateY(-12px) scale(1.02) !important;
    }

    .rs1-showcase-fan .result-card {
        width: clamp(200px, 52vw, 290px);
        height: clamp(267px, 69vw, 387px);
        cursor: pointer;
    }

    .rs1-button {
        margin-top: 0.5rem;
    }

    /* rs7 carousel */
    .rs7-grid {
        justify-content: flex-start;
        overflow-x: auto;
        overflow-y: visible;
        flex-wrap: nowrap;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 50vw;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 1rem;
        padding-inline: calc(50vw - clamp(75px, 19.5vw, 109px));
        padding-block: 4rem 3rem;
        margin-block: -4rem -3rem;
        pointer-events: none;
    }

    .rs7-grid::-webkit-scrollbar {
        display: none;
    }

    .rs7-card {
        scroll-snap-align: center;
        flex-shrink: 0;
        filter: brightness(0.68) saturate(0.85) !important;
        transform: none !important;
        transition: filter 0.3s ease, transform 0.3s ease !important;
        opacity: 1 !important;
        pointer-events: auto;
    }

    .rs7-card.is-active {
        filter: brightness(1) saturate(1) !important;
        transform: translateY(-12px) scale(1.02) !important;
    }

    .rs7-card:hover {
        transform: translateY(-10px) scale(1.02) !important;
    }

    .rs7-card .result-card {
        width: clamp(150px, 39vw, 218px);
        cursor: pointer;
    }

    .rs7-carousel-navwrap {
        position: relative;
        width: calc(100% + 2 * var(--page-padding));
        margin-inline: calc(-1 * var(--page-padding));
        isolation: isolate;
        overflow: visible;
    }

    .rs7-carousel-dots {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 0.55rem;
        margin-top: 1.5rem;
    }

    .rs7-carousel-dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        border: 1px solid rgba(212, 169, 41, 0.35);
        background: transparent;
        cursor: pointer;
        padding: 0;
        transition: background 0.22s ease, transform 0.22s ease, border-color 0.22s ease;
    }

    .rs7-carousel-dot.is-active {
        background: var(--gold-core);
        border-color: var(--gold-core);
        transform: scale(1.35);
    }

    .rs7-button {
        margin-top: 1.25rem;
    }

    .rs7-carousel-arrow {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 30;
        width: 2.6rem;
        height: 2.6rem;
        border-radius: 50%;
        background: rgba(10, 10, 10, 0.55);
        border: 1px solid rgba(212, 169, 41, 0.22);
        color: var(--gold-core, #d4a929);
        cursor: pointer;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        transition: background 0.2s ease, opacity 0.2s ease;
    }

    .rs7-carousel-arrow:hover {
        background: rgba(212, 169, 41, 0.14);
    }

    .rs7-carousel-arrow.prev {
        left: 0.75rem;
    }

    .rs7-carousel-arrow.next {
        right: 0.75rem;
    }

    .rs7-carousel-arrow svg {
        width: 1.1rem;
        height: 1.1rem;
        stroke: currentColor;
        stroke-width: 2.2;
        fill: none;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

    .rs7-carousel-arrow[data-disabled="true"] {
        opacity: 0.18;
        pointer-events: none;
    }

    .rs7-card .result-card {
        width: clamp(190px, 26vw, 280px);
    }

    .rs7-card-placeholder {
        width: clamp(190px, 26vw, 280px);
        aspect-ratio: 3 / 4;
    }
}

/* Mobile — ≤640px */
@media (max-width: 640px) {
    :root {
        --page-padding: 1.25rem;
        --navbar-height: 70px;
    }

    section {
        padding-block: 2.5rem;
    }

    .rs1-showcase-fan .result-card {
        width: clamp(220px, 65vw, 280px);
        height: clamp(293px, 87vw, 373px);
    }


    .rs1-button {
        margin-top: 0.5rem;
    }

    .rs3-inner,
    .rs4-inner,
    .rs5-inner {
        gap: 3rem;
    }

    .rs6-row {
        flex-wrap: wrap;
        gap: clamp(1rem, 3vw, 1.5rem);
    }

    .rs6-card {
        flex: 0 0 calc(40% - 0.75rem);
    }

    .rs6-grid {
        gap: clamp(1rem, 3vw, 1.5rem);
        margin-top: 2.5rem;
    }

    .rs7-grid {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .rs7-carousel-navwrap .rs7-grid {
        flex-wrap: nowrap;
    }

    .rs7-card .result-card,
    .rs7-card-placeholder {
        width: clamp(220px, 65vw, 280px);
    }
}

/* Small mobile — ≤480px */
@media (max-width: 480px) {
    .rs1-showcase-fan .result-card {
        width: clamp(200px, 72vw, 250px);
        height: clamp(267px, 96vw, 333px);
    }


    .rs6-row {
        gap: 1rem;
    }

    .rs6-grid {
        gap: 1rem;
    }

    .rs7-inner h2 {
        margin-bottom: 1rem;
    }

    .rs7-card .result-card,
    .rs7-card-placeholder {
       width: clamp(200px, 72vw, 250px);
    }
}