.sr-suite {
    width: min(100%, 1350px);
    margin: 0 auto 1.2rem;
    padding: 1rem;
    border: 1px solid rgba(96, 165, 250, .24);
    border-radius: 16px;
    background: rgba(255, 255, 255, .86);
    box-shadow: 0 14px 36px rgba(15, 23, 42, .08);
    backdrop-filter: blur(14px);
}

.sr-suite-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: .9rem;
}

.sr-suite-kicker {
    color: #0ea5e9;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.sr-suite h2 {
    margin: .1rem 0 0;
    color: #0f172a;
    font-size: clamp(1.05rem, 1.6vw, 1.35rem);
    font-weight: 800;
}

.sr-suite-year {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .35rem .45rem .35rem .7rem;
    border: 1px solid rgba(148, 163, 184, .38);
    border-radius: 999px;
    background: rgba(248, 250, 252, .9);
    color: #475569;
    white-space: nowrap;
}

.sr-suite-year label {
    margin: 0;
    font-size: .86rem;
    font-weight: 700;
}

.sr-suite-year select {
    min-width: 5.4rem;
    border: 0;
    border-radius: 999px;
    padding: .35rem .85rem;
    background: #e0f2fe;
    color: #075985;
    font-weight: 800;
    outline: none;
}

.sr-suite-tabs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: .75rem;
}

.sr-suite-tab {
    display: flex;
    align-items: center;
    gap: .72rem;
    min-height: 76px;
    padding: .78rem .9rem;
    border: 1px solid rgba(148, 163, 184, .28);
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(248, 250, 252, .92), rgba(239, 246, 255, .76));
    color: #1e293b;
    text-decoration: none;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.sr-suite-tab i {
    display: inline-grid;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    place-items: center;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #06b6d4);
    color: #fff;
}

.sr-suite-tab strong,
.sr-suite-tab small {
    display: block;
}

.sr-suite-tab strong {
    color: inherit;
    font-size: .98rem;
    line-height: 1.25;
}

.sr-suite-tab small {
    margin-top: .18rem;
    color: #64748b;
    font-size: .78rem;
    line-height: 1.35;
}

.sr-suite-tab:hover,
.sr-suite-tab:focus-visible,
.sr-suite-tab.active {
    transform: translateY(-2px);
    border-color: rgba(14, 165, 233, .78);
    box-shadow: 0 14px 28px rgba(14, 165, 233, .18);
}

.sr-suite-tab.active {
    color: #075985;
    background: linear-gradient(135deg, rgba(224, 242, 254, .98), rgba(219, 234, 254, .92));
}

.sr-suite-tab.active i {
    background: linear-gradient(135deg, #0ea5e9, #2563eb);
}

html.dark .sr-suite,
html.dark-mode .sr-suite,
html[data-theme="dark"] .sr-suite {
    border-color: rgba(56, 189, 248, .28);
    background: rgba(15, 23, 42, .72);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .28);
}

html.dark .sr-suite h2,
html.dark-mode .sr-suite h2,
html[data-theme="dark"] .sr-suite h2 {
    color: #f8fafc;
}

html.dark .sr-suite-year,
html.dark-mode .sr-suite-year,
html[data-theme="dark"] .sr-suite-year {
    border-color: rgba(96, 165, 250, .26);
    background: rgba(30, 41, 59, .72);
    color: #cbd5e1;
}

html.dark .sr-suite-year select,
html.dark-mode .sr-suite-year select,
html[data-theme="dark"] .sr-suite-year select {
    background: rgba(14, 165, 233, .16);
    color: #bae6fd;
}

html.dark .sr-suite-tab,
html.dark-mode .sr-suite-tab,
html[data-theme="dark"] .sr-suite-tab {
    border-color: rgba(96, 165, 250, .2);
    background: linear-gradient(135deg, rgba(15, 23, 42, .9), rgba(30, 41, 59, .72));
    color: #e2e8f0;
}

html.dark .sr-suite-tab small,
html.dark-mode .sr-suite-tab small,
html[data-theme="dark"] .sr-suite-tab small {
    color: #94a3b8;
}

html.dark .sr-suite-tab:hover,
html.dark .sr-suite-tab:focus-visible,
html.dark .sr-suite-tab.active,
html.dark-mode .sr-suite-tab:hover,
html.dark-mode .sr-suite-tab:focus-visible,
html.dark-mode .sr-suite-tab.active,
html[data-theme="dark"] .sr-suite-tab:hover,
html[data-theme="dark"] .sr-suite-tab:focus-visible,
html[data-theme="dark"] .sr-suite-tab.active {
    border-color: rgba(34, 211, 238, .7);
    box-shadow: 0 16px 34px rgba(34, 211, 238, .14);
}

html.dark .sr-suite-tab.active,
html.dark-mode .sr-suite-tab.active,
html[data-theme="dark"] .sr-suite-tab.active {
    color: #e0f2fe;
    background: linear-gradient(135deg, rgba(14, 116, 144, .32), rgba(30, 64, 175, .22));
}

@media (max-width: 860px) {
    .sr-suite-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .sr-suite-year {
        width: 100%;
        justify-content: space-between;
    }

    .sr-suite-tabs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .sr-suite {
        border-radius: 12px;
        padding: .85rem;
    }

    .sr-suite-tab {
        min-height: 68px;
        padding: .72rem;
    }

    .sr-suite-tab i {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }
}

@media print {
    .sr-suite {
        display: none !important;
    }
}
