:root {
  --primary: #001D3D;
  --secondary: #0E204D;
  --tertiary: #003466;
  --accent: #FFC300;
  --text-dark: #212121;
  --text-white: #FFFFFF;
  --bg-light: #F7F7F7;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Poppins', sans-serif; color: var(--text-dark); }
a { text-decoration: none; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 16px; }

/* NAVBAR */
.main-nav { background: var(--primary); padding: 0; position: sticky; top: 0; z-index: 1000; }
.main-nav .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.nav-logo-icon { height: 48px; width: auto; object-fit: contain; }
.nav-logo-text { color: white; font-weight: 700; font-size: 16px; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; margin: 0; padding: 0; }
.nav-links li a { color: white; text-decoration: none; font-weight: 500; font-size: 14px; padding: 8px 16px; transition: color 0.2s; }
.nav-links li a:hover { color: var(--accent); }
.nav-hamburger { display: none; background: none; border: none; color: white; cursor: pointer; padding: 8px; }
.mobile-nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; }
.mobile-nav-overlay.open { display: block; }
.mobile-nav { position: fixed; top: 68px; right: -280px; width: 280px; height: calc(100vh - 68px); background: var(--primary); z-index: 999; transition: right 0.3s ease; padding: 24px; }
.mobile-nav.open { right: 0; }
.mobile-nav a { display: block; color: white; font-weight: 500; font-size: 16px; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.1); text-decoration: none; }
.mobile-nav a:hover { color: var(--accent); }

/* BREADCRUMBS */
.breadcrumbs { padding: 14px 0; background: var(--bg-light); border-bottom: 1px solid #e9e9e9; }
.breadcrumbs ol { list-style: none; display: flex; align-items: center; gap: 8px; margin: 0; padding: 0; font-size: 13px; }
.breadcrumbs li { display: flex; align-items: center; gap: 8px; }
.breadcrumbs a { color: var(--tertiary); font-weight: 500; }
.breadcrumbs a:hover { color: var(--accent); }
.breadcrumbs .sep { color: #ccc; }
.breadcrumbs .current { color: #888; }

/* PAGE HEADER */
.page-header { background: var(--primary); padding: 48px 0 40px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 80px); }
.page-header .container { position: relative; z-index: 1; }
.page-header h1 { color: white; font-weight: 900; font-size: 36px; margin-bottom: 8px; }
.page-header .subtitle { color: rgba(255,255,255,0.5); font-style: italic; font-size: 15px; }

/* HERO (homepage) */
.hero-section { background: var(--primary); padding: 80px 0 72px; text-align: center; position: relative; overflow: hidden; }
.hero-section::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 80px); z-index: 1; }
.hero-section::after { content: ''; position: absolute; inset: 0; background: url('/images/hero-allsvenskan.webp') center/cover no-repeat; opacity: 0.08; z-index: 0; }
.hero-section .container { position: relative; z-index: 2; }
.hero-section h1 { color: white; font-weight: 900; font-size: 42px; margin-bottom: 16px; line-height: 1.1; }
.hero-description { color: rgba(255,255,255,0.75); font-size: 17px; max-width: 680px; margin: 0 auto 32px; line-height: 1.7; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-accent { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: var(--accent); color: var(--primary); font-weight: 700; font-size: 15px; font-family: 'Poppins', sans-serif; transition: background 0.2s; border: none; cursor: pointer; }
.btn-accent:hover { background: #e6b000; text-decoration: none; color: var(--primary); }
.btn-outline-white { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: transparent; color: white; font-weight: 600; font-size: 15px; font-family: 'Poppins', sans-serif; border: 2px solid rgba(255,255,255,0.3); transition: all 0.2s; cursor: pointer; }
.btn-outline-white:hover { border-color: var(--accent); color: var(--accent); text-decoration: none; }

/* SECTIONS */
.section-padding { padding: 48px 0; }
.section-bg { background: var(--bg-light); }
.section-title { font-weight: 900; font-size: 28px; color: var(--primary); margin-bottom: 8px; }
.section-desc { color: #666; font-size: 15px; margin-bottom: 24px; line-height: 1.6; }
.section-cta { text-align: right; margin-top: 24px; }
.section-cta-center { text-align: center; margin-top: 24px; }

/* TEAM SUMMARY */
.team-summary { background: var(--tertiary); color: white; padding: 28px 0; }
.summary-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: center; }
.summary-text { font-size: 15px; line-height: 1.7; }
.summary-text a { color: var(--accent); }
.summary-text a:hover { text-decoration: underline; }
.summary-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.stat-box { background: rgba(255,255,255,0.08); padding: 16px; text-align: center; border-radius: 6px; }
.stat-box .stat-num { font-size: 28px; font-weight: 900; color: var(--accent); line-height: 1; }
.stat-box .stat-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* MATCH CARDS */
.match-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.match-card { background: white; border: 1px solid #e0e0e0; padding: 20px; transition: transform 0.15s, box-shadow 0.15s; }
.match-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.match-teams { margin-bottom: 12px; display: flex; flex-direction: column; align-items: flex-start; gap: 4px; }
.match-vs { font-size: 12px; font-weight: 600; color: #999; text-transform: uppercase; letter-spacing: 0.5px; padding-left: 37px; }
.match-team { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 15px; color: var(--primary); margin-bottom: 6px; }
.match-team img { width: 25px; height: 25px; object-fit: contain; }
.match-datetime { font-size: 14px; color: #555; font-weight: 500; }
.match-venue { font-size: 13px; color: #888; margin-top: 8px; }
.match-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.match-score { font-weight: 800; font-size: 18px; color: var(--primary); }
.match-meta { display: flex; justify-content: space-between; font-size: 13px; color: #888; margin-top: 12px; padding-top: 12px; border-top: 1px solid #f0f0f0; }

/* LINKS GRID */
.links-section { padding: 48px 0; }
.links-section.alt-bg { background: var(--bg-light); }
.links-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.link-card { background: white; border: 1px solid #e0e0e0; padding: 16px 20px; display: flex; align-items: center; gap: 12px; transition: transform 0.15s, box-shadow 0.15s; text-decoration: none; }
.link-card:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); text-decoration: none; }
.link-badge-img { width: 32px; height: 32px; object-fit: contain; flex-shrink: 0; }
.link-card .link-info h3 { font-size: 15px; font-weight: 600; color: var(--primary); margin: 0; }

/* CROSS LINK BUTTON */
.cross-link-btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; background: var(--primary); color: white; font-weight: 600; font-size: 14px; transition: background 0.2s; text-decoration: none; font-family: 'Poppins', sans-serif; border: none; cursor: pointer; }
.cross-link-btn:hover { background: var(--tertiary); color: white; text-decoration: none; }
.cross-link-btn svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* CROSS LINKS SECTION */
.cross-links { padding: 32px 0; background: var(--bg-light); }
.cross-links-inner { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* TABLE SECTION */
.table-section { padding: 40px 0; }
.table-section h2 { font-weight: 900; font-size: 28px; color: var(--primary); margin-bottom: 20px; }

/* STANDINGS TABLE */
.standings-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: 10px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.08); font-size: 15px; }
.standings-table thead th { font-size: 12px; font-weight: 700; padding: 14px 12px; text-transform: uppercase; letter-spacing: 0.3px; background: var(--accent); color: var(--primary); border: none; white-space: nowrap; }
.standings-table thead th:first-child { text-align: center; width: 45px; }
.standings-table thead th.col-team { text-align: left; min-width: 180px; }
.standings-table thead th:not(:first-child):not(.col-team) { text-align: center; width: 50px; }
.standings-table thead th.col-pts { font-weight: 900; width: 55px; }
.standings-table tbody td { padding: 14px 12px; vertical-align: middle; border: none; border-bottom: 1px solid #f0f0f0; }
.standings-table tbody td:first-child { text-align: center; font-weight: 700; }
.standings-table tbody td.col-team { text-align: left; }
.standings-table tbody td:not(:first-child):not(.col-team) { text-align: center; }
.standings-table tbody td.col-pts { font-weight: 800; font-size: 16px; }
.standings-table tbody tr:nth-child(even) { background: #f8f9fa; }
.standings-table tbody tr:hover { background: rgba(255,195,0,0.06); }
.standings-table tbody tr.highlighted { background: rgba(255,195,0,0.12); font-weight: 600; }
.standings-table tbody tr.highlighted td { font-weight: 700; }
.standings-table a { color: var(--primary); text-decoration: none; font-weight: 600; }
.standings-table a:hover { text-decoration: underline; color: #0056b3; }

.team-link { color: var(--primary); font-weight: 600; text-decoration: none; display: flex; align-items: center; gap: 8px; }
.team-link:hover { color: var(--accent); }
.team-badge { width: 22px; height: 22px; border-radius: 3px; object-fit: contain; flex-shrink: 0; }

.pos-champions { border-left: 3px solid #28a745; }
.pos-europe { border-left: 3px solid #007bff; }
.pos-playoff { border-left: 3px solid #ffc107; }
.pos-relegation { border-left: 3px solid #dc3545; }

.table-legend { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 20px; font-size: 13px; color: #666; }
.table-legend-item { display: flex; align-items: center; gap: 6px; }
.legend-dot { width: 12px; height: 4px; border-radius: 2px; }
.table-abbr { margin-top: 16px; padding: 16px 20px; background: var(--bg-light); border-radius: 8px; font-size: 13px; color: #666; line-height: 1.8; }
.table-abbr strong { color: var(--primary); }
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* TABS */
.tabs { display: flex; gap: 0; margin-bottom: 24px; border-bottom: 2px solid #e0e0e0; }
.tab-btn { padding: 12px 24px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; color: #888; background: none; border: none; cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: color 0.2s; }
.tab-btn:hover { color: var(--primary); }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--accent); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* LAST UPDATED */
.last-updated { font-size: 12px; color: #999; text-align: right; margin: 4px 0 12px 0; }

/* ABOUT SECTION */
.about-section { padding: 48px 0; }
.about-section h2 { font-weight: 900; font-size: 28px; color: var(--primary); margin-bottom: 32px; }
.about-section h3 { font-weight: 700; font-size: 22px; color: var(--primary); margin: 24px 0 16px; }
.about-row { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin-bottom: 48px; }
.about-row:last-child { margin-bottom: 0; }
.about-text { font-size: 16px; line-height: 1.7; color: #444; }
.about-text a { color: var(--accent); font-weight: 500; }
.about-text a:hover { text-decoration: underline; }
.about-image img { width: 100%; height: auto; display: block; }
.team-list-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 0 24px; }
.team-list-cols ul { list-style: disc; padding-left: 20px; font-size: 15px; line-height: 2; color: #444; }

/* NEWS */
.news-section { padding: 48px 0; background: var(--bg-light); }
.news-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; flex-wrap: wrap; gap: 12px; }
.news-header h2 { font-weight: 900; font-size: 28px; color: var(--primary); margin: 0; }
.news-header-link { font-size: 14px; font-weight: 600; color: var(--primary); display: inline-flex; align-items: center; gap: 4px; }
.news-header-link:hover { color: var(--accent); }
.news-section-desc { font-size: 15px; color: #555; line-height: 1.6; margin-bottom: 24px; }
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.news-card { background: white; border: 1px solid #e0e0e0; overflow: hidden; text-decoration: none; display: flex; flex-direction: column; transition: transform 0.2s, box-shadow 0.2s; }
.news-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.12); text-decoration: none; }
.news-card-img { height: 180px; overflow: hidden; background: #e9e9e9; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card-img img { transform: scale(1.04); }
.news-card-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.news-card-cat { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; color: #7A5900; margin-bottom: 6px; }
.news-card-body h3 { font-size: 17px; font-weight: 600; color: var(--primary); margin-bottom: 8px; line-height: 1.3; }
.news-card-body p { font-size: 13px; color: #666; margin-bottom: 12px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.news-card-meta { font-size: 12px; color: #999; margin-top: auto; }

/* CTA BANNER */
.cta-banner { padding: 48px 0; }
.cta-inner { background: var(--primary); padding: 56px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-inner::before { content: ''; position: absolute; inset: 0; background-image: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 80px); }
.cta-inner h2 { color: white; font-weight: 900; font-size: 28px; margin-bottom: 12px; position: relative; z-index: 1; }
.cta-inner p { color: rgba(255,255,255,0.7); font-size: 16px; margin-bottom: 24px; max-width: 600px; margin-left: auto; margin-right: auto; position: relative; z-index: 1; line-height: 1.6; }
.cta-inner .btn-accent { position: relative; z-index: 1; }

/* FAQ */
.faq-section { padding: 48px 0; background: var(--bg-light); }
.faq-section h2 { font-weight: 900; font-size: 28px; color: var(--primary); margin-bottom: 20px; }
.faq-item { border: 1px solid #e0e0e0; background: white; margin-bottom: 8px; }
.faq-q { width: 100%; text-align: left; padding: 16px 20px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px; color: var(--primary); border: none; background: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; }
.faq-q:hover { color: var(--accent); }
.faq-a { display: none; padding: 0 20px 16px; font-size: 14px; color: #555; line-height: 1.7; }
.faq-item.open .faq-a { display: block; }
.faq-item.open .faq-q .icon-chevron { transform: rotate(180deg); }
.icon-chevron { transition: transform 0.2s; display: flex; }

/* FACTS GRID */
.facts-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 32px; }
.fact-item { display: flex; justify-content: space-between; align-items: baseline; border-bottom: 1px solid #e0e0e0; padding: 12px 0; gap: 12px; }
.fact-label { font-size: 13px; color: #666; flex-shrink: 0; }
.fact-value { font-size: 14px; font-weight: 700; color: var(--text-dark); text-align: right; }

/* CHANNEL GRID */
.channel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.channel-card { background: #ffffff; border: 1px solid #e0e0e0; padding: 24px; text-align: center; }
.channel-card h3 { font-size: 18px; font-weight: 700; color: var(--primary); margin: 0 0 10px; }
.channel-card p { font-size: 14px; color: #555; line-height: 1.6; margin: 0; }

/* SCORERS */
.scorers-link-row { margin-top: 16px; font-size: 14px; }
.link-arrow { color: var(--primary); font-weight: 700; text-decoration: none; }
.link-arrow:hover { text-decoration: underline; }

/* FOOTER */
.site-footer { background: var(--primary); color: rgba(255,255,255,0.7); padding: 40px 0 20px; }
.footer-top { padding-bottom: 24px; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.footer-logo-icon { height: 42px; width: auto; object-fit: contain; }
.footer-logo-text { color: white; font-weight: 700; font-size: 16px; }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; margin-bottom: 32px; }
.footer-col h4 { color: var(--accent); font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 6px; }
.footer-col a { color: rgba(255,255,255,0.6); font-size: 13px; text-decoration: none; }
.footer-col a:hover { color: var(--accent); }
.footer-disclaimer { text-align: center; font-size: 12px; color: rgba(255,255,255,0.5); max-width: 700px; margin: 0 auto 24px; line-height: 1.6; }
.footer-bottom { padding-top: 20px; border-top: 1px solid rgba(255,255,255,0.1); display: flex; justify-content: space-between; font-size: 12px; }
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; margin-left: 16px; }
.footer-bottom a:hover { color: var(--accent); }

/* ARTICLE STYLES (nyheter) */
.article-hero { position: relative; background: var(--primary); }
.article-hero-img { width: 100%; height: 320px; object-fit: cover; display: block; }
.article-hero-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(transparent, rgba(0,29,61,0.9)); padding: 40px 0 32px; }
.article-hero-overlay .container { position: relative; }
.article-hero-overlay h1 { color: white; font-weight: 900; font-size: 32px; margin-bottom: 8px; line-height: 1.2; }
.article-hero-meta { color: rgba(255,255,255,0.6); font-size: 13px; }
.article-content { padding: 48px 0; max-width: 780px; margin: 0 auto; }
.article-content h2 { font-weight: 800; font-size: 24px; color: var(--primary); margin: 36px 0 16px; }
.article-content h3 { font-weight: 700; font-size: 20px; color: var(--primary); margin: 28px 0 12px; }
.article-content p { font-size: 16px; line-height: 1.8; color: #444; margin-bottom: 20px; }
.article-content ul, .article-content ol { margin: 0 0 20px 20px; font-size: 16px; line-height: 1.8; color: #444; }
.article-content a { color: var(--tertiary); font-weight: 500; text-decoration: underline; }
.article-content a:hover { color: var(--accent); }
.article-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; }
.article-content table th { background: var(--accent); color: var(--primary); font-weight: 700; padding: 10px 12px; text-align: left; }
.article-content table td { padding: 10px 12px; border-bottom: 1px solid #e0e0e0; }
.article-content table tr:nth-child(even) { background: #f8f9fa; }
.article-back { margin-top: 40px; padding-top: 24px; border-top: 1px solid #e0e0e0; }
.article-back a { color: var(--primary); font-weight: 600; }
.article-back a:hover { color: var(--accent); }

/* INFO PAGES */
.info-section { padding: 48px 0; }
.info-content { max-width: 780px; margin: 0 auto; }
.info-content h2 { font-weight: 800; font-size: 24px; color: var(--primary); margin: 32px 0 16px; }
.info-content h3 { font-weight: 700; font-size: 20px; color: var(--primary); margin: 24px 0 12px; }
.info-content p { font-size: 16px; line-height: 1.8; color: #444; margin-bottom: 16px; }
.info-content ul, .info-content ol { margin: 0 0 16px 20px; font-size: 16px; line-height: 1.8; color: #444; }
.info-content a { color: var(--tertiary); font-weight: 500; }
.info-content a:hover { color: var(--accent); text-decoration: underline; }
.info-content strong { color: var(--text-dark); }

/* CONTACT CARDS */
.contact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0; }
.contact-card { background: white; border: 1px solid #e0e0e0; padding: 24px; text-align: center; }
.contact-card h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.contact-card p { font-size: 14px; color: #555; margin-bottom: 12px; line-height: 1.5; }
.contact-card a { color: var(--tertiary); font-weight: 600; font-size: 14px; }
.contact-card a:hover { color: var(--accent); }

/* AD FORMATS */
.ad-formats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 32px 0; }
.ad-card { background: white; border: 1px solid #e0e0e0; padding: 24px; }
.ad-card h3 { font-size: 16px; font-weight: 700; color: var(--primary); margin-bottom: 8px; }
.ad-card p { font-size: 14px; color: #555; line-height: 1.6; }

/* MATCHER HUB SPECIFIC */
.round-section { margin-bottom: 32px; }
.round-section h3 { font-weight: 700; font-size: 18px; color: var(--primary); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--accent); }
.match-list { display: flex; flex-direction: column; gap: 8px; }
.match-list-item { display: grid; grid-template-columns: 1fr auto 1fr auto; gap: 12px; align-items: center; padding: 12px 16px; background: white; border: 1px solid #e0e0e0; font-size: 14px; }
.match-list-home { text-align: right; font-weight: 600; color: var(--primary); }
.match-list-score { font-weight: 800; font-size: 16px; color: var(--primary); min-width: 50px; text-align: center; }
.match-list-away { text-align: left; font-weight: 600; color: var(--primary); }
.match-list-info { font-size: 12px; color: #888; text-align: right; min-width: 120px; }
.match-list-item:hover { background: #f8f9fa; }
.show-more-btn { display: block; margin: 24px auto 0; padding: 12px 32px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; color: var(--primary); background: white; border: 2px solid #e0e0e0; cursor: pointer; transition: all 0.2s; }
.show-more-btn:hover { border-color: var(--accent); color: var(--accent); }

/* TEAM MATCHER SPECIFIC */
.match-card-full { background: white; border: 1px solid #e0e0e0; padding: 20px; margin-bottom: 12px; }
.match-card-full .match-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.match-card-full .match-round { font-size: 12px; font-weight: 600; color: var(--accent); background: var(--primary); padding: 4px 12px; border-radius: 3px; }
.match-card-full .match-date { font-size: 13px; color: #888; }

/* SKIP TO CONTENT */
.skip-to-content { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; z-index: 9999; padding: 12px 24px; background: var(--accent); color: var(--primary); font-weight: 700; }
.skip-to-content:focus { position: fixed; top: 0; left: 0; width: auto; height: auto; }

/* RESPONSIVE */
@media (max-width: 991px) {
  .nav-hamburger { display: block; }
  .nav-links { display: none; }
  .match-grid { grid-template-columns: repeat(2, 1fr); }
  .links-grid { grid-template-columns: repeat(2, 1fr); }
  .about-row { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-section h1 { font-size: 32px; }
  .news-grid { grid-template-columns: repeat(2, 1fr); }
  .summary-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: repeat(2, 1fr); }
  .ad-formats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
  .hero-section { padding: 48px 0 40px; }
  .hero-section h1 { font-size: 26px; }
  .hero-description { font-size: 15px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .page-header h1 { font-size: 26px; }
  .match-grid { grid-template-columns: 1fr; }
  .links-grid { grid-template-columns: 1fr; }
  .news-grid { grid-template-columns: 1fr; }
  .team-list-cols { grid-template-columns: 1fr; }
  .cta-inner { padding: 40px 24px; }
  .cta-inner h2 { font-size: 22px; }
  .match-meta { flex-direction: column; gap: 4px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .footer-bottom a { margin-left: 0; margin-right: 16px; }
  .channel-grid { grid-template-columns: 1fr; }
  .facts-grid { grid-template-columns: 1fr; }
  .standings-table { font-size: 13px; }
  .standings-table thead th, .standings-table tbody td { padding: 10px 8px; }
  .summary-stats { grid-template-columns: repeat(2, 1fr); }
  .cross-links-inner { flex-direction: column; align-items: stretch; }
  .contact-grid { grid-template-columns: 1fr; }
  .ad-formats { grid-template-columns: 1fr; }
  .match-list-item { grid-template-columns: 1fr; gap: 4px; text-align: center; }
  .match-list-home, .match-list-away { text-align: center; }
  .match-list-info { text-align: center; }
  .article-hero-overlay h1 { font-size: 24px; }
}

/* ============================================================
   ARTICLE LAYOUT — article pages with sidebar
   ============================================================ */

.article-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; padding: 40px 0; }
.article-category { display: inline-block; background: var(--accent); color: var(--primary); font-weight: 700; font-size: 12px; padding: 4px 12px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.article-title { font-weight: 900; font-size: 32px; color: var(--primary); line-height: 1.3; margin-bottom: 16px; }
.article-meta { display: flex; align-items: center; gap: 16px; font-size: 13px; color: #888; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #e9e9e9; }
.article-meta .author { font-weight: 600; color: var(--primary); }
img.article-hero { width: 100%; aspect-ratio: 16/9; object-fit: cover; margin-bottom: 32px; display: block; }

.article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 32px; padding-top: 24px; border-top: 1px solid #e9e9e9; }
.article-tags a { display: inline-block; background: var(--bg-light); color: var(--primary); font-size: 13px; font-weight: 500; padding: 6px 14px; transition: background 0.2s; }
.article-tags a:hover { background: var(--accent); }

.article-share { display: flex; align-items: center; gap: 12px; margin-top: 24px; padding-top: 24px; border-top: 1px solid #e9e9e9; }
.article-share span { font-size: 14px; font-weight: 600; color: var(--primary); }
.share-btn { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--bg-light); color: var(--primary); transition: background 0.2s; }
.share-btn:hover { background: var(--accent); }

/* ============================================================
   SIDEBAR — article sidebar widgets
   ============================================================ */

.sidebar-widget { background: white; border: 1px solid #e9e9e9; margin-bottom: 24px; }
.sidebar-widget-header { background: var(--primary); padding: 14px 20px; }
.sidebar-widget-header h3 { color: white; font-weight: 700; font-size: 22px; margin: 0; }

.sidebar-article { display: flex; gap: 12px; padding: 14px 16px; border-bottom: 1px solid #f0f0f0; transition: background 0.2s; text-decoration: none; }
.sidebar-article:hover { background: var(--bg-light); }
.sidebar-article:last-child { border-bottom: none; }
.sidebar-article-img { width: 80px; height: 68px; object-fit: cover; flex-shrink: 0; }
.sidebar-article-body { flex: 1; min-width: 0; }
.sidebar-article-cat { font-size: 11px; font-weight: 600; color: var(--accent); text-transform: uppercase; letter-spacing: 0.3px; }
.sidebar-article-title { font-size: 13px; font-weight: 600; color: var(--primary); line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sidebar-article-title:hover { color: var(--accent); }
.sidebar-article-date { font-size: 11px; color: #999; margin-top: 4px; }

.newsletter-widget { padding: 24px 20px; }
.newsletter-widget p { font-size: 14px; color: #555; line-height: 1.6; margin-bottom: 16px; }
.newsletter-form { display: flex; flex-direction: column; gap: 10px; }
.newsletter-form input[type="email"] { width: 100%; padding: 12px 14px; font-family: 'Poppins', sans-serif; font-size: 14px; border: 1px solid #ddd; background: white; }
.newsletter-form input[type="email"]:focus { outline: none; border-color: var(--accent); }
.newsletter-form button { width: 100%; padding: 12px; background: var(--accent); color: var(--primary); font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 14px; border: none; cursor: pointer; transition: background 0.2s; }
.newsletter-form button:hover { background: #e6b000; }

.sidebar-table { width: 100%; font-size: 12px; border-collapse: collapse; }
.sidebar-table thead th { background: var(--accent); color: var(--primary); font-weight: 700; padding: 8px 6px; text-align: center; font-size: 11px; }
.sidebar-table thead th:nth-child(2) { text-align: left; }
.sidebar-table tbody td { padding: 7px 6px; border-bottom: 1px solid #f0f0f0; text-align: center; }
.sidebar-table tbody td:nth-child(2) { text-align: left; }
.sidebar-table tbody td:nth-child(2) a { color: var(--primary); font-weight: 500; font-size: 12px; }
.sidebar-table tbody td:nth-child(2) a:hover { color: var(--accent); }
.sidebar-table-link { display: block; text-align: center; padding: 10px; font-size: 13px; font-weight: 600; color: var(--tertiary); border-top: 1px solid #e9e9e9; }
.sidebar-table-link:hover { color: var(--accent); background: var(--bg-light); }

/* ============================================================
   INTRO SECTION — blue band on hub pages
   ============================================================ */

.intro-section { background: var(--tertiary); color: white; padding: 24px 0; font-size: 15px; line-height: 1.7; }
.intro-section a { color: var(--accent); }
.intro-section a:hover { text-decoration: underline; }

/* ============================================================
   TABLE TABS — hub pages tab style
   ============================================================ */

.table-tabs { display: flex; gap: 0; margin-bottom: 24px; border-bottom: 2px solid #e9e9e9; }
.table-tabs button { padding: 10px 24px; font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 14px; border: none; background: none; color: #888; cursor: pointer; position: relative; transition: color 0.2s; }
.table-tabs button:hover { color: var(--primary); }
.table-tabs button.active { color: var(--primary); }
.table-tabs button.active::after { content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 3px; background: var(--accent); }

/* ============================================================
   MATCH TABLE — full match schedule table
   ============================================================ */

.match-table { width: 100%; border-collapse: separate; border-spacing: 0; border-radius: 10px; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.08); font-size: 15px; }
.match-table thead th { font-size: 12px; font-weight: 700; padding: 14px 12px; text-transform: uppercase; letter-spacing: 0.3px; background: var(--accent); color: var(--primary); border: none; white-space: nowrap; }
.match-table thead th.col-round { text-align: center; width: 80px; }
.match-table thead th.col-date { text-align: left; width: 120px; }
.match-table thead th.col-home { text-align: right; min-width: 160px; }
.match-table thead th.col-vs { text-align: center; width: 40px; }
.match-table thead th.col-away { text-align: left; min-width: 160px; }
.match-table thead th.col-result { text-align: center; width: 80px; }
.match-table tbody td { padding: 14px 12px; vertical-align: middle; border: none; border-bottom: 1px solid #f0f0f0; }
.match-table tbody td.col-round { text-align: center; font-weight: 700; font-size: 13px; color: #666; }
.match-table tbody td.col-date { text-align: left; color: #666; font-size: 13px; }
.match-table tbody td.col-home { text-align: right; }
.match-table tbody td.col-vs { text-align: center; color: #888; font-size: 13px; font-weight: 500; }
.match-table tbody td.col-away { text-align: left; }
.match-table tbody td.col-result { text-align: center; font-weight: 700; font-size: 15px; color: #888; }
.match-table tbody tr:nth-child(even) { background: #f8f9fa; }
.match-table tbody tr:hover { background: rgba(255,195,0,0.06); }
.match-table tbody tr.highlighted { background: rgba(255,195,0,0.12); }

.team-link-home { flex-direction: row-reverse; }
.team-self { font-weight: 800; }

/* ============================================================
   ROUND HEADER — matcher hub omgang sections
   ============================================================ */

.round-header { font-weight: 900; font-size: 18px; color: var(--primary); margin: 32px 0 16px; padding-bottom: 8px; border-bottom: 2px solid var(--accent); display: flex; align-items: center; gap: 10px; }
.round-header:first-of-type { margin-top: 0; }
.round-badge { background: var(--accent); color: var(--primary); font-size: 12px; font-weight: 800; padding: 3px 10px; border-radius: 4px; }

/* ============================================================
   LINK CARD VARIANTS — hub pages with h4/span
   ============================================================ */

.link-card .link-badge { width: 36px; height: 42px; border-radius: 6px; background: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; color: var(--primary); flex-shrink: 0; }
.link-card .link-info h4 { font-size: 14px; font-weight: 600; color: var(--primary); margin: 0 0 2px; }
.link-card .link-info span { font-size: 12px; color: #888; }

/* ============================================================
   NEWS LISTING — nyheter hub page
   ============================================================ */

.news-listing { padding: 48px 0; }
.news-listing .news-card-body h3 { font-size: 22px; }

/* ============================================================
   ARENA TABLE — arena guide article
   ============================================================ */

.arena-table-wrap { overflow-x: auto; margin: 20px 0 28px; -webkit-overflow-scrolling: touch; }
.arena-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 520px; }
.arena-table thead th { background: var(--accent); color: var(--primary); font-weight: 700; padding: 12px 10px; text-align: left; font-size: 13px; }
.arena-table tbody tr { border-bottom: 1px solid #ebebeb; }
.arena-table tbody tr:nth-child(even) { background: var(--bg-light); }
.arena-table tbody tr:hover { background: #fff3cc; }
.arena-table tbody td { padding: 10px 10px; vertical-align: middle; }
.arena-table tbody td:first-child { font-weight: 600; color: var(--primary); }
.arena-table .capacity { font-weight: 700; color: var(--tertiary); text-align: right; }
.arena-table .shared-badge { display: inline-block; background: #e8f4fd; color: #1565c0; font-size: 11px; font-weight: 600; padding: 2px 7px; margin-left: 6px; vertical-align: middle; }

.info-box { background: #e8f4fd; border-left: 4px solid var(--tertiary); padding: 16px 20px; margin: 24px 0; }
.info-box p { color: #1a3a5c; font-size: 15px; margin: 0; }

.comparison-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 20px 0 24px; }
.comparison-card { background: var(--bg-light); border: 1px solid #e0e0e0; padding: 20px; }
.comparison-card .card-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; color: #888; margin-bottom: 6px; }
.comparison-card .card-name { font-size: 18px; font-weight: 800; color: var(--primary); margin-bottom: 4px; }
.comparison-card .card-cap { font-size: 28px; font-weight: 900; color: var(--accent); line-height: 1.1; }
.comparison-card .card-detail { font-size: 13px; color: #666; margin-top: 6px; }

/* ============================================================
   ARTICLE FAQ VARIANT — uses different class names
   ============================================================ */

.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 16px 20px; font-family: 'Poppins', sans-serif; font-size: 15px; font-weight: 600; color: var(--primary); cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.faq-question:hover { background: var(--bg-light); }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; background: var(--accent); color: var(--primary); font-weight: 700; font-size: 16px; display: flex; align-items: center; justify-content: center; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { display: none; padding: 0 20px 16px; font-size: 15px; line-height: 1.7; color: #444; }
.faq-item.open .faq-answer { display: block; }

/* ============================================================
   RESPONSIVE — additions for new classes
   ============================================================ */

@media (max-width: 991px) {
  .article-layout { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr 1fr; }
  .table-tabs button { font-size: 13px; }
  .match-table { font-size: 13px; }
}
@media (max-width: 767px) {
  .article-title { font-size: 24px; }
  .match-table thead th, .match-table tbody td { padding: 10px 8px; }
  .table-tabs button { padding: 8px 16px; font-size: 13px; }
  .comparison-grid { grid-template-columns: 1fr; }
  .news-listing { padding: 32px 0; }
}
