:root {
    --aurora-bg: #f5f7fb;
    --aurora-surface: #ffffff;
    --aurora-surface-alt: #f1f5ff;
    --aurora-border: rgba(15, 23, 42, 0.08);
    --aurora-card: #ffffff;
    --aurora-text: #1f2937;
    --aurora-subtle: #475569;
    --aurora-primary: #2563eb;
    --aurora-primary-soft: rgba(37, 99, 235, 0.16);
    --aurora-accent: #9333ea;
    --aurora-accent-soft: rgba(147, 51, 234, 0.2);
    --aurora-success: #22c55e;
    --aurora-warning: #fbbf24;
    --aurora-danger: #f87171;
    --aurora-radius-lg: 22px;
    --aurora-radius-md: 16px;
    --aurora-radius-sm: 12px;
    --aurora-shadow-soft: 0 24px 50px -30px rgba(15, 23, 42, 0.18);
    --aurora-shadow-card: 0 18px 48px -22px rgba(30, 64, 175, 0.18);
    --aurora-grid-gap: clamp(16px, 2.5vw, 32px);
    --aurora-transition: all 0.35s ease;
    --aurora-gradient: linear-gradient(135deg, rgba(37, 99, 235, 0.14) 0%, rgba(147, 51, 234, 0.12) 50%, rgba(6, 182, 212, 0.12) 100%);
    --aurora-card-gradient: linear-gradient(145deg, rgba(37, 99, 235, 0.18), rgba(147, 51, 234, 0.14));
    --aurora-glass: rgba(255, 255, 255, 0.8);
}

body[data-theme="aurora"] {
    background-color: var(--aurora-bg);
    background-image:
        radial-gradient(circle at 12% 20%, rgba(199, 210, 254, 0.45) 0, transparent 45%),
        radial-gradient(circle at 85% 12%, rgba(221, 214, 254, 0.45) 0, transparent 48%),
        linear-gradient(135deg, rgba(226, 232, 240, 0.45), rgba(248, 250, 252, 0.9));
    color: var(--aurora-text);
    font-family: 'IRANSans', 'Tahoma', sans-serif;
}

body[data-theme="aurora"] a {
    color: var(--aurora-primary);
    transition: var(--aurora-transition);
}

body[data-theme="aurora"] a:hover {
    color: var(--aurora-accent);
}

.aurora-page {
    max-width: 1440px;
    margin: 0 auto;
    padding: clamp(24px, 5vw, 48px) clamp(20px, 4vw, 60px);
    display: flex;
    flex-direction: column;
    gap: var(--aurora-grid-gap);
}

.aurora-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--aurora-grid-gap);
    width: 100%;
}

.widget-box,
.info-box-small,
.card,
.modern-card,
.ewTable {
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.02), rgba(148, 163, 184, 0.04));
    border: 1px solid var(--aurora-border);
    border-radius: var(--aurora-radius-md);
    box-shadow: var(--aurora-shadow-soft);
    backdrop-filter: blur(16px);
    overflow: hidden;
    transition: var(--aurora-transition);
    position: relative;
}

.widget-box::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.12), transparent),
                radial-gradient(circle at bottom left, rgba(147, 51, 234, 0.12), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.widget-box:hover::before {
    opacity: 1;
}

.widget-box:hover,
.info-box-small:hover,
.card:hover,
.modern-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--aurora-shadow-card);
}

.widget-inner,
.info-box-small-content {
    background: transparent !important;
    color: var(--aurora-text);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: clamp(8px, 1.4vw, 20px);
}

.section-header::after {
    content: "";
    display: block;
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.15), transparent);
    margin-inline-start: clamp(10px, 1.5vw, 18px);
}

.section-title {
    color: var(--aurora-text);
    font-size: clamp(1.15rem, 2vw, 1.45rem);
    font-weight: 700;
    position: relative;
}

.section-title::before {
    content: "";
    position: absolute;
    inset-inline-end: -12px;
    inset-block-start: 50%;
    translate: 0 -50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--aurora-primary);
    box-shadow: 0 0 12px rgba(37, 99, 235, 0.65);
}

.orders-info,
.new-users-name,
.card-title {
    color: var(--aurora-text);
    line-height: 1.7;
}

.orders-info {
    font-size: 0.95rem;
}

.orders-btn .btn,
.orders-btn .button-sm {
    background: var(--aurora-primary);
    border: none;
    border-radius: 999px;
    padding: 0.45rem 1.1rem;
    color: #fff !important;
    font-weight: 600;
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.25);
}

.orders-btn .btn:hover {
    background: var(--aurora-accent);
    box-shadow: 0 12px 35px rgba(147, 51, 234, 0.25);
}

.carousel-wrapper,
.carousel-inner {
    border-radius: var(--aurora-radius-lg);
    overflow: hidden;
    border: 1px solid rgba(37, 99, 235, 0.12);
    box-shadow: var(--aurora-shadow-card);
}

.carousel-indicators li {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(148, 163, 184, 0.45);
    border: none;
    transition: transform 0.3s ease, background 0.3s ease;
}

.carousel-indicators .active {
    transform: scale(1.45);
    background: var(--aurora-primary);
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    filter: brightness(0) invert(1);
}

.top_st_box {
    background: var(--aurora-surface-alt);
    border-radius: var(--aurora-radius-sm);
    padding-bottom: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.top_st_box .card-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.35rem;
}

.top_st_box .card-text {
    color: var(--aurora-subtle);
    font-size: 0.9rem;
}

.info-box-small {
    display: flex;
    flex-direction: column;
    background: linear-gradient(150deg, rgba(255, 255, 255, 0.98), rgba(226, 232, 255, 0.92));
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: var(--aurora-radius-md);
    gap: 1.2rem;
    padding: 0.95rem 1.15rem;
    box-shadow: var(--aurora-shadow-soft);
    color: var(--aurora-text);
}

.info-box-small-header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.info-box-small-title {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--aurora-text);
}

.info-box-small-meta {
    margin: 0.2rem 0 0;
    font-size: 0.85rem;
    color: var(--aurora-subtle);
}

.info-box-small-value {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    font-weight: 700;
    font-size: 1.85rem;
}

.info-box-small-value span {
    line-height: 1.1;
}

.info-box-small-value small {
    font-size: 0.85rem;
    color: var(--aurora-subtle);
}

.info-box-small-footer {
    margin-top: 0.75rem;
}

.info-box-small-footer a {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.35);
    color: var(--aurora-primary);
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.info-box-small-footer a:hover {
    background: rgba(37, 99, 235, 0.08);
}

.info-box-small-value {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-top: 0.05rem;
}

.info-box-small-metric {
    display: flex;
    align-items: baseline;
    gap: 0.35rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--aurora-text);
}

.info-box-small-metric span {
    line-height: 1.1;
}

.info-box-small-metric small {
    font-size: 0.85rem;
    color: var(--aurora-subtle);
}

.info-box-small-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.75rem;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.35);
    color: var(--aurora-primary);
    font-size: 0.78rem;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    min-width: 64px;
}

.info-box-small-btn:hover {
    background: rgba(37, 99, 235, 0.1);
}

.teacher-week-table {
    position: relative;
    margin-top: 10px;
}

.aurora-schedule-card {
    padding: 14px 18px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 60%, #edf2ff 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.aurora-schedule-card > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 600;
    color: var(--aurora-text);
}

.aurora-schedule-card a {
    text-decoration: none;
    color: #1d4ed8;
    font-size: 13px;
    font-weight: 600;
    transition: color 0.2s ease;
}

.aurora-schedule-card a:hover {
    color: var(--aurora-primary);
}

#manager-schedule.aurora-schedule-card {
    margin-bottom: 4px;
}

#manager-schedule,
#teacher-schedule {
    scroll-margin-top: 120px;
}

.schedule-header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-weight: 600;
}

.teacher-week-table-content {
    transition: opacity 0.25s ease;
}

.teacher-week-table.is-loading .teacher-week-table-content {
    opacity: 0.35;
    filter: blur(1px);
    pointer-events: none;
}

.teacher-week-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.75);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.teacher-week-table.is-loading .teacher-week-overlay {
    opacity: 1;
    pointer-events: auto;
}

.teacher-week-spinner {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid rgba(37, 99, 235, 0.25);
    border-top-color: var(--aurora-primary);
    animation: teacher-week-spin 0.8s linear infinite;
}

@keyframes teacher-week-spin {
    to {
        transform: rotate(360deg);
    }
}

.info-box-small-icon {
    border-radius: 6px;
    padding: 0.18rem 0.22rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(37, 99, 235, 0.08);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.info-box-small-icon i {
    font-size: 1.35rem;
    color: var(--aurora-primary);
}

.info-box-small-number a {
    color: var(--aurora-primary);
    font-weight: 600;
}

.info-box-small-number a:hover {
    color: var(--aurora-accent);
}

.manager-schedule-table,
.teacher-week-table {
    position: relative;
    margin-top: 8px;
    /* فرم کلی مانند کارت هدر برنامه، بدون فاصله داخلی تا جدول */
    padding: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7ff 60%, #edf2ff 100%);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow:
        rgba(50, 50, 93, 0.25) 0px 6px 12px -2px,
        rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.manager-schedule-table-content,
.teacher-week-table-content {
    /* فقط ظرف محتوا؛ بدون کادر و پس‌زمینه جداگانه */
    transition: opacity 0.25s ease;
    background: transparent;
    border: none;
    box-shadow: none;
}

.manager-schedule-table.is-loading .manager-schedule-table-content,
.teacher-week-table.is-loading .teacher-week-table-content {
    opacity: 0.35;
    filter: blur(1px);
    pointer-events: none;
}

.manager-schedule-overlay,
.teacher-week-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.75);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.manager-schedule-table.is-loading .manager-schedule-overlay,
.teacher-week-table.is-loading .teacher-week-overlay {
    opacity: 1;
    pointer-events: auto;
}

.manager-schedule-spinner,
.teacher-week-spinner {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 3px solid rgba(37, 99, 235, 0.25);
    border-top-color: var(--aurora-primary);
    animation: schedule-spin 0.8s linear infinite;
}

@keyframes schedule-spin {
    to {
        transform: rotate(360deg);
    }
}

.wc-title h4 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    color: var(--aurora-text);
}

.wc-title h4 span {
    font-weight: 600;
    color: var(--aurora-subtle);
}

.card-group .card {
    min-width: 180px;
    padding: 1.1rem;
    align-items: center;
    gap: 0.65rem;
    background: rgba(15, 23, 42, 0.65);
}

.card-group .card img {
    max-height: 82px;
    filter: drop-shadow(0 12px 24px rgba(37, 99, 235, 0.25));
    transition: transform 0.3s ease;
}

.card-group .card:hover img {
    transform: translateY(-6px);
}

.card-group .card a {
    color: var(--aurora-text);
    font-weight: 600;
    text-decoration: none;
}

.card-group .card a:hover {
    color: var(--aurora-accent);
}

.aurora-statboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: var(--aurora-grid-gap);
}

.aurora-statboard .info-box-small {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.98), rgba(240, 249, 255, 0.95));
}

.aurora-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: var(--aurora-radius-md);
    background: rgba(15, 23, 42, 0.7);
}

.aurora-table thead tr {
    background: rgba(148, 163, 184, 0.08);
    color: var(--aurora-text);
}

.aurora-table th,
.aurora-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.08);
}

.aurora-table tr:last-child td {
    border-bottom: none;
}

.aurora-table tbody tr:hover {
    background: rgba(37, 99, 235, 0.08);
}

.ewGrid {
    border-radius: var(--aurora-radius-md);
    border: 1px solid rgba(15, 23, 42, 0.08);
    background: #ffffff;
    overflow: hidden;
    box-shadow: var(--aurora-shadow-soft);
}

.ewTableHeader td,
.ewTable td {
    color: var(--aurora-text);
}

.ewTableHeader {
    background: linear-gradient(180deg, #e0ecff 0%, #c7dbff 45%, #b0c4ff 100%);
    backdrop-filter: blur(4px);
}

.ewTableSeparate td {
    border-color: rgba(15, 23, 42, 0.06);
}

.ewTable tr:nth-child(even) td {
    background: rgba(241, 245, 255, 0.65);
}

.ewTable tr:nth-child(odd) td {
    background: #fff;
}

.ewTable tr:hover td {
    background: rgba(148, 197, 255, 0.35);
}

.controls-top .btn-floating {
    color: var(--aurora-text);
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.controls-top .btn-floating:hover {
    background: var(--aurora-primary);
    transform: translateY(-2px);
}

.aurora-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    background: rgba(37, 99, 235, 0.16);
    color: var(--aurora-text);
    font-size: 0.8rem;
    font-weight: 600;
}

.aurora-tag {
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: 999px;
    padding: 0.2rem 0.65rem;
    font-size: 0.75rem;
    color: var(--aurora-subtle);
}

.aurora-glow {
    position: relative;
}

.aurora-glow::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(37, 99, 235, 0.35), rgba(147, 51, 234, 0.35));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.aurora-glow > * {
    position: relative;
    z-index: 1;
}

.aurora-glow:hover::after {
    opacity: 1;
}

.aurora-hero {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--aurora-grid-gap);
    align-items: stretch;
    padding: clamp(24px, 4vw, 40px);
    background: rgba(15, 23, 42, 0.7);
    border-radius: var(--aurora-radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.12);
    box-shadow: var(--aurora-shadow-card);
    overflow: hidden;
}

.aurora-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(37, 99, 235, 0.25), transparent 55%),
                radial-gradient(circle at bottom right, rgba(147, 51, 234, 0.18), transparent 50%);
    opacity: 0.8;
    pointer-events: none;
}

.aurora-hero h2 {
    font-size: clamp(1.55rem, 3vw, 2.05rem);
    margin-bottom: 0.5rem;
    color: #f8fafc;
}

.aurora-hero p {
    color: rgba(226, 232, 240, 0.85);
    font-size: 0.98rem;
    line-height: 1.9;
}

.aurora-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.18);
    color: rgba(226, 232, 240, 0.9);
    font-size: 0.75rem;
    font-weight: 600;
}

.aurora-page h3,
.aurora-page h4 {
    color: var(--aurora-text);
}

.aurora-page hr {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, rgba(148, 163, 184, 0.2), transparent);
}

.aurora-meta {
    color: var(--aurora-subtle);
    font-size: 0.78rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.aurora-chart {
    background: rgba(15, 23, 42, 0.7);
    border-radius: var(--aurora-radius-md);
    border: 1px solid rgba(148, 163, 184, 0.12);
    padding: clamp(16px, 2.3vw, 28px);
    box-shadow: var(--aurora-shadow-soft);
}

.aurora-chart canvas {
    background: transparent !important;
    border-radius: var(--aurora-radius-sm);
}

.aurora-chip kbd {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.1rem 0.35rem;
    border-radius: 6px;
    font-family: 'IRANSans', 'Tahoma', sans-serif;
    font-weight: 600;
    font-size: 0.7rem;
}

.aurora-surface {
    background: rgba(15, 23, 42, 0.72);
    border: 1px solid rgba(148, 163, 184, 0.1);
    border-radius: var(--aurora-radius-lg);
    padding: clamp(18px, 2.3vw, 26px);
    box-shadow: var(--aurora-shadow-soft);
}

.aurora-surface h3 {
    margin-bottom: 1rem;
}

.aurora-divider {
    border: none;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(148, 163, 184, 0.25), transparent);
    margin: clamp(22px, 4vw, 34px) 0;
}

.aurora-scroll {
    scrollbar-width: thin;
    scrollbar-color: rgba(148, 163, 184, 0.45) transparent;
}

.aurora-scroll::-webkit-scrollbar {
    height: 6px;
    width: 6px;
}

.aurora-scroll::-webkit-scrollbar-thumb {
    background: rgba(148, 163, 184, 0.35);
    border-radius: 999px;
}

.aurora-scroll::-webkit-scrollbar-track {
    background: transparent;
}

.aurora-animate {
    opacity: 0;
    transform: translateY(24px);
    transition: transform 0.6s ease, opacity 0.6s ease;
}

.aurora-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.aurora-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--aurora-text);
    background: rgba(37, 99, 235, 0.18);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    border: 1px solid rgba(37, 99, 235, 0.3);
    text-decoration: none;
}

.aurora-inline-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.1rem;
    flex-wrap: wrap;
}

.aurora-badge--success {
    background: rgba(34, 197, 94, 0.16);
    border-color: rgba(34, 197, 94, 0.3);
}

.aurora-badge--danger {
    background: rgba(248, 113, 113, 0.16);
    border-color: rgba(248, 113, 113, 0.3);
}

.aurora-link {
    color: rgba(129, 140, 248, 0.95);
    text-decoration: none;
    font-weight: 600;
}

.aurora-link:hover {
    color: rgba(196, 181, 253, 1);
}

.aurora-chip svg,
.aurora-badge svg,
.section-title svg {
    width: 16px;
    height: 16px;
}

.aurora-hero-graphic {
    position: relative;
    min-height: 220px;
    border-radius: var(--aurora-radius-lg);
    overflow: hidden;
    background: linear-gradient(145deg, rgba(37, 99, 235, 0.22), rgba(15, 118, 110, 0.18));
}

.aurora-hero-graphic::after {
    content: "";
    position: absolute;
    inset: 18%;
    border-radius: inherit;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(6px);
}

.aurora-hero-graphic::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1), transparent 40%),
        radial-gradient(circle at 80% 30%, rgba(59, 130, 246, 0.2), transparent 45%);
    mix-blend-mode: screen;
}

.aurora-hero-graphic span {
    position: absolute;
    inset: 40px;
    border-radius: var(--aurora-radius-md);
    background: rgba(15, 23, 42, 0.45);
    display: grid;
    place-items: center;
    color: rgba(226, 232, 240, 0.88);
    font-weight: 600;
    letter-spacing: 0.08em;
}

@media (max-width: 1024px) {
    .aurora-page {
        padding: clamp(20px, 6vw, 36px) clamp(18px, 4.5vw, 42px);
    }

    .aurora-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }
}

@media (max-width: 768px) {
    .aurora-page {
        padding: clamp(16px, 8vw, 28px) clamp(14px, 6vw, 24px);
    }

    .aurora-page > * {
        border-radius: var(--aurora-radius-sm);
    }

    .aurora-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }

    .info-box-small {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
    }

    .info-box-small-content {
        flex: 1;
    }
}

@media (max-width: 576px) {
    .aurora-page {
        padding-inline: clamp(12px, 7vw, 20px);
        gap: clamp(16px, 6vw, 24px);
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
    }

    .section-header::after {
        width: 100%;
        margin-inline-start: 0;
    }

    .info-box-small {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .desktop-only {
        display: none !important;
    }
}

