:root {
  --navy: #0a1128;
  --navy-mid: #0e1a38;
  --navy-light: #14234a;
  --blue: #004170;
  --red: #da291c;
  --red-glow: #ff3d2e;
  --gold: #c4996c;
  --gold-light: #e8d5b7;
  --white: #fafafa;
  --gray-100: #f1f3f5;
  --gray-200: #e2e6ea;
  --gray-300: #c8cdd3;
  --gray-400: #8a94a6;
  --gray-500: #5f6b7a;
  --gray-600: #3d4654;
  --dark: #060a14;
  --font-display: "Bebas Neue", sans-serif;
  --font-body: Outfit, sans-serif;
  --font-serif: "Source Serif 4", serif;
  --font-accent: "Playfair Display", serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  background: var(--gray-100);
  color: var(--navy);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

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

.ticker {
  position: relative;
  z-index: 1001;
  overflow: hidden;
  background: var(--red);
  color: white;
  padding: 0.5rem 0;
}

.ticker-inner {
  display: flex;
  align-items: center;
}

.ticker-badge {
  flex-shrink: 0;
  margin-left: 1rem;
  border-radius: 2px;
  background: rgba(0, 0, 0, 0.25);
  padding: 0.25rem 0.8rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track {
  display: flex;
  margin-left: 1rem;
  animation: tickerScroll 44s linear infinite;
}

.ticker-item {
  flex-shrink: 0;
  padding: 0 2rem;
  font-size: 0.78rem;
  font-weight: 500;
  white-space: nowrap;
}

.ticker-item::before {
  content: "•";
  margin-right: 0.8rem;
  opacity: 0.45;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.header-top,
.nav-bar,
.livescore-inner,
.main-container,
.footer-inner {
  max-width: 1360px;
  margin: 0 auto;
}

.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 0.8rem 2rem;
}

.logo,
.header-right,
.nav-bar,
.livescore-inner,
.livescore-matches,
.ls-match,
.feed-header,
.feed-tabs,
.article-card,
.article-meta,
.sidebar-card-header,
.nm-teams,
.nm-team,
.trending-item,
.watch-step,
.newsletter-card form,
.footer-inner,
.footer-links {
  display: flex;
  align-items: center;
}

.logo {
  gap: 0.7rem;
}

.logo-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--red));
  color: white;
  font-family: var(--font-display);
  font-size: 0.85rem;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text .name {
  color: white;
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.12em;
}

.logo-text .tagline {
  margin-top: 2px;
  color: var(--gold);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.header-right {
  gap: 1.5rem;
}

.header-date {
  color: var(--gray-400);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0.4rem 1rem;
  font-size: 0.75rem;
  transition: 0.3s;
}

.header-search:hover {
  background: rgba(255, 255, 255, 0.1);
}

.refresh-button {
  border: 0;
  border-radius: 3px;
  background: var(--red);
  color: white;
  cursor: pointer;
  padding: 0.45rem 1.1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: 0.25s;
}

.refresh-button:hover,
.refresh-button.loading {
  background: var(--red-glow);
  box-shadow: 0 4px 15px rgba(218, 41, 28, 0.28);
}

.nav-bar {
  overflow-x: auto;
  scrollbar-width: none;
  padding: 0 2rem;
}

.nav-bar::-webkit-scrollbar {
  display: none;
}

.nav-link {
  position: relative;
  border-bottom: 2px solid transparent;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  padding: 0.75rem 1.1rem;
  text-transform: uppercase;
  transition: 0.25s;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: white;
}

.nav-link.active {
  border-bottom-color: var(--red);
}

.nav-link.highlight {
  color: var(--gold);
}

.livescore-bar {
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  background: var(--navy-mid);
}

.livescore-inner {
  gap: 1.5rem;
  padding: 0.7rem 2rem;
}

.livescore-label {
  flex-shrink: 0;
  color: var(--gray-400);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  white-space: nowrap;
}

.livescore-matches {
  flex: 1;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.livescore-matches::-webkit-scrollbar {
  display: none;
}

.ls-match {
  flex-shrink: 0;
  gap: 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.4rem 0.8rem;
}

.ls-team {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  font-weight: 500;
}

.ls-score {
  color: white;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0 0.3rem;
}

.ls-status {
  color: var(--gold);
  font-size: 0.58rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-container {
  padding: 1.5rem 2rem 4rem;
}

.hero-news {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.hero-card,
.hero-side-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  background: var(--navy);
  cursor: pointer;
}

.hero-card-img,
.hero-side-card .gradient-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}

.hero-card-img {
  position: relative;
  min-height: 430px;
}

.hero-card-img .gradient-bg,
.hero-side-card .gradient-bg {
  width: 100%;
  height: 100%;
}

.hero-card-img .watermark {
  position: absolute;
  right: -1rem;
  bottom: -2rem;
  color: rgba(255, 255, 255, 0.025);
  font-family: var(--font-display);
  font-size: 14rem;
  line-height: 1;
  pointer-events: none;
}

.hero-side-card .gradient-bg {
  min-height: 205px;
}

.hero-card:hover .gradient-bg,
.hero-side-card:hover .gradient-bg {
  transform: scale(1.03);
}

.hero-card-overlay,
.hero-side-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(to top, rgba(6, 10, 20, 0.96) 0%, rgba(6, 10, 20, 0.36) 48%, transparent 78%);
}

.hero-card-overlay {
  padding: 2rem;
}

.hero-side {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.hero-side-card {
  flex: 1;
}

.hero-side-overlay {
  padding: 1.4rem;
}

.tag {
  display: inline-block;
  width: fit-content;
  border-radius: 2px;
  padding: 0.25rem 0.6rem;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.tag-red {
  background: var(--red);
  color: white;
}

.tag-gold {
  background: var(--gold);
  color: var(--navy);
}

.tag-blue {
  background: var(--blue);
  color: white;
}

.tag-outline {
  border: 1px solid var(--gray-300);
  background: transparent;
  color: var(--gray-500);
}

.hero-card-title {
  max-width: 720px;
  margin: 0.7rem 0 0.5rem;
  color: white;
  font-family: var(--font-accent);
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
  font-weight: 700;
  line-height: 1.12;
}

.hero-side-title {
  margin-top: 0.55rem;
  color: white;
  font-family: var(--font-accent);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
}

.hero-card:hover .hero-card-title,
.hero-side-card:hover .hero-side-title {
  color: var(--gold-light);
}

.hero-card-excerpt {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.6;
}

.hero-card-meta,
.hero-side-meta {
  margin-top: 0.8rem;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
}

.hero-card-meta .author {
  color: var(--gold);
  font-weight: 600;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 2rem;
}

.feed-header {
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
}

.section-kicker {
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.feed-header h2 {
  margin-top: 0.2rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 2.1rem;
  letter-spacing: 0.04em;
}

.feed-tabs {
  gap: 0.4rem;
}

.feed-tab {
  border: 1px solid var(--gray-300);
  border-radius: 999px;
  background: transparent;
  color: var(--gray-500);
  cursor: pointer;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.feed-tab.active,
.feed-tab:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}

.articles-feed {
  display: grid;
}

.article-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.2rem;
  border-bottom: 1px solid var(--gray-200);
  padding: 1.2rem 0;
  transition: 0.25s;
}

.article-card:hover {
  margin: 0 -0.5rem;
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.015);
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.article-thumb {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 6px;
  background: var(--navy);
}

.article-thumb .thumb-bg {
  width: 100%;
  height: 100%;
  transition: transform 0.4s;
}

.article-card:hover .thumb-bg {
  transform: scale(1.05);
}

.article-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.article-title {
  margin: 0.55rem 0 0.4rem;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.35;
  transition: color 0.2s;
}

.article-card:hover .article-title {
  color: var(--blue);
}

.article-excerpt {
  display: -webkit-box;
  overflow: hidden;
  margin-top: 0.4rem;
  color: var(--gray-500);
  font-family: var(--font-serif);
  font-size: 0.82rem;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.article-meta {
  gap: 0.55rem;
  margin-top: 0.65rem;
  color: var(--gray-400);
  font-size: 0.72rem;
}

.article-meta .author {
  color: var(--navy);
  font-weight: 600;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.sidebar-card {
  border: 1px solid var(--gray-200);
  border-radius: 10px;
  background: white;
  overflow: hidden;
  padding: 0;
  box-shadow: 0 8px 24px rgba(10, 17, 40, 0.04);
}

.sidebar-card-header {
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 1rem;
  padding: 0.9rem 1.1rem;
}

.sidebar-card-title {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.sidebar-card-title span {
  color: var(--red);
}

.sidebar-card-link {
  color: var(--gray-400);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.next-match {
  overflow: hidden;
  border: 0;
  background: linear-gradient(150deg, var(--navy), var(--navy-light));
  color: white;
}

.next-match .sidebar-card-header {
  border-color: rgba(255, 255, 255, 0.12);
}

.next-match .sidebar-card-title {
  color: white;
}

.nm-league,
.nm-date,
.nm-venue {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.72rem;
  text-align: center;
  text-transform: uppercase;
}

.nm-date {
  margin-top: 0.35rem;
  color: var(--gold-light);
  font-weight: 700;
}

.nm-teams {
  justify-content: center;
  gap: 1rem;
  margin: 1.2rem 0;
}

.nm-team {
  flex-direction: column;
  gap: 0.45rem;
}

.nm-badge {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--red));
  color: white;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
}

.nm-badge.opp {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
}

.nm-team-name {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nm-vs {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.3rem;
}

.nm-kickoff {
  color: white;
  font-family: var(--font-display);
  font-size: 2.2rem;
  text-align: center;
}

.standings-table {
  width: 100%;
  border-collapse: collapse;
}

.standings-table th {
  color: var(--gray-400);
  font-size: 0.62rem;
  font-weight: 800;
  padding: 0.35rem 0.2rem;
  text-align: center;
  text-transform: uppercase;
}

.standings-table th:first-child,
.standings-table td:first-child {
  text-align: left;
}

.standings-table td {
  border-top: 1px solid var(--gray-200);
  color: var(--gray-600);
  font-size: 0.78rem;
  font-weight: 650;
  padding: 0.55rem 0.2rem;
  text-align: center;
}

.standings-table tr.highlight td {
  background: rgba(218, 41, 28, 0.06);
  color: var(--navy);
  font-weight: 800;
}

.rank {
  display: inline-block;
  min-width: 1.4rem;
  color: var(--gray-400);
  font-weight: 800;
}

.pts {
  color: var(--red) !important;
  font-weight: 900 !important;
}

.trending-item {
  align-items: flex-start;
  gap: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
  padding: 0.75rem 0;
}

.trending-item:last-child {
  border-bottom: 0;
}

.trending-rank {
  color: var(--red);
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1;
}

.trending-text {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 750;
  line-height: 1.35;
}

.trending-cat {
  margin-top: 0.2rem;
  color: var(--gray-400);
  font-size: 0.68rem;
}

.watch-card p,
.newsletter-card p {
  padding: 0 1rem;
  color: var(--gray-500);
  font-size: 0.84rem;
  line-height: 1.55;
}

.watch-step {
  margin-left: 1rem;
  margin-right: 1rem;
  align-items: flex-start;
  gap: 0.65rem;
  border-top: 1px solid var(--gray-200);
  margin-top: 0.75rem;
  padding-top: 0.75rem;
}

.watch-step b {
  display: grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--navy);
  color: white;
  font-size: 0.7rem;
}

.watch-step strong {
  display: block;
  color: var(--navy);
  font-size: 0.82rem;
}

.watch-step span {
  display: block;
  margin-top: 0.18rem;
  color: var(--gray-500);
  font-size: 0.72rem;
  line-height: 1.4;
}

.newsletter-card {
  background: var(--navy);
  color: white;
  padding: 1.2rem;
}

.newsletter-card h3 {
  color: white;
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
}

.newsletter-card form {
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.newsletter-card input {
  min-width: 0;
  flex: 1;
  border: 1px solid rgba(10, 17, 40, 0.16);
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  padding: 0.58rem 0.7rem;
}

.newsletter-card button {
  border: 0;
  border-radius: 3px;
  background: var(--red);
  color: white;
  cursor: pointer;
  padding: 0.58rem 0.8rem;
  font-weight: 800;
}

.transfer-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border-bottom: 1px solid var(--gray-200);
  padding: 0.8rem 1rem;
  transition: 0.2s;
}

.transfer-item:last-child {
  border-bottom: 0;
}

.transfer-item:hover {
  background: var(--gray-100);
}

.transfer-avatar {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--red));
  color: white;
  font-family: var(--font-display);
  font-size: 0.8rem;
}

.transfer-info {
  min-width: 0;
  flex: 1;
}

.transfer-name {
  overflow: hidden;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.transfer-detail {
  margin-top: 0.1rem;
  color: var(--gray-400);
  font-size: 0.7rem;
}

.transfer-status {
  border-radius: 999px;
  padding: 0.22rem 0.5rem;
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-done {
  background: rgba(26, 138, 74, 0.12);
  color: #1a8a4a;
}

.status-hot {
  background: rgba(218, 41, 28, 0.12);
  color: var(--red);
}

.status-rumor {
  background: rgba(196, 153, 108, 0.16);
  color: var(--gold);
}

.load-more {
  display: block;
  width: 100%;
  border: 1px solid var(--gray-200);
  border-radius: 6px;
  background: white;
  color: var(--gray-500);
  cursor: pointer;
  margin-top: 1.5rem;
  padding: 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: 0.3s;
}

.load-more:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding: 3rem 2rem 1.5rem;
}

.footer-inner {
  display: block;
}

.footer-brand strong {
  display: block;
  color: white;
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: 0.06em;
}

.footer-brand p {
  max-width: 42rem;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  line-height: 1.55;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr);
  gap: 2rem;
}

.footer-col {
  display: grid;
  align-content: start;
  gap: 0.55rem;
}

.footer-col h5 {
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a,
.footer-bottom {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 2rem;
  padding-top: 1rem;
  color: rgba(255, 255, 255, 0.45);
}

.empty-state {
  border: 1px dashed var(--gray-300);
  border-radius: 8px;
  background: white;
  color: var(--gray-500);
  padding: 1rem;
  font-size: 0.88rem;
}

.article-detail-page {
  display: grid;
  gap: 1.2rem;
}

.article-detail-back,
.article-detail-source {
  display: inline-flex;
  width: fit-content;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-detail-back {
  border: 1px solid var(--gray-300);
  background: white;
  color: var(--navy);
  padding: 0.65rem 0.85rem;
}

.article-detail-source {
  background: var(--red);
  color: white;
  padding: 0.45rem 0.65rem;
}

.article-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.4rem;
  border-radius: 10px;
  background: white;
  padding: 1rem;
  box-shadow: 0 18px 45px rgba(10, 17, 40, 0.08);
}

.article-detail-visual {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 430px;
  border-radius: 8px;
  isolation: isolate;
}

.article-detail-visual::before {
  content: 'PSG';
  position: absolute;
  right: -0.08em;
  bottom: -0.22em;
  color: rgba(255, 255, 255, 0.14);
  font-family: var(--font-display);
  font-size: clamp(7rem, 21vw, 18rem);
  line-height: 0.8;
}

.article-detail-visual span {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
  background: rgba(10, 17, 40, 0.42);
  color: white;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.7rem;
  text-transform: uppercase;
}

.article-detail-hero h1 {
  margin: 0.85rem 0;
  color: var(--navy);
  font-family: var(--font-accent);
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.04;
}

.article-detail-hero p,
.article-detail-body p {
  color: var(--gray-600);
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.75;
}

.article-detail-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
  color: var(--gray-400);
  font-size: 0.78rem;
}

.article-detail-meta strong {
  color: var(--gold);
}

.article-detail-body,
.article-detail-related {
  border-radius: 10px;
  background: white;
  padding: clamp(1rem, 3vw, 1.6rem);
}

.article-detail-related h2 {
  margin: 0 0 1rem;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
}

.article-detail-related > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.article-detail-related-card {
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  padding: 1rem;
}

.article-detail-related-card span {
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-detail-related-card strong {
  display: block;
  margin-top: 0.45rem;
  color: var(--navy);
  font-family: var(--font-accent);
  line-height: 1.25;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 1080px) {
  .hero-news,
  .content-layout {
    grid-template-columns: 1fr;
  }

  .hero-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .header-top {
    align-items: flex-start;
    flex-direction: column;
    padding: 0.8rem 1rem;
  }

  .header-right {
    width: 100%;
    justify-content: space-between;
  }

  .nav-bar,
  .livescore-inner,
  .main-container,
  .footer {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .hero-news {
    gap: 1rem;
  }

  .hero-side {
    grid-template-columns: 1fr;
  }

  .hero-card-img {
    min-height: 380px;
  }

  .hero-card-overlay {
    padding: 1.2rem;
  }

  .feed-header,
  .article-card,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .feed-tabs {
    width: 100%;
    overflow-x: auto;
  }

  .article-thumb {
    width: 100%;
  }

  .footer-grid,
  .footer-bottom {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .article-detail-hero,
  .article-detail-related > div {
    grid-template-columns: 1fr;
  }

  .article-detail-visual {
    min-height: 280px;
  }
}
