/* ============================================
   PAGE-INDEX.CSS — shop-style layout
   Bonus cards preserved, everything else restyled
   ============================================ */

/* Container, section-label, count-pill — see shared.css (.rsp-*) */

/* ─── Page wrapper ─── */
.index-page {
    width: 100%;
    align-self: stretch;
}

/* ─── Main section padding override ─── */
.idx-main { padding-bottom: 80px; }

/* ─── Secondary sections ─── */
.idx-secondary {
    padding: 0 0 64px;
    width: 100%;
}

/* ─── Section label — tighter spacing override ─── */
.idx-section-label { margin-bottom: 28px; }

.idx-see-all {
    margin-left: auto;
    font-family: var(--font-accent, 'Exo 2', sans-serif);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: var(--alpha-white-40);
    text-decoration: none;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.idx-see-all:hover { color: var(--neon-cyan); }

/* ─── Filter row ─── */
.idx-filter-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.idx-filter-tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-tab {
    display: inline-flex;
    align-items: center;
    padding: 9px 20px;
    background: var(--alpha-white-4);
    border: 1px solid var(--alpha-white-8);
    border-radius: 9999px;
    color: var(--alpha-white-45);
    font-family: var(--font-accent, 'Exo 2', sans-serif);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s ease;
}

.filter-tab:hover {
    border-color: var(--alpha-purple-35);
    color: var(--alpha-white-70);
}

.filter-tab.active {
    background: var(--alpha-purple-20);
    border-color: var(--alpha-purple-40);
    color: #fff;
    box-shadow: 0 0 14px var(--alpha-purple-20);
}

.idx-result-count {
    margin-left: auto;
    font-family: var(--font-accent, 'Exo 2', sans-serif);
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--alpha-white-30);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ============================================
   BONUSES LIST — 3-COLUMN GRID
   ============================================ */
.bonuses-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* ============================================
   BONUS CARD — original cyberpunk style (preserved)
   ============================================ */
.bonus-card-h {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 28px;
    background: linear-gradient(160deg, rgba(20, 15, 30, 0.8), rgba(10, 8, 15, 0.95));
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--alpha-white-5);
    border-radius: var(--radius-xl, 16px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.bonus-card-h::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: calc(var(--radius-xl, 16px) + 2px);
    background: linear-gradient(45deg, #a855f7, var(--neon-cyan), #ff00ff, #a855f7);
    background-size: 300% 300%;
    opacity: 0;
    z-index: -1;
    transition: opacity var(--transition-slow);
}

.bonus-card-h:hover {
    transform: translateY(-6px) scale(1.01);
}

.featured-dot {
    position: absolute;
    top: 18px;
    left: 18px;
    width: 10px;
    height: 10px;
    background: var(--neon-cyan);
    border-radius: 50%;
    box-shadow: 0 0 16px var(--alpha-cyan-50);
    z-index: 3;
}

.bonus-card-h .bonus-top-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
}

/* ─── Casino logo — bez ramecku, nahoru nad text ─── */
.bonus-logo-h {
    width: 100%;
    max-width: 140px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.4s ease;
    position: relative;
    flex-shrink: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.bonus-card-h:hover .bonus-logo-h { transform: scale(1.04); }

.bonus-logo-h img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ─── Casino name pill — absolutne v pravem hornim rohu karty ─── */
.bonus-casino-name {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-accent, 'Exo 2', sans-serif);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--neon-cyan);
    margin: 0;
    padding: 4px 12px;
    background: var(--alpha-cyan-8);
    border: 1px solid var(--alpha-cyan-25);
    border-radius: 4px;
}

/* ─── Bonus content ─── */
.bonus-content-h {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.bonus-title-h {
    font-family: var(--font-display, 'Rajdhani', sans-serif);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-primary, #fff);
    margin: 0 0 8px;
    line-height: 1.25;
}

.bonus-subtitle-h {
    font-size: 0.88rem;
    color: var(--text-secondary, var(--alpha-white-55));
    margin: 0 0 18px;
    line-height: 1.5;
}

/* ─── Steps ─── */
.bonus-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 18px 0;
    counter-reset: step-counter;
}

.bonus-steps li {
    position: relative;
    padding-left: 38px;
    margin-bottom: 10px;
    font-size: 0.85rem;
    color: var(--text-secondary, var(--alpha-white-50));
    counter-increment: step-counter;
    line-height: 1.45;
}

.bonus-steps li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0; top: 0;
    width: 24px; height: 24px;
    background: linear-gradient(135deg, #ff00ff, var(--twitch-purple));
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 0.72rem;
    font-family: var(--font-accent, 'Exo 2', sans-serif);
}

/* ─── Tags ─── */
.bonus-tags-h {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.tags-label {
    font-family: var(--font-accent, 'Exo 2', sans-serif);
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--alpha-white-25);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bonus-tag {
    padding: 5px 12px;
    background: rgba(255,0,255,0.08);
    border: 1px solid rgba(255,0,255,0.25);
    border-radius: 4px;
    font-family: var(--font-accent, 'Exo 2', sans-serif);
    font-size: 0.65rem;
    font-weight: 600;
    color: #ff00ff;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ─── CTA button ─── */
.bonus-cta-h {
    margin-top: auto;
    padding-top: 16px;
}

.cta-btn-h {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--alpha-purple-20), var(--alpha-cyan-20));
    border: 1px solid var(--alpha-cyan-40);
    color: #fff;
    text-decoration: none;
    font-family: var(--font-accent, 'Exo 2', sans-serif);
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border-radius: var(--radius-md, 10px);
    cursor: pointer;
    transition: all var(--transition-normal);
    box-shadow: 0 0 16px var(--alpha-cyan-15);
    overflow: hidden;
    position: relative;
}

.cta-btn-h:hover {
    background: linear-gradient(135deg, var(--alpha-purple-40), var(--alpha-cyan-40));
    transform: translateY(-3px);
    box-shadow: 0 10px 28px var(--alpha-cyan-30), 0 0 40px var(--alpha-purple-25);
    border-color: var(--neon-cyan);
    color: #fff;
}

/* ─── No results ─── */
.no-results {
    text-align: center;
    padding: 64px 20px;
    color: var(--alpha-white-30);
}

.no-results-icon {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.4;
}


/* ============================================
   GIVEAWAY TEASER CARDS
   ============================================ */
.idx-gw-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.idx-gwc {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 22px 20px;
    background: linear-gradient(160deg, rgba(20,15,30,0.8), rgba(10,8,15,0.95));
    border: 1px solid var(--alpha-white-5);
    border-radius: 16px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.25s ease;
}

.idx-gwc:hover {
    transform: translateY(-4px);
    border-color: var(--alpha-purple-30);
    box-shadow: 0 16px 40px var(--alpha-black-40);
}

.idx-gwc-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
}

.idx-gwc-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-radius: 9999px;
    font-family: var(--font-accent, 'Exo 2', sans-serif);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
    align-self: flex-start;
    margin-top: 4px;
}

.idx-gwc-prize {
    font-family: var(--font-accent, 'Exo 2', sans-serif);
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: 0.02em;
}

.idx-gwc-title {
    font-size: 0.82rem;
    color: var(--alpha-white-50);
}

.idx-gwc-desc {
    font-size: 0.75rem;
    color: var(--alpha-white-35);
    line-height: 1.45;
}

.idx-gwc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid var(--alpha-white-5);
}

.idx-gwc-entry {
    font-size: 0.72rem;
    color: var(--neon-success);
    font-weight: 600;
}

.idx-gwc-cta {
    font-family: var(--font-accent, 'Exo 2', sans-serif);
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--alpha-white-35);
    letter-spacing: 0.05em;
    transition: color 0.2s ease;
}

.idx-gwc:hover .idx-gwc-cta { color: var(--neon-cyan); }

.idx-gwc-more {
    align-items: center;
    justify-content: center;
    background: var(--alpha-purple-6);
    border-color: var(--alpha-purple-15);
    border-style: dashed;
}

.idx-gwc-more-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.idx-gwc-more-label {
    font-family: var(--font-accent, 'Exo 2', sans-serif);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--alpha-white-50);
    letter-spacing: 0.04em;
}

.idx-gwc-more-sub {
    font-size: 0.72rem;
    color: var(--alpha-white-25);
}

/* ============================================
   WINNERS LIST
   ============================================ */
.idx-winners-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.idx-winner-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: linear-gradient(160deg, rgba(20,15,30,0.7), rgba(10,8,15,0.9));
    border: 1px solid var(--alpha-white-5);
    border-radius: 12px;
}

.idx-wr-rank { font-size: 1.2rem; flex-shrink: 0; }

.idx-wr-avatar {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.idx-wr-info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.idx-wr-name {
    font-size: 0.9rem;
    color: #fff;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.idx-wr-prize {
    font-size: 0.75rem;
    color: var(--alpha-white-40);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.idx-wr-date {
    font-size: 0.7rem;
    color: var(--alpha-white-25);
    white-space: nowrap;
    flex-shrink: 0;
}

/* ============================================
   STREAM
   ============================================ */
.idx-stream-wrap {
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    border: 1px solid var(--alpha-purple-15);
}

.idx-stream-player {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    max-height: 675px;
}

.idx-stream-player iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
}

/* ============================================
   SOCIAL GRID
   ============================================ */
.idx-social-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.idx-social-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    background: linear-gradient(160deg, rgba(20,15,30,0.8), rgba(10,8,15,0.95));
    border: 1px solid var(--alpha-white-5);
    border-radius: 14px;
    text-decoration: none;
    text-align: center;
    transition: all 0.25s ease;
}

.idx-social-card:hover {
    transform: translateY(-4px);
    border-color: color-mix(in srgb, var(--sc, var(--twitch-purple)) 40%, transparent);
    box-shadow: 0 12px 32px var(--alpha-black-40);
}

.idx-social-icon { font-size: 1.6rem; line-height: 1; display: flex; align-items: center; justify-content: center; }
.idx-social-icon svg { color: var(--sc, var(--twitch-purple)); }
.idx-social-label { font-family: var(--font-accent, 'Exo 2', sans-serif); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.04em; color: var(--sc, var(--twitch-purple)); }
.idx-social-desc  { font-size: 0.68rem; color: var(--alpha-white-35); line-height: 1.3; }

/* ============================================
   DISCLAIMER
   ============================================ */
.disclaimer-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 28px 32px;
    background: rgba(255,107,53,0.06);
    border: 1px solid rgba(255,107,53,0.25);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.disclaimer-card::before {
    content: '';
    position: absolute;
    top: 0; left: 10%; right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--neon-orange-bright), transparent);
}

.disclaimer-icon { font-size: 2rem; flex-shrink: 0; }

.disclaimer-content h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 10px;
    color: var(--neon-orange-bright);
}

.disclaimer-content p {
    font-size: 0.87rem;
    color: var(--alpha-white-45);
    line-height: 1.7;
    margin: 0 0 12px;
}

/* ============================================
   SEO SECTION
   ============================================ */
.seo-content {
    padding: 28px 32px;
    background: var(--alpha-white-2);
    border: 1px solid var(--alpha-white-4);
    border-radius: 14px;
    color: var(--alpha-white-35);
    font-size: 0.85rem;
    line-height: 1.7;
}

.seo-content h2 { font-size: 1rem; color: var(--alpha-white-45); margin: 0 0 10px; font-weight: 700; }
.seo-content h3 { font-size: 0.9rem; color: var(--alpha-white-40); margin: 16px 0 6px; font-weight: 600; }
.seo-content a  { color: var(--neon-cyan); text-decoration: none; }
.seo-content strong { color: var(--alpha-white-55); }

.seo-faq {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.seo-faq dt {
    font-size: 0.85rem;
    color: var(--alpha-white-50);
    font-weight: 600;
    margin-top: 8px;
}
.seo-faq dt::before { content: 'Q: '; color: var(--twitch-purple); }
.seo-faq dd {
    margin: 4px 0 0 0;
    font-size: 0.82rem;
    color: var(--alpha-white-30);
    line-height: 1.6;
    padding-left: 20px;
    border-left: 2px solid var(--alpha-purple-20);
}

/* ============================================
   SECTION SEPARATORS
   ============================================ */
.idx-secondary + .idx-secondary {
    border-top: 1px solid rgba(255, 255, 255, .04);
}

/* ============================================
   HOME EDITORIAL (E-E-A-T / SEO text)
   ============================================ */
.home-editorial {
    padding: 4rem 0 5rem;
    position: relative;
}

.home-editorial::before {
    content: '';
    position: absolute;
    top: 0; left: 60px; right: 60px;
    height: 1px;
    background: linear-gradient(90deg,
        transparent,
        rgba(0, 245, 255, .2) 30%,
        rgba(145, 71, 255, .2) 70%,
        transparent);
}

.home-ed-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* ── Cards — match ncb-featured-card style ── */
.home-ed-trust,
.home-ed-methodology,
.home-ed-guides {
    background: linear-gradient(160deg, rgba(20, 14, 32, .9), rgba(10, 8, 16, .97));
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    padding: 1.75rem;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s;
}

.home-ed-trust:hover,
.home-ed-methodology:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0, 0, 0, .35); }

/* Cyan top-line — matches ncb-featured-card--top */
.home-ed-trust {
    border-color: rgba(0, 212, 255, .35);
    box-shadow: 0 0 20px rgba(0, 212, 255, .07);
}

.home-ed-guides { grid-column: 1 / -1; }

/* ── Block headings — override base.css uppercase/size ── */
.home-ed-trust h2,
.home-ed-methodology h2,
.home-ed-guides h2 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    text-transform: none;
    letter-spacing: 0;
    margin: 0 0 1rem;
    padding-bottom: 0.65rem;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    line-height: 1.35;
}

/* ── Prose ── */
.home-ed-trust p,
.home-ed-methodology p {
    color: rgba(255, 255, 255, .65);
    line-height: 1.65;
    font-size: 0.88rem;
    margin-bottom: 0.75rem;
}

.home-ed-trust p:last-child,
.home-ed-methodology p:last-child { margin-bottom: 0; }

.home-ed-trust p a,
.home-ed-methodology p a {
    color: var(--neon-cyan);
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ── Checkmark list — match ncb-featured-pros ── */
.home-ed-checkmarks {
    list-style: none;
    padding: 0;
    margin: 1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.home-ed-checkmarks li {
    display: flex;
    align-items: flex-start;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, .7);
    line-height: 1.5;
}

.home-ed-checkmarks li::before {
    content: '✓';
    color: var(--neon-cyan);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Criteria grid — match ncb-criterion ── */
.home-ed-criteria {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.home-ed-criterion {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    transition: border-color .2s, background .2s;
}

.home-ed-criterion:hover {
    border-color: rgba(0, 212, 255, .25);
    background: rgba(0, 212, 255, .04);
}

.home-ed-criterion strong {
    font-size: 0.88rem;
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.3;
}

.home-ed-criterion span {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, .5);
    line-height: 1.5;
}

/* ── Guide link cards — match ncb-featured-card compact ── */
.home-ed-guide-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1.25rem;
}

.home-ed-guide-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    transition: border-color .2s, background .2s, transform .2s, box-shadow .2s;
}

.home-ed-guide-card:hover {
    border-color: rgba(0, 212, 255, .3);
    background: linear-gradient(135deg, rgba(0, 212, 255, .06), rgba(181, 55, 242, .05));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, .3);
}

.home-ed-guide-card strong {
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.3;
}

.home-ed-guide-card span {
    color: rgba(255, 255, 255, .5);
    font-size: 0.8rem;
    line-height: 1.45;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1400px) {
    .idx-container { padding: 0 36px; }
}

@media (max-width: 1200px) {
    .bonuses-list { grid-template-columns: repeat(2, 1fr); }
    .idx-social-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1100px) {
    .idx-container { padding: 0 24px; }
    .idx-gw-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .idx-winners-list { grid-template-columns: repeat(2, 1fr); }
    .home-ed-inner { grid-template-columns: 1fr; }
    .home-ed-guides { grid-column: auto; }
    .home-ed-criteria { grid-template-columns: repeat(2, 1fr); }
    .home-ed-guide-links { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .idx-container { padding: 0 20px; }
    .idx-gw-cards { grid-template-columns: repeat(2, 1fr); }
    .idx-social-grid { grid-template-columns: repeat(3, 1fr); }
    .disclaimer-card { flex-direction: column; gap: 12px; }
    .bonus-logo-h { height: 64px; max-width: 120px; }
    .bonus-content-h { text-align: center; }
    .bonus-steps li { text-align: left; }
    .bonus-tags-h { justify-content: center; }
}

@media (max-width: 640px) {
    .idx-container { padding: 0 16px; }
    .bonuses-list { grid-template-columns: 1fr; }
    .idx-gw-cards { grid-template-columns: 1fr; gap: 10px; }
    .idx-winners-list { grid-template-columns: 1fr; }
    .idx-social-grid { grid-template-columns: repeat(2, 1fr); }
    .filter-tab { font-size: 0.65rem; padding: 8px 14px; }
    .home-ed-criteria { grid-template-columns: 1fr; }
    .home-ed-guide-links { grid-template-columns: 1fr; }
    .home-editorial { padding: 2.5rem 0 3rem; }
    .home-ed-inner { gap: 2.5rem; }
}
