/*
Theme Name: Aurora Borealis Betting
Theme URI: https://example.com/aurora
Description: A dreamy, ethereal sports betting WordPress theme inspired by northern lights, with flowing gradients and atmospheric glow effects.
Version: 1.0
Author: Aurora Studio
Text Domain: aurora-borealis
*/

:root {
    --aur-sky: #0f0c29;
    --aur-sky-2: #1b1640;
    --aur-sky-3: #261c5a;
    --aur-green: #43cea2;
    --aur-purple: #7b4397;
    --aur-pink: #c879ff;
    --aur-star: #f7f8fc;
    --aur-mist: rgba(247, 248, 252, 0.78);
    --aur-faint: rgba(247, 248, 252, 0.55);
    --aur-line: rgba(247, 248, 252, 0.12);
    --aur-glow-1: 0 0 0 1px rgba(67, 206, 162, 0.18), 0 24px 60px -28px rgba(123, 67, 151, 0.55);
    --aur-grad: linear-gradient(120deg, #43cea2 0%, #7b4397 55%, #c879ff 100%);
    --aur-grad-soft: linear-gradient(135deg, rgba(67,206,162,0.18), rgba(123,67,151,0.18));
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: 'Outfit', 'Helvetica Neue', sans-serif;
    background: var(--aur-sky);
    background-image:
        radial-gradient(ellipse at 12% 8%, rgba(67,206,162,0.25), transparent 45%),
        radial-gradient(ellipse at 88% 12%, rgba(200,121,255,0.22), transparent 50%),
        radial-gradient(ellipse at 50% 92%, rgba(123,67,151,0.30), transparent 55%),
        linear-gradient(180deg, #0f0c29 0%, #1b1640 60%, #0f0c29 100%);
    background-attachment: fixed;
    color: var(--aur-mist);
    line-height: 1.65;
    font-weight: 300;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image:
        radial-gradient(1px 1px at 20px 30px, #fff 50%, transparent),
        radial-gradient(1px 1px at 60px 80px, rgba(255,255,255,0.6) 50%, transparent),
        radial-gradient(1.5px 1.5px at 130px 50px, #fff 50%, transparent),
        radial-gradient(1px 1px at 220px 130px, rgba(255,255,255,0.7) 50%, transparent),
        radial-gradient(1px 1px at 310px 90px, #fff 50%, transparent),
        radial-gradient(1px 1px at 90px 200px, rgba(255,255,255,0.5) 50%, transparent);
    background-size: 350px 240px;
    background-repeat: repeat;
    opacity: 0.55;
    pointer-events: none;
    z-index: 0;
    animation: aur-twinkle 6s ease-in-out infinite alternate;
}

@keyframes aur-twinkle {
    from { opacity: 0.35; }
    to   { opacity: 0.7; }
}

a { color: var(--aur-green); text-decoration: none; transition: color .3s, opacity .3s; }
a:hover { color: var(--aur-pink); }

img { max-width: 100%; height: auto; display: block; }

.aur-container { max-width: 1240px; margin: 0 auto; padding: 0 28px; position: relative; z-index: 2; }

/* HEADER ====================================================== */
.aur-header {
    position: sticky;
    top: 0;
    z-index: 50;
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    background: linear-gradient(180deg, rgba(15,12,41,0.65), rgba(15,12,41,0.25));
    border-bottom: 1px solid var(--aur-line);
}

.aur-header::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: -1px;
    height: 1px;
    background: var(--aur-grad);
    opacity: 0.7;
}

.aur-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    gap: 24px;
}

.aur-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 30px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--aur-star);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.aur-logo .aur-logo-mark {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: var(--aur-grad);
    box-shadow: 0 0 24px rgba(123, 67, 151, 0.6);
    display: inline-block;
    position: relative;
}
.aur-logo .aur-logo-mark::before {
    content: '';
    position: absolute; inset: 4px;
    border-radius: 50%;
    background: var(--aur-sky);
}
.aur-logo em {
    font-style: italic;
    background: var(--aur-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 500;
}

.aur-nav { display: flex; align-items: center; gap: 4px; }
.aur-nav a {
    color: var(--aur-mist);
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 10px 16px;
    border-radius: 999px;
    transition: all .35s;
    position: relative;
    font-weight: 400;
}
.aur-nav a:hover {
    color: var(--aur-star);
    background: var(--aur-grad-soft);
}
.aur-nav .aur-nav-cta {
    margin-left: 12px;
    padding: 10px 24px;
    background: var(--aur-grad);
    color: #0f0c29 !important;
    font-weight: 600;
    letter-spacing: 0.2em;
    box-shadow: 0 8px 24px -8px rgba(67,206,162,0.6), 0 0 0 1px rgba(247,248,252,0.1) inset;
}
.aur-nav .aur-nav-cta:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

/* HERO ========================================================= */
.aur-hero {
    position: relative;
    padding: 130px 0 110px;
    overflow: hidden;
}
.aur-hero::before, .aur-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.aur-hero::before {
    background:
        radial-gradient(ellipse at 20% 50%, rgba(67,206,162,0.4), transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(123,67,151,0.45), transparent 55%),
        radial-gradient(ellipse at 50% 100%, rgba(200,121,255,0.25), transparent 60%);
    filter: blur(40px);
}
.aur-hero::after {
    background-image: linear-gradient(115deg, transparent 30%, rgba(67,206,162,0.10) 45%, rgba(200,121,255,0.10) 55%, transparent 70%);
    animation: aur-ribbon 14s linear infinite;
    background-size: 200% 200%;
}
@keyframes aur-ribbon {
    0%   { background-position: 0% 50%; }
    50%  { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.aur-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 60px;
    align-items: center;
}
.aur-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 11px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--aur-green);
    padding: 8px 16px;
    border: 1px solid rgba(67,206,162,0.4);
    border-radius: 999px;
    background: rgba(67,206,162,0.08);
    margin-bottom: 28px;
}
.aur-hero-eyebrow::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--aur-green);
    box-shadow: 0 0 12px var(--aur-green);
    animation: aur-pulse 2s infinite;
}
@keyframes aur-pulse {
    0%,100% { opacity: 1; }
    50%     { opacity: 0.4; }
}
.aur-hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 6.4vw, 88px);
    line-height: 1.02;
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--aur-star);
    margin-bottom: 24px;
}
.aur-hero h1 em {
    font-style: italic;
    background: var(--aur-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.aur-hero p {
    font-size: 17px;
    color: var(--aur-faint);
    max-width: 540px;
    margin-bottom: 36px;
    font-weight: 300;
}

.aur-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: var(--aur-grad);
    color: #0f0c29 !important;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    box-shadow: 0 14px 40px -14px rgba(67,206,162,0.7);
    transition: transform .3s, box-shadow .3s, filter .3s;
}
.aur-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
    box-shadow: 0 20px 50px -16px rgba(200,121,255,0.7);
    color: #0f0c29 !important;
}
.aur-btn-ghost {
    margin-left: 14px;
    background: transparent;
    color: var(--aur-star) !important;
    border: 1px solid var(--aur-line);
    box-shadow: none;
}
.aur-btn-ghost:hover { background: var(--aur-grad-soft); }

/* Floating stats */
.aur-stats {
    display: grid;
    gap: 14px;
}
.aur-stat-card {
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    background: linear-gradient(135deg, rgba(247,248,252,0.07), rgba(247,248,252,0.02));
    border: 1px solid var(--aur-line);
    border-radius: 22px;
    padding: 26px 28px;
    position: relative;
    overflow: hidden;
    transition: transform .5s cubic-bezier(.2,.7,.2,1);
    animation: aur-float 8s ease-in-out infinite;
}
.aur-stat-card:nth-child(1) { animation-delay: 0s; transform: translateX(20px); }
.aur-stat-card:nth-child(2) { animation-delay: 1.2s; transform: translateX(-10px); }
.aur-stat-card:nth-child(3) { animation-delay: 2.4s; transform: translateX(10px); }
@keyframes aur-float {
    0%,100% { translate: 0 0; }
    50%     { translate: 0 -8px; }
}
.aur-stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--aur-grad);
    opacity: 0;
    transition: opacity .4s;
    z-index: -1;
}
.aur-stat-card:hover::before { opacity: 0.12; }
.aur-stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 44px;
    font-weight: 500;
    color: var(--aur-star);
    letter-spacing: -0.01em;
}
.aur-stat-num em {
    font-style: italic;
    background: var(--aur-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.aur-stat-label {
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 0.3em;
    color: var(--aur-faint);
    margin-top: 6px;
}

/* CONTENT ===================================================== */
.aur-main {
    padding: 80px 0 100px;
    position: relative;
    z-index: 2;
}
.aur-layout {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 60px;
}
.aur-layout--full { grid-template-columns: 1fr; }

.aur-section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 30px;
    flex-wrap: wrap;
}
.aur-section-head h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 52px;
    font-weight: 500;
    line-height: 1;
    color: var(--aur-star);
    letter-spacing: -0.015em;
}
.aur-section-head h2 em {
    font-style: italic;
    background: var(--aur-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.aur-section-head .aur-section-meta {
    font-size: 12px;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: var(--aur-faint);
}

/* Organic flowing card grid */
.aur-feed {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 26px;
}
.aur-card {
    grid-column: span 4;
    background: linear-gradient(160deg, rgba(247,248,252,0.06), rgba(247,248,252,0.015));
    border: 1px solid var(--aur-line);
    border-radius: 24px;
    overflow: hidden;
    backdrop-filter: blur(8px);
    transition: transform .55s cubic-bezier(.2,.7,.2,1), border-color .4s, box-shadow .4s;
    display: flex;
    flex-direction: column;
    position: relative;
    opacity: 0;
    animation: aur-rise 0.8s cubic-bezier(.2,.7,.2,1) forwards;
    animation-delay: var(--aur-delay, 0ms);
}
@keyframes aur-rise {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
}
.aur-card:nth-child(7n+1) { grid-column: span 6; }
.aur-card:nth-child(7n+2) { grid-column: span 6; }
.aur-card:hover {
    transform: translateY(-6px);
    border-color: rgba(67, 206, 162, 0.45);
    box-shadow: var(--aur-glow-1);
}
.aur-card-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--aur-grad);
    overflow: hidden;
}
.aur-card-thumb img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 1s cubic-bezier(.2,.7,.2,1);
}
.aur-card:hover .aur-card-thumb img { transform: scale(1.06); }
.aur-card-thumb::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(15,12,41,0.85));
}
.aur-card-thumb-fallback {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    color: rgba(247,248,252,0.7);
    background: linear-gradient(135deg, rgba(67,206,162,0.6), rgba(123,67,151,0.7));
}
.aur-card-body {
    padding: 26px 28px 28px;
    display: flex; flex-direction: column;
    flex: 1; gap: 12px;
}
.aur-card-meta {
    font-size: 11px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--aur-green);
    display: flex; gap: 14px; align-items: center;
}
.aur-card-meta span:not(:last-child)::after {
    content: '·'; margin-left: 14px; color: var(--aur-faint);
}
.aur-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px; line-height: 1.2;
    font-weight: 500;
    color: var(--aur-star);
    letter-spacing: -0.005em;
}
.aur-card h3 a { color: inherit; }
.aur-card h3 a:hover { color: var(--aur-green); }
.aur-card p {
    font-size: 14px;
    color: var(--aur-faint);
    line-height: 1.65;
    flex: 1;
}
.aur-card-link {
    align-self: flex-start;
    font-size: 12px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--aur-pink);
    border-bottom: 1px solid rgba(200,121,255,0.4);
    padding-bottom: 4px;
}
.aur-card-link:hover { color: var(--aur-star); border-color: var(--aur-star); }

.aur-feed-empty { grid-column: 1 / -1; padding: 60px; text-align: center; color: var(--aur-faint); font-style: italic; }

/* Sidebar widgets */
.aur-aside { display: flex; flex-direction: column; gap: 26px; position: sticky; top: 100px; align-self: start; }
.aur-widget {
    background: linear-gradient(160deg, rgba(247,248,252,0.06), rgba(247,248,252,0.015));
    border: 1px solid var(--aur-line);
    border-radius: 22px;
    padding: 28px;
    backdrop-filter: blur(10px);
}
.aur-widget h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    font-weight: 500;
    color: var(--aur-star);
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}
.aur-widget h3::after {
    content: '';
    display: block;
    width: 36px; height: 2px;
    background: var(--aur-grad);
    margin-top: 10px;
}
.aur-widget ul { list-style: none; }
.aur-widget li { padding: 14px 0; border-bottom: 1px dashed var(--aur-line); }
.aur-widget li:last-child { border-bottom: none; }
.aur-widget li a {
    display: flex; justify-content: space-between; align-items: center;
    color: var(--aur-mist); font-size: 14px;
    gap: 16px;
}
.aur-widget li a span { color: var(--aur-green); font-weight: 500; font-size: 13px; }
.aur-widget li a:hover { color: var(--aur-pink); }
.aur-widget--bonus { background: var(--aur-grad-soft); border-color: rgba(123,67,151,0.4); }
.aur-widget--bonus p { font-size: 14px; color: var(--aur-mist); margin-bottom: 18px; }

/* Single & Page ============================================== */
.aur-breadcrumb {
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--aur-faint);
    margin-bottom: 28px;
}
.aur-breadcrumb a { color: var(--aur-green); }
.aur-breadcrumb span { margin: 0 10px; opacity: 0.5; }

.aur-article {
    background: linear-gradient(160deg, rgba(247,248,252,0.05), rgba(247,248,252,0.01));
    border: 1px solid var(--aur-line);
    border-radius: 28px;
    padding: 56px;
    backdrop-filter: blur(8px);
}
.aur-article-hero { aspect-ratio: 21/9; border-radius: 22px; overflow: hidden; margin-bottom: 36px; }
.aur-article-hero img { width: 100%; height: 100%; object-fit: cover; }
.aur-article h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 56px;
    line-height: 1.05;
    font-weight: 500;
    color: var(--aur-star);
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}
.aur-article-meta {
    display: flex; gap: 20px; flex-wrap: wrap;
    font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase;
    color: var(--aur-faint);
    padding-bottom: 28px;
    border-bottom: 1px solid var(--aur-line);
    margin-bottom: 40px;
}
.aur-article-body { font-size: 17px; line-height: 1.85; color: var(--aur-mist); }
.aur-article-body p { margin-bottom: 22px; }
.aur-article-body h2, .aur-article-body h3 {
    font-family: 'Cormorant Garamond', serif;
    color: var(--aur-star); margin: 36px 0 16px; font-weight: 500;
}
.aur-article-body h2 { font-size: 36px; }
.aur-article-body h3 { font-size: 26px; }
.aur-article-body a { color: var(--aur-green); border-bottom: 1px solid rgba(67,206,162,0.4); }
.aur-article-body blockquote {
    border-left: 3px solid var(--aur-green);
    padding-left: 24px;
    margin: 28px 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px; font-style: italic;
    color: var(--aur-star);
}

.aur-tags { margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--aur-line); }
.aur-tags a {
    display: inline-block;
    padding: 6px 14px;
    border: 1px solid var(--aur-line);
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--aur-mist);
    margin: 4px 4px 4px 0;
}
.aur-tags a:hover { border-color: var(--aur-green); color: var(--aur-green); }

.aur-related { margin-top: 60px; }
.aur-related h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 38px; color: var(--aur-star); font-weight: 500; margin-bottom: 28px;
}
.aur-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* Archive header */
.aur-archive-head {
    padding: 90px 0 50px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.aur-archive-head .aur-eyebrow {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.42em;
    text-transform: uppercase;
    color: var(--aur-green);
    margin-bottom: 14px;
}
.aur-archive-head h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(40px, 6vw, 76px);
    font-weight: 500; color: var(--aur-star);
    letter-spacing: -0.02em;
}
.aur-archive-head h1 em {
    font-style: italic;
    background: var(--aur-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.aur-archive-head p {
    margin-top: 14px;
    color: var(--aur-faint);
    font-size: 15px;
    max-width: 620px;
    margin-left: auto; margin-right: auto;
}

.aur-pagination { display: flex; justify-content: center; gap: 8px; margin-top: 60px; }
.aur-pagination a, .aur-pagination span {
    padding: 12px 18px;
    border-radius: 999px;
    border: 1px solid var(--aur-line);
    color: var(--aur-mist);
    font-size: 13px; letter-spacing: 0.15em;
}
.aur-pagination .current, .aur-pagination a:hover { background: var(--aur-grad); color: #0f0c29; border-color: transparent; }

/* Comments */
.aur-comments {
    margin-top: 50px;
    padding: 40px;
    background: linear-gradient(160deg, rgba(247,248,252,0.04), rgba(247,248,252,0.01));
    border: 1px solid var(--aur-line);
    border-radius: 24px;
}
.aur-comments h2 { font-family: 'Cormorant Garamond', serif; font-size: 30px; color: var(--aur-star); font-weight: 500; margin-bottom: 24px; }
.aur-comments .comment-list { list-style: none; }
.aur-comments .comment { padding: 22px 0; border-bottom: 1px dashed var(--aur-line); }
.aur-comments input[type=text], .aur-comments input[type=email], .aur-comments input[type=url], .aur-comments textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(15,12,41,0.6);
    border: 1px solid var(--aur-line);
    border-radius: 16px;
    color: var(--aur-star);
    margin-bottom: 14px;
    font-family: inherit;
}
.aur-comments textarea { min-height: 140px; resize: vertical; }
.aur-comments .submit { background: var(--aur-grad); color: #0f0c29; border: none; padding: 14px 32px; border-radius: 999px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; cursor: pointer; }

/* 404 */
.aur-404 { text-align: center; padding: 140px 0 100px; position: relative; z-index: 2; }
.aur-404 h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(140px, 22vw, 280px);
    font-weight: 500; line-height: 0.9;
    background: var(--aur-grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: -0.05em;
}
.aur-404 h2 { font-family: 'Cormorant Garamond', serif; font-size: 36px; color: var(--aur-star); margin: 16px 0; font-weight: 500; }
.aur-404 p { color: var(--aur-faint); margin-bottom: 32px; max-width: 520px; margin-left: auto; margin-right: auto; }

/* Footer */
.aur-footer {
    margin-top: 100px;
    padding: 80px 0 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--aur-line);
    background: linear-gradient(180deg, rgba(15,12,41,0.0), rgba(15,12,41,0.85));
}
.aur-footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 50px; padding-bottom: 60px; }
.aur-footer-brand .aur-logo { margin-bottom: 20px; }
.aur-footer-brand p { color: var(--aur-faint); font-size: 14px; max-width: 320px; }
.aur-footer-col h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px; font-weight: 500;
    color: var(--aur-star);
    margin-bottom: 18px;
    letter-spacing: -0.005em;
}
.aur-footer-col ul { list-style: none; }
.aur-footer-col li { margin-bottom: 10px; }
.aur-footer-col a { color: var(--aur-faint); font-size: 14px; }
.aur-footer-col a:hover { color: var(--aur-green); }
.aur-footer-bottom {
    border-top: 1px solid var(--aur-line);
    padding: 24px 0;
    text-align: center;
    color: var(--aur-faint);
    font-size: 12px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
    .aur-layout { grid-template-columns: 1fr; }
    .aur-aside { position: static; }
    .aur-hero-grid { grid-template-columns: 1fr; gap: 40px; }
    .aur-card { grid-column: span 6; }
    .aur-card:nth-child(7n+1), .aur-card:nth-child(7n+2) { grid-column: span 6; }
    .aur-related-grid { grid-template-columns: repeat(2, 1fr); }
    .aur-footer-grid { grid-template-columns: 1fr 1fr; }
    .aur-article { padding: 36px; }
    .aur-article h1 { font-size: 38px; }
}
@media (max-width: 640px) {
    .aur-nav { display: none; }
    .aur-card, .aur-card:nth-child(7n+1), .aur-card:nth-child(7n+2) { grid-column: span 12; }
    .aur-related-grid { grid-template-columns: 1fr; }
    .aur-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .aur-section-head h2 { font-size: 38px; }
    .aur-article { padding: 24px; }
    .aur-article h1 { font-size: 30px; }
}
