/* Leikurinn.is v2.1 — Matchday editorial design */
:root {
    --match-ink: #07111b;
    --match-ink-soft: #0d1c2a;
    --match-paper: #f4f1e9;
    --match-card: #fffdf8;
    --match-white: #ffffff;
    --match-green: #0a9367;
    --match-green-dark: #056247;
    --match-lime: #c8ff3d;
    --match-red: #ef3d55;
    --match-line: #dcded7;
    --match-muted: #68737d;
    --match-radius: 24px;
    --match-shadow: 0 22px 65px rgba(7, 17, 27, .10);
}

body {
    background:
        radial-gradient(circle at 0 0, rgba(200, 255, 61, .07), transparent 25rem),
        var(--match-paper) !important;
    color: var(--match-ink);
    font-family: "Manrope", Inter, ui-sans-serif, system-ui, sans-serif;
}

h1, h2, h3, h4, .brand strong {
    font-family: "Barlow Condensed", "Arial Narrow", "Manrope", sans-serif;
}

.page-shell { width: min(100% - 34px, 1320px); }
.home-page-shell { padding-top: 44px; padding-bottom: 80px; }

/* Header */
.matchday-header { position: relative; z-index: 60; }
.matchday-utility { background: #030a11; color: #aab6c1; }
.matchday-utility-inner {
    min-height: 36px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: .67rem;
    font-weight: 800;
    letter-spacing: .07em;
    text-transform: uppercase;
}
.matchday-now, .matchday-utility-links { display: flex; align-items: center; gap: 12px; }
.matchday-utility a { color: #eef5f9; }
.matchday-utility a:hover { color: var(--match-lime); }
.utility-divider { width: 1px; height: 13px; background: rgba(255,255,255,.18); }
.matchday-utility-links a { display: inline-flex; align-items: center; gap: 7px; }

.matchday-masthead {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(200,255,61,.04) 1px, transparent 1px) 0 0 / 36px 36px,
        linear-gradient(rgba(200,255,61,.04) 1px, transparent 1px) 0 0 / 36px 36px,
        var(--match-ink);
    color: #fff;
}
.matchday-masthead::after {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    right: 8%;
    top: -310px;
    border: 1px solid rgba(200,255,61,.14);
    border-radius: 50%;
    box-shadow: 0 0 0 50px rgba(200,255,61,.025), 0 0 0 100px rgba(200,255,61,.018);
    pointer-events: none;
}
.matchday-masthead-inner {
    position: relative;
    z-index: 1;
    min-height: 102px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}
.matchday-brand { color: #fff; width: max-content; }
.matchday-brand img { width: 58px; height: 58px; filter: drop-shadow(0 10px 20px rgba(0,0,0,.25)); }
.matchday-brand strong { font-size: clamp(2rem, 3.5vw, 2.8rem); letter-spacing: -.045em; text-transform: uppercase; }
.matchday-brand strong span { color: var(--match-lime); }
.matchday-brand small { margin-top: 3px; color: #8393a2; font-size: .62rem; letter-spacing: .22em; }
.matchday-masthead-center { display: flex; align-items: center; gap: 12px; color: #788998; font-size: .65rem; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.matchday-masthead-center i { display: block; width: 5px; height: 5px; border-radius: 50%; background: var(--match-lime); }
.matchday-actions { justify-self: end; display: flex; align-items: center; gap: 10px; }
.matchday-live-button {
    min-width: 178px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 11px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 16px;
    background: rgba(255,255,255,.055);
    padding: 10px 12px;
    color: #fff;
}
.matchday-live-button:hover { border-color: rgba(200,255,61,.65); background: rgba(200,255,61,.08); color: #fff; }
.matchday-live-button small, .matchday-live-button strong { display: block; }
.matchday-live-button small { color: #91a1af; font-size: .56rem; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.matchday-live-button strong { margin-top: 1px; font-family: "Manrope", sans-serif; font-size: .78rem; }
.matchday-live-button > i { color: var(--match-lime); font-size: .7rem; }
.matchday-icon-button {
    display: grid;
    place-items: center;
    width: 47px;
    height: 47px;
    border: 1px solid rgba(255,255,255,.13);
    border-radius: 15px;
    background: rgba(255,255,255,.055);
    color: #fff;
}
.matchday-icon-button:hover { border-color: var(--match-lime); color: var(--match-lime); }

.matchday-nav { background: #fff; border-bottom: 1px solid #dfe2dc; box-shadow: 0 10px 32px rgba(7,17,27,.055); }
.matchday-nav-inner { min-height: 54px; display: flex; align-items: stretch; gap: 0; overflow-x: auto; scrollbar-width: none; }
.matchday-nav-inner::-webkit-scrollbar { display: none; }
.matchday-nav-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 0 15px;
    color: #34404b;
    font-size: .77rem;
    font-weight: 900;
    white-space: nowrap;
}
.matchday-nav-link::after {
    content: "";
    position: absolute;
    left: 15px;
    right: 15px;
    bottom: 0;
    height: 4px;
    border-radius: 5px 5px 0 0;
    background: var(--match-green);
    transform: scaleX(0);
    transition: transform .2s ease;
}
.matchday-nav-link:hover, .matchday-nav-link.active { color: var(--match-green-dark); }
.matchday-nav-link:hover::after, .matchday-nav-link.active::after { transform: scaleX(1); }
.matchday-home-link { width: 52px; justify-content: center; border-left: 1px solid #e8eae6; border-right: 1px solid #e8eae6; }
.matchday-nav-live { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; padding: 0 18px; background: var(--match-ink); color: #fff; font-size: .72rem; font-weight: 900; white-space: nowrap; }
.matchday-nav-live:hover { background: var(--match-green-dark); color: #fff; }
.matchday-nav-live span { width: 7px; height: 7px; border-radius: 50%; background: var(--match-red); box-shadow: 0 0 0 5px rgba(239,61,85,.13); }

.matchday-search { position: absolute; z-index: 80; left: 0; right: 0; background: rgba(7,17,27,.97); border: 0; box-shadow: 0 25px 70px rgba(0,0,0,.28); }
.matchday-search > .page-shell { padding-block: 22px; }
.matchday-search-form { position: relative; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; max-width: 900px; margin: auto; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: #fff; padding: 7px 7px 7px 18px; }
.matchday-search-form > i { color: #89949d; }
.matchday-search-form input { min-width: 0; border: 0; outline: 0; padding: 11px 0; color: var(--match-ink); font-size: .95rem; }
.matchday-search-form button { border: 0; border-radius: 12px; background: var(--match-green); padding: 12px 20px; color: #fff; font-weight: 900; }

.matchday-mobile-menu { border-top: 1px solid #e2e5df; background: #fff; }
.matchday-mobile-menu > .page-shell { padding-block: 18px 24px; }
.mobile-menu-head { margin-bottom: 13px; }
.mobile-menu-head span, .mobile-menu-head small { display: block; }
.mobile-menu-head span { font-family: "Barlow Condensed", sans-serif; font-size: 1.45rem; font-weight: 900; text-transform: uppercase; }
.mobile-menu-head small { margin-top: 2px; color: var(--match-muted); font-size: .68rem; }
.mobile-menu-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
.mobile-menu-grid .mobile-nav-link { border: 1px solid #e4e6e1; background: #f7f6f1; }
.mobile-menu-grid .mobile-live-link { background: #ecf7f2; color: var(--match-green-dark); }

.mobile-bottom-nav { display: none; }

/* Breaking news */
.matchday-breaking { background: var(--match-red); }
.matchday-breaking > .page-shell { min-height: 45px; }
.matchday-breaking strong { padding-right: 16px; border-right: 1px solid rgba(255,255,255,.28); }
.matchday-breaking .breaking-arrow { margin-left: auto; font-size: .75rem; }

/* Home intro */
.matchday-home-top {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
    align-items: end;
    gap: 54px;
    margin-bottom: 28px;
}
.matchday-home-top .display-title {
    max-width: 860px;
    margin-top: 8px;
    color: var(--match-ink);
    font-size: clamp(3.6rem, 7.3vw, 7rem);
    line-height: .78;
    letter-spacing: -.045em;
    text-transform: uppercase;
}
.matchday-home-top .display-title span { color: var(--match-green); }
.matchday-home-intro { padding: 0 0 10px 26px; border-left: 4px solid var(--match-lime); }
.matchday-home-intro p { margin: 0; color: #4f5c67; font-size: 1rem; line-height: 1.75; }
.home-stat-line { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 18px; color: var(--match-ink); font-size: .66rem; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.home-stat-line span { display: inline-flex; align-items: center; gap: 7px; }
.home-stat-line i { color: var(--match-green); }

.matchday-topic-rail { align-items: center; margin-bottom: 20px; padding: 0 0 10px; }
.topic-rail-label { flex: 0 0 auto; color: #7a858e; font-size: .62rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.matchday-topic-rail a { border-color: #d9ddd6; background: rgba(255,255,255,.66); backdrop-filter: blur(8px); }
.matchday-topic-rail a:hover { background: #fff; }

/* Lead stories */
.matchday-hero-grid { grid-template-columns: minmax(0, 1.85fr) minmax(330px, .75fr); gap: 16px; margin-bottom: 20px; }
.matchday-hero-lead { min-height: 650px; border-radius: 28px; box-shadow: var(--match-shadow); }
.matchday-hero-lead::after { content: ""; position: absolute; inset: 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 19px; pointer-events: none; }
.matchday-hero-lead .hero-overlay { background: linear-gradient(180deg, rgba(3,8,13,.03) 15%, rgba(3,8,13,.2) 43%, rgba(3,8,13,.94) 100%); }
.matchday-hero-lead .hero-content { padding: clamp(28px, 4vw, 55px); }
.matchday-hero-lead .hero-content h2 { max-width: 1000px; margin-top: 17px; font-size: clamp(2.6rem, 5.1vw, 5.2rem); line-height: .88; letter-spacing: -.035em; text-transform: uppercase; }
.matchday-hero-lead .hero-content p { max-width: 780px; color: #ced7de; }
.hero-story-index { position: absolute; z-index: 2; top: 28px; right: 31px; color: rgba(255,255,255,.46); font-family: "Barlow Condensed", sans-serif; font-size: 1.15rem; font-weight: 900; letter-spacing: .1em; }
.matchday-hero-lead .category-pill { background: var(--match-lime); color: #13200d; }

.matchday-hero-side { display: flex; flex-direction: column; gap: 0; overflow: hidden; border: 1px solid #d9ddd7; border-radius: 28px; background: var(--match-card); box-shadow: 0 15px 45px rgba(7,17,27,.065); }
.hero-side-head { display: flex; align-items: end; justify-content: space-between; min-height: 72px; padding: 18px 19px 15px; border-bottom: 1px solid #e4e6e1; }
.hero-side-head span { font-family: "Barlow Condensed", sans-serif; font-size: 1.45rem; font-weight: 900; text-transform: uppercase; }
.hero-side-head small { color: #8a949c; font-size: .62rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.matchday-hero-small { position: relative; flex: 1 1 0; grid-template-columns: 98px 1fr; gap: 13px; min-height: 0; border: 0; border-bottom: 1px solid #e8e9e5; border-radius: 0; box-shadow: none; background: transparent; padding: 12px 15px; }
.matchday-hero-small:last-child { border-bottom: 0; }
.matchday-hero-small:hover { background: #f7f8f3; }
.matchday-hero-small .hero-small-image { aspect-ratio: 1.15; border-radius: 12px; }
.hero-small-copy { min-width: 0; padding-right: 20px; }
.matchday-hero-small h2 { margin: 5px 0 7px; font-family: "Manrope", sans-serif; font-size: .87rem; line-height: 1.3; letter-spacing: -.02em; }
.matchday-hero-small .eyebrow { font-size: .56rem; }
.hero-small-index { position: absolute; top: 12px; right: 13px; color: #c1c6c1; font-family: "Barlow Condensed", sans-serif; font-size: .75rem; font-weight: 900; }
.matchday-empty-hero { margin-bottom: 20px; }

/* Scores */
.matchday-score-zone { margin: 20px 0 34px; }
.matchday-score-strip { border: 0; border-radius: 27px; background: var(--match-ink); color: #fff; box-shadow: 0 18px 45px rgba(7,17,27,.15); }
.score-strip-head { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 18px 20px 8px; }
.score-strip-heading-icon { display: grid; place-items: center; width: 47px; height: 47px; border-radius: 14px; background: var(--match-lime); color: var(--match-ink); }
.score-strip-head .eyebrow { color: var(--match-lime); font-size: .58rem; }
.score-strip-head h2 { margin: 1px 0 0; font-size: 1.55rem; font-weight: 900; text-transform: uppercase; }
.score-strip-head-actions { display: flex; align-items: center; gap: 18px; }
.score-strip-head-actions span { color: #8393a1; font-size: .6rem; font-weight: 800; }
.score-strip-head-actions a { color: #fff; font-size: .7rem; font-weight: 900; }
.score-strip-head-actions a:hover { color: var(--match-lime); }
.matchday-score-strip .score-scroll { padding: 12px 16px 17px; }
.matchday-score-strip .mini-match { border-color: rgba(255,255,255,.09); background: rgba(255,255,255,.055); color: #fff; }
.matchday-score-strip .mini-match:hover { border-color: rgba(200,255,61,.5); background: rgba(200,255,61,.075); transform: translateY(-2px); }
.matchday-score-strip .mini-match.is-live { border-color: rgba(239,61,85,.7); background: rgba(239,61,85,.09); }
.matchday-score-strip .mini-match-top { border-color: rgba(255,255,255,.08); color: #8c9aa7; }
.matchday-score-strip .mini-team b { color: var(--match-lime); }
.matchday-score-strip .mini-match small { color: #82919e; }
.score-strip-empty { display: flex; align-items: center; gap: 9px; padding: 15px 21px 22px; color: #9aa7b2; font-size: .75rem; }

/* Ads */
.matchday-leaderboard { display: flex; justify-content: center; margin: 0 auto 44px; }
.matchday-leaderboard.midpage { margin-block: 55px; }
.ad-frame, .ad-placeholder { border-radius: 19px; }
.ad-placeholder { border-color: #cbd0c8; background: repeating-linear-gradient(-45deg, rgba(255,255,255,.6), rgba(255,255,255,.6) 10px, rgba(240,239,233,.85) 10px, rgba(240,239,233,.85) 20px); }
.ad-label { right: 10px; top: 9px; background: rgba(7,17,27,.74); }

/* Content */
.matchday-content-grid { grid-template-columns: minmax(0, 1fr) 340px; align-items: start; gap: 32px; }
.matchday-section-heading { align-items: center; margin-bottom: 22px; }
.matchday-section-heading h2 { font-size: clamp(2.2rem, 4vw, 3.25rem); line-height: .9; text-transform: uppercase; }
.matchday-section-heading .section-line { background: #cfd3cc; }
.matchday-section-heading > a { flex: 0 0 auto; color: var(--match-green-dark); font-size: .69rem; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.latest-news-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 18px; }
.matchday-news-card { border: 0; border-radius: 22px; background: var(--match-card); box-shadow: 0 12px 35px rgba(7,17,27,.06); }
.matchday-news-card:hover { transform: translateY(-3px); box-shadow: 0 20px 44px rgba(7,17,27,.11); }
.matchday-news-card .news-card-image { position: relative; aspect-ratio: 16/10; }
.news-card-read { position: absolute; right: 13px; bottom: 13px; display: grid; place-items: center; width: 37px; height: 37px; border-radius: 12px; background: rgba(7,17,27,.88); color: #fff; opacity: 0; transform: translateY(5px); transition: .2s ease; }
.matchday-news-card:hover .news-card-read { opacity: 1; transform: translateY(0); }
.matchday-news-card .news-card-body { padding: 18px 19px 20px; }
.matchday-news-card .news-meta a { color: var(--match-green-dark); }
.matchday-news-card h2 { font-family: "Manrope", sans-serif; font-size: 1.12rem; line-height: 1.25; letter-spacing: -.03em; }
.matchday-news-card p { color: #68737c; }
.news-card-link { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; color: var(--match-ink); font-size: .65rem; font-weight: 900; text-transform: uppercase; letter-spacing: .08em; }
.news-card-link i { color: var(--match-green); transition: transform .2s ease; }
.news-card-link:hover { color: var(--match-green-dark); }
.news-card-link:hover i { transform: translateX(3px); }

.matchday-home-sidebar { display: grid; gap: 22px; }
.matchday-most-read { border: 0; border-radius: 24px; background: var(--match-ink); color: #fff; box-shadow: 0 18px 45px rgba(7,17,27,.13); }
.matchday-most-read .sidebar-title { border-color: rgba(255,255,255,.09); }
.matchday-most-read .sidebar-title span { color: var(--match-lime); }
.matchday-most-read .sidebar-title h2 { color: #fff; font-size: 2.2rem; text-transform: uppercase; }
.matchday-most-read .most-read-list li { border-color: rgba(255,255,255,.085); }
.matchday-most-read .most-read-list > li > span { color: rgba(200,255,61,.38); font-family: "Barlow Condensed", sans-serif; font-size: 1.55rem; }
.matchday-most-read .most-read-list a { color: #f6f9fb; }
.matchday-most-read .most-read-list a:hover { color: var(--match-lime); }
.matchday-most-read .most-read-list small { color: #7f8f9d; }
.matchday-sidebar-ad { display: flex; justify-content: center; }

/* Competitions */
.matchday-competition-links { margin-top: 58px; }
.matchday-competition-links > div:last-child { gap: 13px; }
.matchday-competition-links > div:last-child > a { grid-template-columns: 52px 1fr auto; border: 0; border-radius: 18px; background: var(--match-card); box-shadow: 0 10px 30px rgba(7,17,27,.055); }
.matchday-competition-links > div:last-child > a:hover { border: 0; background: #fff; box-shadow: 0 18px 40px rgba(7,17,27,.10); }
.competition-logo-mini { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 14px; background: #f0f2ed; padding: 8px; }
.matchday-competition-links .competition-logo-mini img { width: 100%; height: 100%; object-fit: contain; }

.matchday-category-section { margin-top: 64px; }
.matchday-category-feature { border: 0; background: var(--match-card); box-shadow: 0 14px 40px rgba(7,17,27,.065); }
.category-feature-image { overflow: hidden; aspect-ratio: 16/9; }
.category-feature-image > img, .category-feature-image > span { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.matchday-category-feature:hover .category-feature-image > img { transform: scale(1.035); }
.matchday-category-feature h3 { font-family: "Manrope", sans-serif; }
.category-mini-list article { border-bottom-color: #dfe2db; }
.category-mini-list article a { border-radius: 18px; }
.category-mini-list article a:hover { background: rgba(255,255,255,.62); }
.category-mini-list h3 { font-family: "Manrope", sans-serif; }
.category-mini-list article div > span { display: inline-flex; align-items: center; gap: 6px; margin-top: 8px; color: var(--match-green-dark); font-size: .59rem; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }

/* Generic public pages */
.category-header, .competition-hero, .team-hero, .scores-header {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(90deg, rgba(200,255,61,.04) 1px, transparent 1px) 0 0 / 32px 32px,
        linear-gradient(rgba(200,255,61,.04) 1px, transparent 1px) 0 0 / 32px 32px,
        linear-gradient(135deg, var(--match-ink), #12354a);
    color: #fff;
    box-shadow: 0 18px 55px rgba(7,17,27,.12);
}
.category-header::after, .competition-hero::after, .team-hero::after, .scores-header::after { content: ""; position: absolute; width: 260px; height: 260px; right: -55px; bottom: -160px; border: 1px solid rgba(200,255,61,.2); border-radius: 50%; box-shadow: 0 0 0 45px rgba(200,255,61,.035); pointer-events: none; }
.category-header { max-width: none; padding: clamp(34px, 6vw, 72px); }
.category-header .eyebrow, .competition-hero .eyebrow, .team-hero .eyebrow, .scores-header .eyebrow { color: var(--match-lime); }
.category-header h1 { color: #fff; font-size: clamp(3.2rem, 7vw, 6.4rem); line-height: .83; text-transform: uppercase; }
.category-header p { color: #c2ced7; }
.category-competition-link { border-color: rgba(255,255,255,.13); background: rgba(255,255,255,.08); color: #fff; }
.category-competition-link:hover { border-color: var(--match-lime); color: var(--match-lime); }
.content-grid { grid-template-columns: minmax(0,1fr) 340px; align-items: start; }
.sidebar-panel { border: 0; background: var(--match-card); box-shadow: 0 13px 38px rgba(7,17,27,.07); }
.sidebar-title h2 { text-transform: uppercase; }
.mini-standings td, .mini-standings th { padding-block: 9px; }
.mini-standings tr:hover td { background: #f4f6f1; }
.mini-fixture:hover { color: var(--match-green-dark); }
.sticky-side { top: 86px; }

/* Article */
.article-header {
    position: relative;
    overflow: hidden;
    background: var(--match-ink);
    color: #fff;
}
.article-header::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(200,255,61,.035) 1px, transparent 1px) 0 0 / 35px 35px, linear-gradient(rgba(200,255,61,.035) 1px, transparent 1px) 0 0 / 35px 35px; }
.article-header .page-shell { position: relative; z-index: 1; padding-top: 66px; padding-bottom: 70px; }
.article-header h1 { max-width: 1060px; font-size: clamp(3.2rem, 7vw, 6.7rem); line-height: .84; letter-spacing: -.03em; text-transform: uppercase; }
.article-intro { max-width: 800px; color: #c6d0d8; font-size: 1.1rem; }
.article-meta { color: #92a2b0; }
.article-hero-image { margin-top: -22px; border-radius: 26px; box-shadow: 0 25px 70px rgba(7,17,27,.18); }
.article-grid { grid-template-columns: minmax(0, 780px) 340px; gap: 48px; }
.share-bar a, .share-bar button { border: 0; background: #fff; box-shadow: 0 7px 22px rgba(7,17,27,.055); }
.article-body { color: #29343e; font-family: "Source Serif 4", Georgia, serif; font-size: clamp(1.12rem, 2vw, 1.28rem); }
.article-body h2, .article-body h3, .article-body h4 { font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; }
.article-body blockquote { border-left-color: var(--match-lime); background: var(--match-ink); color: #fff; }
.comment-form, .comment { border: 0; background: var(--match-card); box-shadow: 0 10px 30px rgba(7,17,27,.055); }
.primary-button { background: var(--match-green); }
.primary-button:hover { background: var(--match-green-dark); }

/* Footer */
.matchday-footer { position: relative; margin-top: 80px; background: #030a11; color: #a4b0ba; }
.footer-scoreline { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; width: min(100% - 34px, 1320px); margin: auto; padding-top: 28px; }
.footer-scoreline span { height: 1px; background: rgba(255,255,255,.11); }
.footer-scoreline i { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; background: var(--match-lime); color: var(--match-ink); }
.matchday-footer-grid { display: grid; grid-template-columns: 1.45fr .75fr .8fr 1.1fr; gap: 50px; padding-block: 48px 55px; }
.matchday-footer-brand { color: #fff; }
.matchday-footer-brand strong { font-size: 2rem; text-transform: uppercase; }
.footer-brand-column p { max-width: 440px; margin: 19px 0 0; color: #83919d; line-height: 1.75; font-size: .82rem; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.footer-socials a { display: grid; place-items: center; width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; color: #fff; }
.footer-socials a:hover { border-color: var(--match-lime); color: var(--match-lime); }
.matchday-footer .footer-heading { color: var(--match-lime); }
.footer-links { display: grid; gap: 12px; }
.footer-links a { color: #b6c0c8; font-size: .76rem; font-weight: 700; }
.footer-links a:hover { color: #fff; transform: translateX(2px); }
.footer-match-card { border: 1px solid rgba(255,255,255,.1); border-radius: 22px; background: rgba(255,255,255,.045); padding: 22px; }
.footer-match-card > span { color: var(--match-lime); font-size: .6rem; font-weight: 900; text-transform: uppercase; letter-spacing: .13em; }
.footer-match-card h2 { margin: 8px 0 20px; color: #fff; font-size: 2rem; line-height: .93; text-transform: uppercase; }
.footer-match-card a { display: inline-flex; align-items: center; gap: 8px; color: #fff; font-size: .68rem; font-weight: 900; text-transform: uppercase; letter-spacing: .07em; }
.footer-match-card a:hover { color: var(--match-lime); }
.matchday-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.matchday-footer-bottom > div { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #61707d; font-size: .64rem; }

/* Motion and focus */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid rgba(200,255,61,.75); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; animation-iteration-count: 1 !important; } }

@media (max-width: 1099px) {
    .matchday-masthead-inner { grid-template-columns: 1fr auto; }
    .matchday-masthead-center { display: none; }
    .matchday-hero-grid { grid-template-columns: minmax(0,1.5fr) minmax(300px,.8fr); }
    .matchday-hero-lead { min-height: 580px; }
    .matchday-content-grid, .content-grid { grid-template-columns: minmax(0,1fr) 320px; gap: 24px; }
    .matchday-footer-grid { grid-template-columns: 1.3fr .7fr .8fr; }
    .footer-match-card { grid-column: 1 / -1; }
}

@media (max-width: 899px) {
    body { padding-bottom: 72px; }
    .matchday-utility-links, .matchday-live-button { display: none; }
    .matchday-masthead-inner { min-height: 82px; }
    .matchday-brand img { width: 48px; height: 48px; }
    .matchday-brand strong { font-size: 2rem; }
    .matchday-nav-inner { display: none; }
    .matchday-nav { min-height: 0; border: 0; }
    .mobile-bottom-nav {
        position: fixed;
        z-index: 100;
        left: 10px;
        right: 10px;
        bottom: max(9px, env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: end;
        min-height: 62px;
        border: 1px solid rgba(255,255,255,.12);
        border-radius: 20px;
        background: rgba(7,17,27,.96);
        padding: 7px 6px;
        box-shadow: 0 18px 55px rgba(0,0,0,.3);
        backdrop-filter: blur(16px);
    }
    .mobile-bottom-nav a, .mobile-bottom-nav button { display: grid; place-items: center; gap: 4px; min-width: 0; border: 0; background: transparent; color: #8999a7; font-size: .54rem; font-weight: 800; }
    .mobile-bottom-nav i { font-size: 1rem; }
    .mobile-bottom-nav .active { color: var(--match-lime); }
    .mobile-bottom-live { position: relative; top: -9px; }
    .mobile-bottom-live i { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 15px; background: var(--match-lime); color: var(--match-ink); box-shadow: 0 8px 22px rgba(200,255,61,.2); }
    .matchday-home-top { grid-template-columns: 1fr; gap: 22px; }
    .matchday-home-intro { max-width: 620px; }
    .matchday-hero-grid { grid-template-columns: 1fr; }
    .matchday-hero-side { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
    .hero-side-head { grid-column: 1 / -1; }
    .matchday-hero-small { min-height: 125px; border-right: 1px solid #e8e9e5; }
    .matchday-content-grid, .content-grid, .article-grid { grid-template-columns: 1fr; }
    .matchday-home-sidebar { grid-template-columns: minmax(0,1fr) 310px; align-items: start; }
    .article-grid { max-width: 800px; }
    .matchday-footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .footer-brand-column, .footer-match-card { grid-column: 1 / -1; }
}

@media (max-width: 699px) {
    .page-shell { width: min(100% - 24px, 1320px); }
    .home-page-shell { padding-top: 27px; padding-bottom: 50px; }
    .matchday-utility-inner { min-height: 31px; font-size: .57rem; }
    .matchday-now { gap: 8px; }
    .utility-divider { display: none; }
    .matchday-masthead::after { display: none; }
    .matchday-masthead-inner { min-height: 75px; gap: 10px; }
    .matchday-brand { gap: 9px; }
    .matchday-brand img { width: 43px; height: 43px; }
    .matchday-brand strong { font-size: 1.65rem; }
    .matchday-brand small { font-size: .48rem; }
    .matchday-icon-button { width: 41px; height: 41px; border-radius: 13px; }
    .matchday-actions { gap: 6px; }
    .matchday-search { position: fixed; top: 0; bottom: 0; display: grid; align-items: start; padding-top: 95px; }
    .matchday-search.hidden { display: none; }
    .matchday-search-form { grid-template-columns: auto 1fr; padding: 8px 14px; }
    .matchday-search-form button { grid-column: 1 / -1; }
    .matchday-breaking > .page-shell { min-height: 39px; }
    .matchday-breaking strong { padding-right: 9px; font-size: .55rem; }
    .matchday-breaking .breaking-arrow { display: none; }
    .matchday-home-top .display-title { font-size: clamp(3.05rem, 15vw, 5.2rem); }
    .matchday-home-intro { padding-left: 16px; }
    .matchday-home-intro p { font-size: .88rem; line-height: 1.65; }
    .home-stat-line { gap: 10px; font-size: .56rem; }
    .topic-rail-label { display: none; }
    .matchday-hero-lead { min-height: 505px; border-radius: 22px; }
    .matchday-hero-lead::after { inset: 9px; border-radius: 15px; }
    .matchday-hero-lead .hero-content { padding: 24px 21px; }
    .matchday-hero-lead .hero-content h2 { font-size: clamp(2.3rem, 11vw, 3.75rem); }
    .matchday-hero-lead .hero-content p { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; font-size: .82rem; }
    .hero-story-index { top: 20px; right: 21px; }
    .matchday-hero-side { display: flex; border-radius: 22px; }
    .matchday-hero-small { grid-template-columns: 94px 1fr; min-height: 116px; border-right: 0; }
    .score-strip-head { grid-template-columns: auto 1fr; padding: 15px 15px 7px; }
    .score-strip-heading-icon { width: 41px; height: 41px; border-radius: 12px; }
    .score-strip-head h2 { font-size: 1.32rem; }
    .score-strip-head-actions { grid-column: 1 / -1; justify-content: space-between; }
    .score-strip-head-actions span { display: none; }
    .matchday-leaderboard { margin-bottom: 36px; }
    .latest-news-grid { grid-template-columns: 1fr; }
    .matchday-news-card { display: grid; grid-template-columns: 126px 1fr; align-items: stretch; border-radius: 18px; }
    .matchday-news-card .news-card-image { height: 100%; aspect-ratio: auto; min-height: 145px; border-radius: 18px 0 0 18px; }
    .matchday-news-card .news-card-body { min-width: 0; padding: 14px; }
    .matchday-news-card h2 { margin: 7px 0; font-size: .91rem; }
    .matchday-news-card p, .news-card-link, .news-card-read { display: none; }
    .matchday-news-card .news-meta { display: block; }
    .matchday-news-card .news-meta span { display: block; margin-top: 4px; }
    .matchday-home-sidebar { grid-template-columns: 1fr; }
    .matchday-sidebar-ad { order: -1; }
    .matchday-section-heading { gap: 10px; }
    .matchday-section-heading h2 { font-size: 2.2rem; }
    .matchday-section-heading .section-line { display: none; }
    .matchday-section-heading > a { margin-left: auto; }
    .matchday-competition-links > div:last-child { grid-template-columns: 1fr; }
    .category-feature-grid { grid-template-columns: 1fr; }
    .category-header, .competition-hero, .team-hero, .scores-header { border-radius: 22px; }
    .category-header { padding: 30px 22px; }
    .category-header h1 { font-size: 3.5rem; }
    .article-header .page-shell { padding-top: 42px; padding-bottom: 48px; }
    .article-header h1 { font-size: clamp(3rem, 14vw, 4.6rem); }
    .article-intro { font-size: .95rem; }
    .article-hero-image { margin-top: -10px; border-radius: 18px; }
    .article-grid { padding-top: 28px; }
    .matchday-footer { margin-top: 55px; }
    .matchday-footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-brand-column, .footer-match-card { grid-column: auto; }
    .matchday-footer-bottom > div { align-items: flex-start; flex-direction: column; justify-content: center; gap: 3px; }
}

@media (max-width: 420px) {
    .matchday-news-card { grid-template-columns: 112px 1fr; }
    .matchday-news-card .news-card-image { min-height: 132px; }
    .matchday-hero-small { grid-template-columns: 82px 1fr; padding-inline: 11px; }
    .hero-small-copy { padding-right: 14px; }
}

/* Entity, tag and data pages */
.entity-header {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 22px;
    max-width: none;
    border-radius: 28px;
    background:
        linear-gradient(90deg, rgba(200,255,61,.04) 1px, transparent 1px) 0 0 / 32px 32px,
        linear-gradient(rgba(200,255,61,.04) 1px, transparent 1px) 0 0 / 32px 32px,
        linear-gradient(135deg, var(--match-ink), #12354a);
    padding: clamp(30px, 5vw, 58px);
    color: #fff;
    box-shadow: 0 18px 55px rgba(7,17,27,.12);
}
.entity-header::after { content: ""; position: absolute; width: 260px; height: 260px; right: -60px; bottom: -160px; border: 1px solid rgba(200,255,61,.2); border-radius: 50%; box-shadow: 0 0 0 45px rgba(200,255,61,.035); }
.entity-header > * { position: relative; z-index: 1; }
.entity-header .entity-logo { display: grid; place-items: center; width: 90px; height: 90px; flex: 0 0 90px; border: 1px solid rgba(255,255,255,.12); border-radius: 24px; background: rgba(255,255,255,.08); color: var(--match-lime); font-size: 2rem; }
.entity-header .eyebrow { color: var(--match-lime); }
.entity-header h1 { color: #fff; font-size: clamp(3rem, 7vw, 5.8rem); line-height: .84; text-transform: uppercase; }
.entity-header p { color: #c2ced7; }
.entity-actions a { border-color: rgba(255,255,255,.13); background: rgba(255,255,255,.07); color: #fff; }
.entity-actions a:hover { border-color: var(--match-lime); color: var(--match-lime); }

.standings-full table { width: 100%; min-width: 720px; border-collapse: collapse; }
.standings-full th { padding: 12px 10px; background: #f1f2ed; color: #7f8a92; text-align: center; font-size: .62rem; text-transform: uppercase; letter-spacing: .04em; }
.standings-full th:nth-child(2) { text-align: left; }
.standings-full td { padding: 12px 10px; border-top: 1px solid #e8e9e4; text-align: center; font-size: .73rem; }
.standings-full td:nth-child(2) { text-align: left; }
.standings-full tbody tr:hover td { background: #f7f8f3; }

.matches-board { border: 0; border-radius: 24px; background: var(--match-card); box-shadow: 0 14px 42px rgba(7,17,27,.075); }
.matches-toolbar { background: var(--match-ink); color: #fff; }
.matches-toolbar h2 { font-family: "Barlow Condensed", sans-serif; font-size: 1.7rem; text-transform: uppercase; }
.matches-toolbar button { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.06); color: #fff; }
.league-heading { background: #eef0ea; }
.match-row:hover { background: #f5f7f1; }
.match-row.is-live { background: rgba(239,61,85,.055); }
.match-row.is-live .match-time strong { color: var(--match-red); }

.entity-panel, .match-panel { border: 0; background: var(--match-card); box-shadow: 0 12px 36px rgba(7,17,27,.06); }
.fixture-row, .match-card { border-color: #e2e5df; background: #f8f8f4; }
.fixture-row:hover, .match-card:hover { border-color: #b8d8ca; background: #fff; }

@media (max-width: 699px) {
    .entity-header { align-items: flex-start; flex-direction: column; border-radius: 22px; padding: 28px 22px; }
    .entity-header .entity-logo { width: 70px; height: 70px; flex-basis: 70px; border-radius: 19px; }
    .entity-header h1 { font-size: 3.5rem; }
}

/* =========================================================
   Leikurinn.is v2.2 — Pressbox design system
   Cleaner, denser and more professional football newsroom UI
   ========================================================= */
:root {
    --pb-ink: #071018;
    --pb-navy: #0b1b27;
    --pb-navy-2: #102938;
    --pb-green: #079466;
    --pb-green-dark: #046447;
    --pb-lime: #d5ff45;
    --pb-red: #ef3f5d;
    --pb-paper: #f4f6f2;
    --pb-card: #ffffff;
    --pb-soft: #eef2ed;
    --pb-line: #dce3dc;
    --pb-text: #18242d;
    --pb-muted: #687681;
    --pb-radius: 22px;
    --pb-shadow: 0 18px 55px rgba(7, 16, 24, .08);
    --pb-shadow-strong: 0 30px 80px rgba(7, 16, 24, .16);
}

body {
    background: var(--pb-paper) !important;
    color: var(--pb-text);
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background:
        radial-gradient(circle at 4% 0%, rgba(213, 255, 69, .08), transparent 25rem),
        radial-gradient(circle at 100% 16%, rgba(7, 148, 102, .055), transparent 30rem);
}
.page-shell { width: min(100% - 36px, 1360px); }
.home-page-shell { padding-top: 30px; }

/* Header */
.pressbox-header { position: relative; z-index: 70; background: #fff; box-shadow: 0 7px 28px rgba(7,16,24,.06); }
.pressbox-topline { background: #050c12; color: #9eabb5; }
.pressbox-topline-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; font-size: .64rem; font-weight: 800; letter-spacing: .055em; text-transform: uppercase; }
.pressbox-status, .pressbox-quicklinks { display: flex; align-items: center; gap: 13px; }
.pressbox-live-link { display: inline-flex; align-items: center; gap: 8px; color: #fff; }
.pressbox-live-link:hover { color: var(--pb-lime); }
.pressbox-quicklinks a { color: #aeb9c2; }
.pressbox-quicklinks a:hover { color: #fff; }
.pressbox-quicklinks i { margin-right: 4px; }
.pressbox-masthead { position: relative; overflow: hidden; background: #fff; border-bottom: 1px solid #edf0ec; }
.pressbox-masthead::after { content: ""; position: absolute; right: 12%; top: -76px; width: 270px; height: 270px; border: 1px solid rgba(7,148,102,.08); border-radius: 50%; box-shadow: 0 0 0 38px rgba(7,148,102,.025), 0 0 0 76px rgba(7,148,102,.018); }
.pressbox-masthead-inner { position: relative; z-index: 1; min-height: 92px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 28px; }
.pressbox-brand { width: max-content; color: var(--pb-ink); }
.pressbox-brand img { width: 58px; height: 58px; filter: drop-shadow(0 10px 22px rgba(7,148,102,.16)); }
.pressbox-brand strong { font-size: clamp(2rem, 3.4vw, 2.75rem); letter-spacing: -.055em; text-transform: uppercase; }
.pressbox-brand strong span { color: var(--pb-green); }
.pressbox-brand small { color: #7f8c96; font-size: .6rem; letter-spacing: .22em; }
.pressbox-edition { display: flex; align-items: center; gap: 11px; color: #8c989f; font-size: .59rem; font-weight: 900; letter-spacing: .2em; text-transform: uppercase; }
.pressbox-edition i { width: 4px; height: 4px; border-radius: 50%; background: var(--pb-green); }
.pressbox-actions { justify-self: end; display: flex; align-items: center; gap: 9px; }
.pressbox-score-button { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; min-width: 184px; border: 1px solid #dfe6df; border-radius: 15px; background: #f7f9f6; padding: 8px 11px; color: var(--pb-ink); }
.pressbox-score-button:hover { border-color: #9fcdbb; background: #f1f8f4; color: var(--pb-green-dark); transform: translateY(-1px); }
.score-button-icon { display: grid; place-items: center; width: 37px; height: 37px; border-radius: 11px; background: var(--pb-ink); color: var(--pb-lime); }
.pressbox-score-button small, .pressbox-score-button strong { display: block; }
.pressbox-score-button small { color: #82909a; font-size: .53rem; font-weight: 900; letter-spacing: .1em; text-transform: uppercase; }
.pressbox-score-button strong { margin-top: 1px; font-size: .77rem; }
.pressbox-score-button > i { color: var(--pb-green); font-size: .7rem; }
.pressbox-icon-button { display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid #dfe5df; border-radius: 14px; background: #fff; color: var(--pb-ink); }
.pressbox-icon-button:hover { border-color: var(--pb-green); background: #f1f8f4; color: var(--pb-green-dark); }
.pressbox-nav { background: var(--pb-navy); }
.pressbox-nav-inner { min-height: 52px; display: flex; align-items: stretch; overflow-x: auto; scrollbar-width: none; }
.pressbox-nav-inner::-webkit-scrollbar { display: none; }
.pressbox-nav-link { position: relative; display: inline-flex; align-items: center; flex: 0 0 auto; padding: 0 15px; color: #b8c4cc; font-size: .74rem; font-weight: 850; white-space: nowrap; }
.pressbox-nav-link::after { content: ""; position: absolute; left: 15px; right: 15px; bottom: 0; height: 3px; border-radius: 4px 4px 0 0; background: var(--pb-lime); transform: scaleX(0); transition: transform .2s ease; }
.pressbox-nav-link:hover, .pressbox-nav-link.active { color: #fff; }
.pressbox-nav-link:hover::after, .pressbox-nav-link.active::after { transform: scaleX(1); }
.pressbox-home-link { width: 52px; justify-content: center; border-inline: 1px solid rgba(255,255,255,.07); }
.pressbox-nav-match { margin-left: auto; display: inline-flex; align-items: center; gap: 8px; padding: 0 18px; background: var(--pb-green); color: #fff; font-size: .7rem; font-weight: 900; white-space: nowrap; }
.pressbox-nav-match:hover { background: var(--pb-green-dark); color: #fff; }
.pressbox-nav-match > span { width: 7px; height: 7px; border-radius: 50%; background: #fff; box-shadow: 0 0 0 5px rgba(255,255,255,.13); }
.pressbox-nav-match i { font-size: .58rem; }
.pressbox-search { position: absolute; left: 0; right: 0; z-index: 90; border: 0; background: rgba(7,16,24,.98); box-shadow: 0 26px 60px rgba(0,0,0,.26); }
.pressbox-search > .page-shell { padding-block: 22px; }
.pressbox-search-form { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; max-width: 920px; margin: auto; border-radius: 16px; background: #fff; padding: 7px 7px 7px 18px; }
.pressbox-search-form > i { color: #81909a; }
.pressbox-search-form input { min-width: 0; border: 0; outline: 0; padding: 11px 0; color: var(--pb-ink); }
.pressbox-search-form button { border: 0; border-radius: 11px; background: var(--pb-green); padding: 12px 22px; color: #fff; font-weight: 900; }
.pressbox-mobile-menu { border-top: 1px solid #1c3342; background: var(--pb-navy); color: #fff; }
.pressbox-mobile-menu > .page-shell { padding-block: 18px 24px; }
.pressbox-mobile-menu .mobile-menu-head span { color: #fff; }
.pressbox-mobile-menu .mobile-menu-head small { color: #8495a1; }
.pressbox-mobile-menu .mobile-nav-link { border: 1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.045); color: #dce4e9; }
.pressbox-mobile-menu .mobile-live-link { background: rgba(213,255,69,.1); color: var(--pb-lime); }

/* Breaking and frontpage intro */
.pressbox-breaking { background: var(--pb-red); }
.pressbox-breaking > .page-shell { min-height: 43px; }
.pressbox-frontpage-head { display: grid; grid-template-columns: 1fr minmax(320px, .65fr); align-items: end; gap: 44px; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid var(--pb-line); }
.pressbox-frontpage-head .eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--pb-green-dark); }
.pressbox-frontpage-head .eyebrow i { color: var(--pb-red); font-size: .42rem; }
.pressbox-frontpage-head h1 { margin: 4px 0 0; color: var(--pb-ink); font-size: clamp(3rem, 6vw, 5.7rem); line-height: .84; letter-spacing: -.04em; text-transform: uppercase; }
.pressbox-frontpage-copy { padding-left: 24px; border-left: 3px solid var(--pb-lime); }
.pressbox-frontpage-copy p { margin: 0; color: #53616b; font-size: .92rem; line-height: 1.65; }
.pressbox-frontpage-copy span { display: block; margin-top: 11px; color: #87939b; font-size: .62rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.pressbox-topic-rail { align-items: center; margin-bottom: 18px; padding-bottom: 2px; }
.pressbox-topic-rail .topic-rail-label { display: inline-flex; align-items: center; gap: 6px; color: #7a878f; }
.pressbox-topic-rail a { border: 1px solid #dce3dc; background: #fff; box-shadow: 0 5px 16px rgba(7,16,24,.025); }
.pressbox-topic-rail a:hover { border-color: #a8cbbb; background: #f6fbf8; color: var(--pb-green-dark); transform: translateY(-1px); }

/* Hero */
.pressbox-hero-grid { grid-template-columns: minmax(0, 1.72fr) minmax(330px, .78fr); gap: 16px; margin-bottom: 18px; }
.pressbox-hero-lead { min-height: 610px; border-radius: 24px; box-shadow: var(--pb-shadow-strong); }
.pressbox-hero-lead::after { content: none; }
.pressbox-hero-lead .hero-overlay { background: linear-gradient(180deg, rgba(3,8,12,.02) 10%, rgba(3,8,12,.15) 42%, rgba(3,8,12,.96) 100%); }
.pressbox-hero-lead .hero-content { padding: clamp(30px, 4vw, 52px); }
.pressbox-hero-lead .hero-content h2 { max-width: 900px; margin: 15px 0 12px; font-family: "Manrope", sans-serif; font-size: clamp(2.45rem, 4.5vw, 4.6rem); line-height: .98; letter-spacing: -.052em; text-transform: none; }
.pressbox-hero-lead .hero-content p { max-width: 750px; color: #d3dde3; font-size: .96rem; }
.pressbox-hero-top { position: absolute; z-index: 3; top: 20px; right: 21px; display: flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; background: rgba(7,16,24,.45); padding: 7px 10px; color: #fff; backdrop-filter: blur(10px); }
.pressbox-hero-top span { font-family: "Barlow Condensed", sans-serif; font-size: .85rem; font-weight: 900; }
.pressbox-hero-top small { color: #ccd5db; font-size: .55rem; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.pressbox-hero-lead .category-pill { background: var(--pb-lime); color: #16210f; }
.hero-read-more { margin-left: auto; color: #fff; font-weight: 900; }
.hero-read-more i { margin-left: 5px; color: var(--pb-lime); }
.pressbox-hero-side { display: flex; flex-direction: column; gap: 0; overflow: hidden; border: 1px solid var(--pb-line); border-radius: 24px; background: #fff; box-shadow: var(--pb-shadow); }
.pressbox-side-heading { display: flex; align-items: end; justify-content: space-between; min-height: 78px; padding: 18px 20px 14px; border-bottom: 1px solid #e8ece7; }
.pressbox-side-heading h2 { margin: 2px 0 0; font-size: 1.55rem; line-height: 1; text-transform: uppercase; }
.pressbox-side-heading > span { color: #929da4; font-size: .6rem; font-weight: 800; text-transform: uppercase; }
.pressbox-hero-small { position: relative; flex: 1 1 0; grid-template-columns: 108px 1fr; gap: 14px; min-height: 0; border: 0; border-bottom: 1px solid #ebeee9; border-radius: 0; background: #fff; padding: 13px 15px; box-shadow: none; }
.pressbox-hero-small:last-child { border-bottom: 0; }
.pressbox-hero-small:hover { background: #f7faf7; }
.pressbox-hero-small .hero-small-image { position: relative; aspect-ratio: 1.22; border-radius: 13px; }
.pressbox-hero-small .hero-small-image > span:last-child { position: absolute; left: 7px; bottom: 7px; display: grid; place-items: center; min-width: 24px; height: 24px; border-radius: 8px; background: rgba(7,16,24,.82); color: #fff; font-family: "Barlow Condensed", sans-serif; font-size: .67rem; font-weight: 900; }
.pressbox-hero-small .hero-small-copy { padding-right: 0; }
.pressbox-hero-small h2 { margin: 5px 0 7px; font-family: "Manrope", sans-serif; font-size: .9rem; line-height: 1.27; letter-spacing: -.025em; }
.pressbox-hero-small small { color: #8b979f; }

/* Scores */
.pressbox-score-zone { margin: 18px 0 34px; }
.pressbox-score-strip { position: relative; overflow: hidden; border: 0; border-radius: 22px; background: var(--pb-navy); color: #fff; box-shadow: 0 18px 45px rgba(7,16,24,.14); }
.pressbox-score-strip::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, var(--pb-green), var(--pb-lime)); }
.pressbox-score-head { grid-template-columns: auto 1fr auto; padding: 18px 20px 8px; }
.pressbox-score-head .score-strip-heading-icon { width: 43px; height: 43px; border-radius: 13px; background: var(--pb-lime); color: var(--pb-ink); }
.pressbox-score-head .eyebrow { color: var(--pb-lime); }
.pressbox-score-head h2 { font-size: 1.5rem; }
.pressbox-score-scroll { gap: 10px; padding: 12px 16px 17px; }
.pressbox-mini-match { flex-basis: 225px; border: 1px solid rgba(255,255,255,.095); border-radius: 15px; background: rgba(255,255,255,.055); color: #fff; }
.pressbox-mini-match:hover { border-color: rgba(213,255,69,.45); background: rgba(213,255,69,.075); transform: translateY(-2px); }
.pressbox-mini-match.is-live { border-color: rgba(239,63,93,.7); background: rgba(239,63,93,.09); }
.pressbox-mini-match .mini-match-top { border-color: rgba(255,255,255,.08); color: #95a4af; }
.pressbox-mini-match .mini-match-top strong { color: var(--pb-lime); }
.pressbox-mini-match.is-live .mini-match-top strong { color: #ff8197; }
.pressbox-mini-match .mini-team b { color: #fff; }
.pressbox-mini-match small { color: #8f9da8; }

/* Advertising */
.pressbox-leaderboard { display: flex; justify-content: center; margin: 0 auto 42px; }
.pressbox-leaderboard.midpage { margin-block: 56px; }
.pressbox-sidebar-ad { display: flex; justify-content: center; }
.ad-frame, .ad-placeholder { border-radius: 17px; }

/* News grid and sidebar */
.pressbox-content-grid { grid-template-columns: minmax(0,1fr) 342px; align-items: start; gap: 32px; }
.pressbox-section-heading { align-items: center; margin-bottom: 20px; }
.pressbox-section-heading h2 { font-size: clamp(2.1rem, 3.4vw, 3rem); line-height: .92; text-transform: uppercase; }
.pressbox-section-heading .section-line { background: #cfd7cf; }
.pressbox-section-heading > a { flex: 0 0 auto; color: var(--pb-green-dark); font-size: .66rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.pressbox-latest-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 17px; }
.pressbox-news-card { border: 1px solid #e1e6e0; border-radius: 20px; background: #fff; box-shadow: 0 10px 30px rgba(7,16,24,.045); }
.pressbox-news-card:hover { border-color: #c7d8cd; transform: translateY(-3px); box-shadow: 0 20px 44px rgba(7,16,24,.095); }
.pressbox-news-card .news-card-image { position: relative; aspect-ratio: 16/9; }
.pressbox-card-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 55%, rgba(7,16,24,.2)); opacity: .7; }
.pressbox-news-card .news-card-read { right: 12px; bottom: 12px; width: 38px; height: 38px; border-radius: 12px; background: var(--pb-lime); color: var(--pb-ink); }
.pressbox-card-breaking { position: absolute; left: 12px; top: 12px; border-radius: 999px; background: var(--pb-red); padding: 6px 9px; color: #fff; font-size: .56rem; font-weight: 900; letter-spacing: .07em; text-transform: uppercase; }
.pressbox-news-card .news-card-body { padding: 17px 18px 18px; }
.pressbox-news-card .news-meta span i { margin-right: 4px; }
.pressbox-news-card h2 { font-family: "Manrope", sans-serif; font-size: 1.08rem; line-height: 1.28; letter-spacing: -.03em; }
.pressbox-card-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 14px; padding-top: 13px; border-top: 1px solid #edf0ec; }
.pressbox-card-footer > span { color: #a0a9af; font-size: .56rem; font-weight: 800; text-transform: uppercase; }
.pressbox-latest-grid .pressbox-news-card:first-child { grid-column: 1 / -1; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr); }
.pressbox-latest-grid .pressbox-news-card:first-child .news-card-image { height: 100%; min-height: 330px; aspect-ratio: auto; }
.pressbox-latest-grid .pressbox-news-card:first-child .news-card-body { display: flex; flex-direction: column; justify-content: center; padding: clamp(24px, 4vw, 38px); }
.pressbox-latest-grid .pressbox-news-card:first-child h2 { font-size: clamp(1.55rem, 2.5vw, 2.25rem); line-height: 1.12; }
.pressbox-latest-grid .pressbox-news-card:first-child p { -webkit-line-clamp: 3; font-size: .93rem; }
.pressbox-home-sidebar { display: grid; gap: 22px; }
.pressbox-most-read { overflow: hidden; border: 0; border-radius: 22px; background: var(--pb-navy); color: #fff; box-shadow: 0 18px 45px rgba(7,16,24,.13); }
.pressbox-most-read .sidebar-title { display: flex; align-items: center; justify-content: space-between; border-color: rgba(255,255,255,.09); }
.pressbox-most-read .sidebar-title span { color: var(--pb-lime); }
.pressbox-most-read .sidebar-title h2 { color: #fff; font-size: 2rem; }
.pressbox-most-read .sidebar-title > i { display: grid; place-items: center; width: 39px; height: 39px; border-radius: 12px; background: rgba(213,255,69,.1); color: var(--pb-lime); }
.pressbox-most-read .most-read-list li { border-color: rgba(255,255,255,.085); }
.pressbox-most-read .most-read-list > li > span { color: rgba(213,255,69,.38); font-family: "Barlow Condensed", sans-serif; font-size: 1.55rem; }
.pressbox-most-read .most-read-list a { color: #f5f8fa; }
.pressbox-most-read .most-read-list a:hover { color: var(--pb-lime); }
.pressbox-most-read .most-read-list small { color: #8595a1; }

/* Competitions and category blocks */
.pressbox-competition-links { margin-top: 58px; }
.pressbox-competition-links > div:last-child { gap: 12px; }
.pressbox-competition-links > div:last-child > a { grid-template-columns: 50px 1fr auto; border: 1px solid #e0e5df; border-radius: 17px; background: #fff; box-shadow: 0 8px 24px rgba(7,16,24,.035); }
.pressbox-competition-links > div:last-child > a:hover { border-color: #b7d3c5; background: #f9fcfa; transform: translateY(-2px); box-shadow: 0 15px 34px rgba(7,16,24,.08); }
.pressbox-competition-links .competition-logo-mini { width: 46px; height: 46px; border-radius: 13px; background: #f0f4ef; }
.pressbox-category-section { margin-top: 64px; }
.pressbox-category-grid { gap: 20px; }
.pressbox-category-feature { overflow: hidden; border: 1px solid #e1e6e0; border-radius: 22px; background: #fff; box-shadow: var(--pb-shadow); }
.pressbox-category-feature > a { display: block; padding-bottom: 22px; }
.pressbox-category-feature .category-feature-image { position: relative; }
.category-feature-badge { position: absolute; left: 14px; top: 14px; border-radius: 999px; background: var(--pb-ink); padding: 6px 10px; color: #fff !important; font-size: .55rem !important; letter-spacing: .08em; }
.pressbox-category-feature > a > span:not(.category-feature-badge), .pressbox-category-feature h3, .pressbox-category-feature p, .pressbox-category-feature b { margin-inline: 20px; }
.pressbox-category-feature h3 { font-family: "Manrope", sans-serif; font-size: 1.55rem; line-height: 1.16; }
.pressbox-category-feature b { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; color: var(--pb-green-dark); font-size: .63rem; text-transform: uppercase; letter-spacing: .06em; }
.pressbox-category-list article { border-bottom-color: #dfe5df; }
.pressbox-category-list article a { border-radius: 16px; }
.pressbox-category-list article a:hover { background: #fff; box-shadow: 0 8px 24px rgba(7,16,24,.04); }

/* Category and entity pages */
.pressbox-page { padding-bottom: 70px; }
.pressbox-category-header, .category-header, .competition-hero, .team-hero, .scores-header, .entity-header {
    border-radius: 24px;
    background:
        linear-gradient(90deg, rgba(213,255,69,.035) 1px, transparent 1px) 0 0 / 34px 34px,
        linear-gradient(rgba(213,255,69,.035) 1px, transparent 1px) 0 0 / 34px 34px,
        linear-gradient(135deg, var(--pb-navy), #123247);
    box-shadow: 0 22px 65px rgba(7,16,24,.14);
}
.pressbox-category-header { padding: clamp(34px, 5vw, 64px); }
.pressbox-category-kicker { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.pressbox-category-kicker > span:last-child { color: #91a1ac; font-size: .62rem; font-weight: 800; text-transform: uppercase; }
.pressbox-category-kicker .eyebrow { color: var(--pb-lime); }
.pressbox-category-header h1 { max-width: 930px; margin-top: 9px; font-size: clamp(3rem, 6vw, 5.5rem); line-height: .88; }
.pressbox-category-header p { max-width: 780px; font-size: 1rem; }
.pressbox-category-actions { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.pressbox-category-actions a { display: inline-flex; align-items: center; gap: 8px; border: 1px solid rgba(255,255,255,.14); border-radius: 12px; background: rgba(255,255,255,.075); padding: 11px 14px; color: #fff; font-size: .68rem; font-weight: 850; }
.pressbox-category-actions a:hover { border-color: var(--pb-lime); color: var(--pb-lime); }
.pressbox-category-layout { grid-template-columns: minmax(0,1fr) 342px; gap: 32px; }
.pressbox-category-news > .grid { gap: 17px; }
.pressbox-category-sidebar { position: sticky; top: 20px; align-self: start; }
.football-table-card, .fixture-card { border: 1px solid #e0e5df; border-radius: 20px; background: #fff; box-shadow: 0 10px 30px rgba(7,16,24,.045); }
.football-table-card .sidebar-title, .fixture-card .sidebar-title { background: #f7f9f6; }
.football-table-card .sidebar-more { color: var(--pb-green-dark); }
.mini-standings tr.highlight td { background: rgba(213,255,69,.18); }
.mini-fixture:hover { background: #f5faf7; }

/* Article */
.pressbox-article-header { background:
    linear-gradient(90deg, rgba(213,255,69,.03) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(rgba(213,255,69,.03) 1px, transparent 1px) 0 0 / 38px 38px,
    linear-gradient(135deg, #071018, #112b3b); }
.pressbox-article-header::before { content: none; }
.pressbox-article-heading { padding-top: 58px !important; padding-bottom: 68px !important; }
.pressbox-article-header h1 { max-width: 1080px; margin-top: 13px; font-family: "Manrope", sans-serif; font-size: clamp(2.7rem, 5.8vw, 5.55rem); line-height: .99; letter-spacing: -.055em; text-transform: none; }
.pressbox-article-header .article-intro { max-width: 840px; margin-top: 19px; color: #c9d4db; font-size: 1.08rem; line-height: 1.7; }
.pressbox-article-header .article-meta { margin-top: 23px; }
.pressbox-article-image { margin-top: -28px; border: 8px solid var(--pb-paper); border-radius: 24px; box-shadow: 0 28px 75px rgba(7,16,24,.18); }
.pressbox-article-grid { grid-template-columns: minmax(0, 820px) 342px; gap: 42px; align-items: start; }
.pressbox-article-grid > div:first-child { border: 1px solid #e1e6e0; border-radius: 22px; background: #fff; padding: clamp(22px, 4vw, 42px); box-shadow: 0 14px 42px rgba(7,16,24,.055); }
.pressbox-share-bar { margin-top: 0; padding-bottom: 20px; border-bottom: 1px solid #e8ece7; }
.pressbox-share-bar a, .pressbox-share-bar button { border: 1px solid #e0e5df; box-shadow: none; }
.pressbox-share-bar a:hover, .pressbox-share-bar button:hover { border-color: #a9cdbb; background: #f5faf7; }
.pressbox-article-body { color: #26333d; font-size: clamp(1.08rem, 1.75vw, 1.24rem); line-height: 1.86; }
.pressbox-article-body > p:first-child::first-letter { float: left; margin: .1em .12em 0 0; color: var(--pb-green-dark); font-family: "Barlow Condensed", sans-serif; font-size: 4.5em; font-weight: 900; line-height: .72; }
.pressbox-article-body h2, .pressbox-article-body h3 { color: var(--pb-ink); text-transform: none; }
.pressbox-article-body blockquote { border-radius: 0 18px 18px 0; border-left-color: var(--pb-lime); }
.pressbox-comments { margin-top: 48px; }
.pressbox-comments .comment-form, .pressbox-comments .comment { border: 1px solid #e3e8e2; box-shadow: none; }
.pressbox-article-sidebar { position: sticky; top: 20px; align-self: start; }
.pressbox-related { border-top: 1px solid #dde3dc; background: #eef2ed; }

/* Footer */
.pressbox-footer { position: relative; margin-top: 80px; background: #050c12; color: #a4b0ba; }
.pressbox-footer-accent { height: 4px; background: linear-gradient(90deg, var(--pb-green), var(--pb-lime), var(--pb-green)); }
.pressbox-footer-top { display: grid; grid-template-columns: 1.35fr .7fr .75fr 1.05fr; gap: 48px; padding-block: 54px; }
.pressbox-footer-brand { color: #fff; }
.pressbox-footer-brand strong { font-size: 2rem; text-transform: uppercase; }
.pressbox-footer-brand p { max-width: 440px; }
.pressbox-footer .footer-brand-column > p { max-width: 430px; margin: 18px 0 0; color: #82909b; font-size: .8rem; line-height: 1.7; }
.pressbox-footer-badges { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
.pressbox-footer-badges span { display: inline-flex; align-items: center; gap: 6px; border: 1px solid rgba(255,255,255,.09); border-radius: 999px; padding: 7px 10px; color: #b9c4cc; font-size: .58rem; font-weight: 800; text-transform: uppercase; }
.pressbox-footer-badges i { color: var(--pb-lime); }
.pressbox-footer .footer-heading { color: var(--pb-lime); }
.pressbox-footer .footer-links { display: grid; gap: 11px; }
.pressbox-footer .footer-links a { color: #b6c1c8; font-size: .75rem; font-weight: 700; }
.pressbox-footer .footer-links a:hover { color: #fff; transform: translateX(2px); }
.pressbox-footer-cta { border: 1px solid rgba(255,255,255,.1); border-radius: 20px; background: rgba(255,255,255,.045); padding: 22px; }
.pressbox-footer-cta > span { color: var(--pb-lime); font-size: .58rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.pressbox-footer-cta h2 { margin: 8px 0 10px; color: #fff; font-size: 1.85rem; line-height: .95; text-transform: uppercase; }
.pressbox-footer-cta p { margin: 0 0 18px; color: #83919b; font-size: .72rem; line-height: 1.6; }
.pressbox-footer-cta a { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-size: .65rem; font-weight: 900; text-transform: uppercase; }
.pressbox-footer-cta a:hover { color: var(--pb-lime); }
.pressbox-footer-bottom { border-top: 1px solid rgba(255,255,255,.08); }
.pressbox-footer-bottom > div { min-height: 56px; display: flex; align-items: center; justify-content: space-between; gap: 20px; color: #6f7d87; font-size: .62rem; font-weight: 700; text-transform: uppercase; }

/* Mobile */
@media (max-width: 1120px) {
    .pressbox-masthead-inner { grid-template-columns: 1fr auto; }
    .pressbox-edition { display: none; }
    .pressbox-hero-grid { grid-template-columns: minmax(0,1.45fr) minmax(310px,.8fr); }
    .pressbox-content-grid, .pressbox-category-layout, .pressbox-article-grid { grid-template-columns: minmax(0,1fr) 320px; gap: 24px; }
    .pressbox-footer-top { grid-template-columns: 1.25fr .75fr .8fr; }
    .pressbox-footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 899px) {
    body { padding-bottom: 72px; }
    .pressbox-quicklinks, .pressbox-score-button { display: none; }
    .pressbox-masthead-inner { min-height: 80px; }
    .pressbox-nav-inner { display: none; }
    .pressbox-nav { min-height: 0; }
    .pressbox-bottom-nav { display: grid; }
    .pressbox-frontpage-head { grid-template-columns: 1fr; gap: 16px; }
    .pressbox-frontpage-copy { max-width: 700px; }
    .pressbox-hero-grid { grid-template-columns: 1fr; }
    .pressbox-hero-side { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); }
    .pressbox-side-heading { grid-column: 1 / -1; }
    .pressbox-hero-small { min-height: 125px; border-right: 1px solid #ebeee9; }
    .pressbox-content-grid, .pressbox-category-layout, .pressbox-article-grid { grid-template-columns: 1fr; }
    .pressbox-home-sidebar { grid-template-columns: minmax(0,1fr) 310px; align-items: start; }
    .pressbox-category-sidebar, .pressbox-article-sidebar { position: static; }
    .pressbox-footer-top { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .pressbox-footer .footer-brand-column, .pressbox-footer-cta { grid-column: 1 / -1; }
}

@media (max-width: 699px) {
    .page-shell { width: min(100% - 24px, 1360px); }
    .home-page-shell { padding-top: 22px; }
    .pressbox-topline-inner { min-height: 30px; font-size: .55rem; }
    .pressbox-status { gap: 8px; }
    .pressbox-status .utility-divider, .pressbox-status > span:last-child { display: none; }
    .pressbox-masthead-inner { min-height: 72px; }
    .pressbox-brand { gap: 9px; }
    .pressbox-brand img { width: 43px; height: 43px; }
    .pressbox-brand strong { font-size: 1.65rem; }
    .pressbox-brand small { font-size: .47rem; }
    .pressbox-icon-button { width: 40px; height: 40px; border-radius: 12px; }
    .pressbox-search { position: fixed; top: 0; bottom: 0; display: grid; align-items: start; padding-top: 95px; }
    .pressbox-search.hidden { display: none; }
    .pressbox-search-form { grid-template-columns: auto 1fr; padding: 8px 13px; }
    .pressbox-search-form button { grid-column: 1 / -1; }
    .pressbox-frontpage-head { margin-bottom: 15px; padding-bottom: 16px; }
    .pressbox-frontpage-head h1 { font-size: clamp(2.8rem, 14vw, 4.35rem); }
    .pressbox-frontpage-copy { padding-left: 15px; }
    .pressbox-frontpage-copy p { font-size: .84rem; }
    .pressbox-topic-rail .topic-rail-label { display: none; }
    .pressbox-hero-lead { min-height: 500px; border-radius: 20px; }
    .pressbox-hero-lead .hero-content { padding: 23px 20px; }
    .pressbox-hero-lead .hero-content h2 { font-size: clamp(2.05rem, 10.5vw, 3.25rem); line-height: 1.01; }
    .pressbox-hero-lead .hero-content p { display: -webkit-box; overflow: hidden; -webkit-line-clamp: 2; -webkit-box-orient: vertical; font-size: .8rem; }
    .pressbox-hero-top { top: 14px; right: 14px; }
    .hero-read-more { display: none; }
    .pressbox-hero-side { display: flex; border-radius: 20px; }
    .pressbox-hero-small { grid-template-columns: 94px 1fr; min-height: 115px; border-right: 0; }
    .pressbox-score-head { grid-template-columns: auto 1fr; padding: 15px 15px 7px; }
    .pressbox-score-head .score-strip-head-actions { grid-column: 1 / -1; justify-content: flex-end; }
    .pressbox-score-head .score-strip-head-actions span { display: none; }
    .pressbox-score-head h2 { font-size: 1.3rem; }
    .pressbox-leaderboard { margin-bottom: 34px; }
    .pressbox-latest-grid { grid-template-columns: 1fr; }
    .pressbox-latest-grid .pressbox-news-card:first-child { grid-column: auto; display: block; }
    .pressbox-latest-grid .pressbox-news-card:first-child .news-card-image { min-height: 0; aspect-ratio: 16/9; }
    .pressbox-latest-grid .pressbox-news-card:first-child .news-card-body { display: block; padding: 17px 18px 18px; }
    .pressbox-latest-grid .pressbox-news-card:first-child h2 { font-size: 1.08rem; }
    .pressbox-news-card { display: grid; grid-template-columns: 124px 1fr; border-radius: 17px; }
    .pressbox-news-card .news-card-image { min-height: 142px; height: 100%; aspect-ratio: auto; border-radius: 17px 0 0 17px; }
    .pressbox-news-card .news-card-body { min-width: 0; padding: 13px; }
    .pressbox-news-card h2 { margin: 6px 0; font-size: .9rem; }
    .pressbox-news-card p, .pressbox-card-footer, .pressbox-news-card .news-card-read { display: none; }
    .pressbox-news-card .news-meta { display: block; }
    .pressbox-news-card .news-meta span { display: block; margin-top: 3px; }
    .pressbox-home-sidebar { grid-template-columns: 1fr; }
    .pressbox-sidebar-ad { order: -1; }
    .pressbox-section-heading { gap: 10px; }
    .pressbox-section-heading h2 { font-size: 2.1rem; }
    .pressbox-section-heading .section-line { display: none; }
    .pressbox-section-heading > a { margin-left: auto; }
    .pressbox-category-header { padding: 28px 21px; border-radius: 20px; }
    .pressbox-category-kicker > span:last-child { display: none; }
    .pressbox-category-header h1 { font-size: 3.25rem; }
    .pressbox-category-header p { font-size: .87rem; }
    .pressbox-category-actions { flex-direction: column; align-items: stretch; }
    .pressbox-category-actions a { justify-content: center; }
    .pressbox-article-heading { padding-top: 40px !important; padding-bottom: 46px !important; }
    .pressbox-article-header h1 { font-size: clamp(2.35rem, 11.5vw, 3.65rem); }
    .pressbox-article-header .article-intro { font-size: .94rem; }
    .pressbox-article-image { margin-top: -14px; border-width: 5px; border-radius: 17px; }
    .pressbox-article-grid { padding-top: 25px; }
    .pressbox-article-grid > div:first-child { border-radius: 18px; padding: 20px 17px; }
    .pressbox-article-body > p:first-child::first-letter { font-size: 3.7em; }
    .pressbox-footer { margin-top: 56px; }
    .pressbox-footer-top { grid-template-columns: 1fr; gap: 32px; padding-block: 42px; }
    .pressbox-footer .footer-brand-column, .pressbox-footer-cta { grid-column: auto; }
    .pressbox-footer-bottom > div { min-height: 70px; align-items: flex-start; flex-direction: column; justify-content: center; gap: 3px; }
}

@media (max-width: 420px) {
    .pressbox-news-card { grid-template-columns: 110px 1fr; }
    .pressbox-news-card .news-card-image { min-height: 130px; }
    .pressbox-hero-small { grid-template-columns: 82px 1fr; padding-inline: 11px; }
}

/* Leikurinn.is 3.0 editorial additions */
.pressbox-editors-pick{margin-top:30px;margin-bottom:30px;padding:24px;border-radius:24px;background:linear-gradient(135deg,#07111b,#102536);color:#fff}.pressbox-editors-pick .section-heading h2,.pressbox-editors-pick .section-heading span{color:#fff}.pressbox-editors-pick .post-card{background:#fff;color:#07111b}.pressbox-editors-pick .post-card:hover{transform:translateY(-4px)}
