/* ================================================
   EBNEWS DAILY — Article Styles v3
   ================================================ */

.eb-in-article-ad {
  width: 100%;
  max-width: calc(100vw - 28px);
  min-height: 220px;
  margin: 28px auto;
  padding: 16px 0;
  overflow: hidden;
  border-top: 1px solid #e2e6ea;
  border-bottom: 1px solid #e2e6ea;
  background: #f7f8fa;
}

.eb-in-article-ad .adsbygoogle {
  width: 100%;
  min-height: 188px;
}

@media (max-width: 700px) {
  .eb-in-article-ad {
    min-height: 200px;
    margin: 24px auto;
    padding: 12px 0;
  }

  .eb-in-article-ad .adsbygoogle {
    min-height: 174px;
  }
}

.article-main { padding: 28px 0 48px; }
.article-main .content-grid { grid-template-columns: 1fr 268px; }
.article-main .content-grid > article { min-width: 0; }
.article-main .sidebar {
  position: sticky;
  top: var(--eb-article-sticky-top, 222px);
  align-self: start;
  padding-right: 2px;
  scrollbar-width: thin;
  scrollbar-color: rgba(13, 34, 87, 0.24) transparent;
}
.article-main .sidebar::-webkit-scrollbar { width: 6px; }
.article-main .sidebar::-webkit-scrollbar-thumb {
  background: rgba(13, 34, 87, 0.24);
  border-radius: 999px;
}
.article-main .sidebar .sidebar-widget {
  flex: 0 0 auto;
  border-color: var(--border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
}
.article-main .sidebar .widget-title,
.article-main .sidebar .wp-block-heading,
.article-main .sidebar .wp-block-search__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.article-main .sidebar .wp-block-search {
  display: block;
  margin: 0;
}
.article-main .sidebar .wp-block-search__inside-wrapper {
  display: flex;
  gap: 8px;
  padding: 14px;
  box-sizing: border-box;
  width: 100%;
}
.article-main .sidebar .wp-block-search__input {
  min-width: 0;
  flex: 1 1 auto;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 0 11px;
  font-size: 12px;
  color: var(--charcoal);
}
.article-main .sidebar .wp-block-search__input:focus {
  border-color: var(--navy);
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 34, 87, 0.08);
}
.article-main .sidebar .wp-block-search__button {
  flex: 0 0 auto;
  height: 40px;
  margin: 0;
  border: 0;
  border-radius: 5px;
  background: var(--red);
  color: var(--white);
  padding: 0 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.article-main .sidebar .wp-block-search__button:hover { background: var(--red-dark); }
.article-main .sidebar ul,
.article-main .sidebar ol {
  list-style: none;
  margin: 0;
  padding: 6px 0;
}
.article-main .sidebar li {
  margin: 0;
  padding: 9px 14px;
  border-bottom: 1px solid var(--border-lt);
  color: var(--mid);
  font-size: 12px;
  line-height: 1.45;
}
.article-main .sidebar li:last-child { border-bottom: 0; }
.article-main .sidebar li a {
  color: var(--charcoal);
  font-weight: 700;
  text-decoration: none;
}
.article-main .sidebar li a:hover { color: var(--red); }
.article-main .sidebar .wp-block-latest-posts__post-title {
  display: block;
  color: var(--navy);
}
.article-main .sidebar .wp-block-latest-comments {
  padding: 12px 14px;
}
.article-main .sidebar .wp-block-latest-comments__comment {
  padding: 0;
  border: 0;
}
.article-main .sidebar .wp-block-latest-comments__comment:empty,
.article-main .sidebar .wp-block-latest-comments:empty {
  display: none;
}
.article-kicker {
  display: flex;
  gap: 7px;
  align-items: center;
  margin-bottom: 12px;
}

/* Breadcrumb */
.breadcrumb {
  display: none;
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb span { color: #ccc; }

/* Headline */
.article-headline {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 900; line-height: 1.15;
  color: var(--charcoal); margin-bottom: 14px; letter-spacing: 0;
}

/* Standfirst */
.article-standfirst {
  font-size: 16px; font-weight: 400; line-height: 1.65;
  color: var(--mid); margin-bottom: 22px; padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

/* Byline */
.article-byline {
  display: flex; align-items: center; gap: 13px;
  padding: 14px 0; border-bottom: 1px solid var(--border); margin-bottom: 24px;
}
.article-byline .author-avatar { width: 44px; height: 44px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--light); }
.article-byline .author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-avatar {
  text-decoration: none;
}
.author-initial {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  font-weight: 900;
}
.byline-name { font-size: 13px; color: var(--charcoal); margin-bottom: 3px; }
.byline-meta { font-size: 11px; color: var(--muted); display: flex; gap: 13px; flex-wrap: wrap; }
.byline-meta span { display: flex; align-items: center; gap: 4px; }

.byline-share { margin-left: auto; display: flex; align-items: center; gap: 7px; flex-shrink: 0; }
.share-btn {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  border-radius: 50%; color: var(--white); font-size: 11px; transition: opacity 0.2s; border: none; cursor: pointer;
}
.share-btn:hover { opacity: 0.8; }
.share-btn.fb  { background: #1877f2; }
.share-btn.tw  { background: #111; }
.share-btn.wa  { background: #25d366; }
.share-btn.copy { background: var(--mid); }
.share-btn.copy.is-copied { background: var(--navy); }

/* Circular on-device article reader */
.article-audio-orb {
  --audio-progress: 0%;
  position: relative;
  isolation: isolate;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  margin-right: 2px;
  padding: 0;
  overflow: hidden;
  background: conic-gradient(var(--red) var(--audio-progress), #d8dee8 0);
  color: var(--white);
  font-size: 11px;
  transition: transform 160ms ease;
}
.article-audio-orb::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 2px;
  border-radius: 50%;
  background: var(--navy);
}
.article-audio-orb i { transform: translateX(1px); }
.article-audio-orb .screen-reader-text {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.article-audio-orb.is-playing i,
.article-audio-orb.is-paused i { transform: none; }
.article-audio-orb:hover { opacity: 1; transform: scale(1.05); }
.article-audio-orb.is-playing::before { background: var(--red); }
.article-audio-orb:disabled { opacity: 0.42; cursor: not-allowed; }
.article-audio-orb:focus-visible,
.share-btn:focus-visible {
  outline: 3px solid rgba(200, 16, 46, 0.24);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .article-audio-orb { transition: none; }
}

/* Article Image */
.article-image { margin: 0 0 28px; }

/* Wrap holds image + tint overlay */
.article-img-wrap {
  position: relative;
  overflow: hidden;
  line-height: 0;
  border-radius: 10px;
}
.article-img-wrap img {
  width: 100%; height: 430px;
  object-fit: cover; display: block;
}

/* Site-signature colour tint — distinctive EBNews brand overlay */
.article-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 25, 90, 0.36) 0%,
    rgba(200, 16, 46, 0.18) 50%,
    rgba(10, 25, 90, 0.12) 100%
  );
  pointer-events: none;
}

/* Editorial image description and credit */
.article-image.has-image-details .article-img-wrap {
  border-radius: 10px 10px 0 0;
}
.img-caption-bar {
  display: grid;
  gap: 6px;
  padding: 12px 14px 13px;
  background: #f7f8fb;
  border: 1px solid var(--border);
  border-top: 0;
  border-radius: 0 0 10px 10px;
  line-height: 1.45;
}
.article-image-description {
  color: var(--charcoal);
  font-size: 12.5px;
  font-weight: 500;
}
.article-image-credit {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 10.5px;
  letter-spacing: 0.01em;
}
.article-image-credit i {
  color: var(--navy);
  opacity: 0.58;
  font-size: 10px;
}

/* Legacy figcaption (non-brand articles) */
.article-image figcaption:not(.img-caption-bar) {
  font-size: 11px; color: var(--muted);
  padding: 7px 0; border-bottom: 1px solid var(--border); line-height: 1.5;
}

/* Article Text */
.article-text {
  font-size: 15px; line-height: 1.80;
  color: var(--charcoal); margin-bottom: 28px;
}
.article-text p { margin-bottom: 20px; }
.article-text h2 {
  font-family: var(--font-display); font-size: 21px; font-weight: 900; color: var(--navy);
  margin: 32px 0 13px; padding-bottom: 8px; border-bottom: 2px solid var(--border-lt);
}
.article-text strong { font-weight: 700; color: var(--charcoal); }
.eb-video-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0 0 24px;
  background: #080808;
}
.eb-video-player iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.eb-video-player-slot { position: relative; width: 100%; margin: 0 0 24px; }
.eb-video-player-slot .eb-video-player { margin-bottom: 0; }
.eb-video-player-slot.has-floating-player { aspect-ratio: 16 / 9; background: #eef1f5; }
.eb-video-player.is-floating {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10020;
  width: min(420px, calc(100vw - 32px));
  margin: 0;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 6px;
  box-shadow: 0 18px 55px rgba(0,0,0,.42);
  animation: eb-video-float-in .22s ease-out both;
}
.eb-video-float-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  background: rgba(8,12,18,.88);
  color: #fff;
  font-size: 17px;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(0,0,0,.28);
}
.eb-video-float-close:hover,
.eb-video-float-close:focus-visible { background: var(--red); outline: 2px solid #fff; outline-offset: 2px; }
.eb-video-player:not(.is-floating) .eb-video-float-close { display: none !important; }
.eb-video-upcoming-overlay { position: absolute; z-index: 3; top: 12px; left: 12px; display: flex; align-items: center; gap: 10px; padding: 7px 9px; color: #fff; background: rgba(0,0,0,.8); font-size: 9px; font-weight: 800; text-transform: uppercase; pointer-events: none; }
.eb-video-upcoming-overlay > span { color: #151515; padding: 3px 5px; background: #f4c95d; }
.eb-video-upcoming-overlay .video-upcoming-countdown { color: #fff; }
@keyframes eb-video-float-in { from { opacity: 0; transform: translateY(18px) scale(.96); } to { opacity: 1; transform: none; } }
@media (max-width: 700px) {
  .eb-video-player.is-floating { left: 12px; right: 12px; bottom: 74px; width: auto; max-width: 360px; margin-left: auto; }
  .eb-video-float-close { width: 32px; height: 32px; }
}
@media (prefers-reduced-motion: reduce) { .eb-video-player.is-floating { animation: none; } }
.video-broadcast-article .article-text { margin-top: 2px; }
.video-broadcast-article .article-text > p:first-of-type { padding: 13px 15px; border-left: 4px solid var(--red); background: #f8fafc; font-size: 12px; }
.video-broadcast-article .article-standfirst { overflow: visible; white-space: normal; text-overflow: clip; }
.video-broadcast-article{border-top:4px solid var(--red)}.video-article-identity{display:flex;align-items:center;gap:12px;margin:4px 0 18px;padding:12px 14px;border-radius:6px;color:#fff;background:#101820}.video-article-play{display:grid;place-items:center;width:38px;height:38px;flex:none;border-radius:50%;color:#fff;background:var(--red);font-size:13px}.video-article-label{display:grid;gap:2px;min-width:0}.video-article-label strong{font-size:12px;letter-spacing:.06em;text-transform:uppercase}.video-article-label small{overflow:hidden;color:#aeb9c6;font-size:10px;text-overflow:ellipsis;white-space:nowrap}.video-article-status{margin-left:auto;padding:6px 9px;border:1px solid rgba(255,255,255,.2);border-radius:3px;color:#fff;font-size:9px;font-weight:900;text-transform:uppercase;white-space:nowrap}.video-article-status.is-live{border-color:var(--red);background:var(--red)}.video-broadcast-article .article-kicker .tag{background:var(--red)}
.video-article-status.is-upcoming { color: #151515; border-color: #f4c95d; background: #f4c95d; }
.video-article-status .video-upcoming-countdown { margin: 3px 0 0; color: inherit; }
.video-broadcast-article .eb-video-player-slot{margin:24px 0 26px;padding:16px;background:#101820;box-shadow:0 12px 30px rgba(16,24,32,.18)}.video-broadcast-article .eb-video-player{margin:0}.video-broadcast-article .related-img-wrap::after{content:"\f04b";position:absolute;z-index:2;top:50%;left:50%;display:grid;place-items:center;width:38px;height:38px;border-radius:50%;color:#fff;background:rgba(200,16,46,.94);box-shadow:0 3px 12px rgba(0,0,0,.25);font:12px/1 "Font Awesome 6 Free";font-weight:900;transform:translate(-50%,-50%)}
@media(max-width:700px){.video-article-identity{margin:8px 12px 16px;padding:10px 12px}.video-article-play{width:34px;height:34px}.video-broadcast-article .eb-video-player-slot{margin:18px -12px 22px;padding:10px}}

/* Data bulletins: Lotto, Weather and Forex */
.automated-data-article { --bulletin-accent: var(--navy); border-top: 4px solid var(--bulletin-accent); }
.automated-data-article.auto-type-lotto { --bulletin-accent: #c8102e; }
.automated-data-article.auto-type-weather { --bulletin-accent: #1677c8; }
.automated-data-article.auto-type-forex { --bulletin-accent: #087f5b; }
.automated-data-article .article-kicker .tag { background: var(--bulletin-accent); }
.data-article-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 4px 0 18px;
  padding: 12px 14px;
  border-radius: 6px;
  color: #fff;
  background: #101820;
}
.data-article-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  border-radius: 50%;
  color: #fff;
  background: var(--bulletin-accent);
  font-size: 16px;
}
.data-article-label { display: grid; min-width: 0; gap: 2px; }
.data-article-label strong { font-size: 12px; letter-spacing: .06em; text-transform: uppercase; }
.data-article-label small { overflow: hidden; color: #b8c4ce; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.data-article-status {
  margin-left: auto;
  padding: 6px 9px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 3px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}
.eb-data-visual {
  overflow: hidden;
  margin: 0 0 28px;
  border-radius: 7px;
  box-shadow: 0 14px 34px rgba(15,23,42,.12);
}
.eb-data-visual > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
}
.eb-data-visual > header > span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.eb-data-visual > header > div { display: grid; justify-items: end; gap: 3px; text-align: right; }
.eb-data-visual > header strong { font-family: var(--font-display); font-size: 18px; letter-spacing: 0; }
.eb-data-visual > header small { font-size: 10px; opacity: .68; }
.eb-data-visual > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 18px;
  font-size: 9px;
}
.eb-data-visual > footer a { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; }
.eb-data-visual > footer b { display: inline-block; width: 8px; height: 8px; margin-right: 5px; border-radius: 50%; }

.eb-lotto-article-visual { color: #fff; background: #091632; }
.eb-lotto-article-visual > header { border-bottom: 1px solid rgba(255,255,255,.12); }
.eb-lotto-article-visual > header > span { color: #f5c451; }
.eb-lotto-article-balls {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 13px;
  min-height: 150px;
  padding: 30px 22px;
  background: radial-gradient(circle at 50% 0, rgba(255,255,255,.08), transparent 56%);
}
.eb-lotto-article-balls span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border: 4px solid rgba(255,255,255,.32);
  border-radius: 50%;
  color: #101820;
  background: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 900;
  box-shadow: inset 0 -8px 0 rgba(15,23,42,.09), 0 8px 17px rgba(0,0,0,.25);
}
.eb-lotto-article-balls span.is-bonus { border-color: rgba(255,255,255,.55); color: #fff; background: var(--data-accent); }
.eb-lotto-article-visual > footer { color: rgba(255,255,255,.58); background: rgba(0,0,0,.18); }
.eb-lotto-article-visual > footer b { background: var(--data-accent); }

.eb-weather-article-visual { color: var(--navy); border: 1px solid #cfe3f4; background: #f7fbff; }
.eb-weather-article-visual > header { color: #fff; background: #125e9d; }
.eb-weather-article-visual > header > span { color: #bde3ff; }
.eb-weather-article-cities { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.eb-weather-article-city {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 11px 8px;
  padding: 17px;
  border-right: 1px solid #dceaf5;
  border-bottom: 1px solid #dceaf5;
}
.eb-weather-article-city:nth-child(3n) { border-right: 0; }
.eb-weather-article-city > span { min-width: 0; }
.eb-weather-article-city > span strong,
.eb-weather-article-city > span small { display: block; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.eb-weather-article-city > span strong { font-size: 12px; }
.eb-weather-article-city > span small { margin-top: 2px; color: #6b8294; font-size: 8px; }
.eb-weather-article-city > i { color: #e5a400; font-size: 23px; }
.eb-weather-article-city > b { font-size: 24px; font-variant-numeric: tabular-nums; }
.eb-weather-article-city > b small { margin-left: 4px; color: #73889a; font-size: 13px; font-weight: 600; }
.eb-weather-article-city > em { align-self: center; color: #39769f; font-size: 8px; font-style: normal; }
.eb-weather-article-city > em span { display: block; width: 58px; height: 4px; margin-bottom: 4px; border-radius: 2px; background: linear-gradient(90deg, #1f8dd6 var(--rain-level), #d8e6ef var(--rain-level)); }
.eb-weather-article-visual > footer { color: #647d8f; background: #edf6fc; }
.eb-weather-article-visual > footer a { color: #125e9d; }

.eb-forex-article-visual { color: #fff; background: #101820; }
.eb-forex-article-visual > header { border-bottom: 1px solid rgba(255,255,255,.11); background: #0c332b; }
.eb-forex-article-visual > header > span { color: #73d3b6; }
.eb-forex-article-rates { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.eb-forex-article-rate {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 8px 14px;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,.09);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.eb-forex-article-rate:nth-child(2n) { border-right: 0; }
.eb-forex-article-rate > span { display: grid; gap: 2px; min-width: 0; }
.eb-forex-article-rate > span strong { color: #8fe0c6; font-size: 12px; letter-spacing: .08em; }
.eb-forex-article-rate > span small { overflow: hidden; color: #9aa8b2; font-size: 9px; text-overflow: ellipsis; white-space: nowrap; }
.eb-forex-article-rate > b { font-family: var(--font-display); font-size: 21px; letter-spacing: 0; font-variant-numeric: tabular-nums; }
.eb-forex-article-rate > em { grid-column: 1 / -1; color: #c5ced5; font-size: 9px; font-style: normal; }
.eb-forex-article-rate.is-stronger > em { color: #59d6a9; }
.eb-forex-article-rate.is-weaker > em { color: #ff7b88; }
.eb-forex-article-visual > footer { color: #96a5af; background: #0b1218; }
.eb-forex-article-visual > footer a { color: #78d7bb; }
.automated-data-article .article-text > p:first-of-type { padding: 14px 16px; border-left: 4px solid var(--bulletin-accent); background: #f8fafc; font-size: 13px; }
.automated-data-article .article-text h2 { border-bottom-color: color-mix(in srgb, var(--bulletin-accent) 25%, #e5e7eb); }
.automated-data-article .article-text .wp-block-table { overflow-x: auto; }
.automated-data-article .article-text table { min-width: 620px; border-collapse: collapse; font-size: 12px; }
.automated-data-article .article-text th { color: #fff; background: var(--navy); }
.automated-data-article .article-text th,
.automated-data-article .article-text td { padding: 10px; border: 1px solid var(--border-lt); text-align: left; }
.automated-data-article .article-text tbody tr:nth-child(even) { background: #f8fafc; }

@media (max-width: 700px) {
  .data-article-identity { margin: 8px 12px 16px; padding: 10px 12px; }
  .data-article-icon { width: 34px; height: 34px; font-size: 14px; }
  .data-article-label small { max-width: 165px; }
  .data-article-status { display: none; }
  .eb-data-visual { margin: 8px 0 24px; border-radius: 0; box-shadow: none; }
  .eb-data-visual > header { align-items: flex-start; padding: 14px; }
  .eb-data-visual > header > div { justify-items: end; }
  .eb-data-visual > header strong { font-size: 15px; }
  .eb-data-visual > footer { padding: 9px 12px; }
  .eb-lotto-article-balls { gap: 8px; min-height: 125px; padding: 24px 12px; }
  .eb-lotto-article-balls span { width: 43px; height: 43px; border-width: 3px; font-size: 15px; }
  .eb-weather-article-cities { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .eb-weather-article-city { padding: 13px; }
  .eb-weather-article-city:nth-child(3n) { border-right: 1px solid #dceaf5; }
  .eb-weather-article-city:nth-child(2n) { border-right: 0; }
  .eb-weather-article-city > b { font-size: 20px; }
  .eb-forex-article-rates { grid-template-columns: 1fr; }
  .eb-forex-article-rate { padding: 16px; border-right: 0; }
}

@media (max-width: 420px) {
  .eb-data-visual > header > span { max-width: 95px; }
  .eb-data-visual > footer > span { display: none; }
  .eb-data-visual > footer { justify-content: flex-end; }
  .eb-weather-article-city { grid-template-columns: minmax(0, 1fr) auto; gap: 8px 5px; padding: 11px 9px; }
  .eb-weather-article-city > i { font-size: 19px; }
}

/* Pull Quote */
.pull-quote {
  background: var(--cream); border-left: 5px solid var(--red);
  padding: 22px 26px; margin: 28px 0;
  border-radius: 0 6px 6px 0;
}
.pull-quote p {
  font-family: var(--font-display); font-size: 18px; font-style: italic; font-weight: 900;
  color: var(--navy); line-height: 1.45; margin: 0 0 9px !important;
}
.pull-quote cite { font-size: 11px; font-style: normal; font-weight: 700; color: var(--red); letter-spacing: 0.05em; }

/* Infobox */
.infobox {
  background: var(--navy); color: var(--white); padding: 22px 24px; margin: 28px 0;
  border-radius: 6px;
}
.infobox-title {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--red-light); margin-bottom: 14px; display: flex; align-items: center; gap: 6px;
}
.infobox ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.infobox ul li {
  font-size: 13px; color: rgba(255,255,255,0.78); padding-left: 13px;
  border-left: 2px solid var(--red); line-height: 1.4;
}
.infobox ul li strong { color: var(--white); font-weight: 700; }

/* Tags */
.article-tags {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin-bottom: 24px;
}
.tags-label { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); }

/* Share Footer */
.article-share-footer {
  display: flex; align-items: center; gap: 11px; flex-wrap: wrap;
  margin-bottom: 32px; font-size: 12px; color: var(--muted);
}
.share-buttons { display: flex; gap: 7px; flex-wrap: wrap; }
.share-pill {
  display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--white); transition: opacity 0.2s;
  border-radius: 4px;
}
.share-pill:hover { opacity: 0.85; }
.share-pill.fb { background: #1877f2; }
.share-pill.tw { background: #111; }
.share-pill.wa { background: #25d366; }
.share-pill.em { background: var(--mid); }

/* Author Bio */
.author-bio {
  display: flex; gap: 18px;
  background: var(--light); border: 1px solid var(--border); padding: 20px; margin-bottom: 30px;
  border-radius: 6px;
}
.author-bio .author-avatar.large { width: 68px; height: 68px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--light); }
.author-bio .author-avatar.large img { width: 100%; height: 100%; object-fit: cover; }
.author-bio .author-avatar.large .author-initial { font-size: 24px; }
.bio-name { font-family: var(--font-display); font-size: 16px; font-weight: 900; color: var(--navy); margin-bottom: 2px; }
.author-link { color: var(--navy); text-decoration: none; font-weight: 900; }
.author-link:hover { color: var(--red); }
.bio-role {
  font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--red); margin-bottom: 8px;
}
.bio-text { font-size: 12px; color: var(--mid); line-height: 1.6; margin-bottom: 8px; }

/* Comments */
.comments-section { padding-top: 8px; }
.comment-cta {
  background: var(--light); border: 1px solid var(--border); padding: 26px; text-align: center;
  font-size: 13px; color: var(--mid); border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
  /* ── App-like mobile article shell ───────────────── */
  .article-main {
    padding: 0 0 36px;
    background: linear-gradient(180deg, #f7f8fc 0%, #ffffff 160px);
  }
  .article-main .container { padding: 0; }
  .article-main .content-grid { grid-template-columns: 1fr; gap: 18px; }
  .article-main .content-grid > article,
  .article-main .content-grid .sidebar { width: 100%; }
  .article-main .sidebar { position: static; }

  /* ── Breadcrumb / top spacing ───────────────────── */
  .breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    white-space: nowrap;
    padding: 10px 14px 6px;
    font-size: 10px;
    scrollbar-width: none;
  }
  .breadcrumb::-webkit-scrollbar { display: none; }

  /* ── Category tag row ───────────────────────────── */
  .article-main > div > div > article > div:first-of-type {
    padding: 0 14px;
    margin-bottom: 10px;
  }

  /* ── Headline & standfirst ──────────────────────── */
  .article-headline {
    font-size: 28px;
    line-height: 1.12;
    letter-spacing: 0;
    padding: 0 14px;
    margin-bottom: 12px;
  }
  .article-standfirst {
    font-size: 15px;
    line-height: 1.65;
    padding: 0 14px 18px;
    margin-bottom: 0;
    border-bottom: none;
    color: #4e5565;
  }

  /* ── Hero media ─────────────────────────────────── */
  .article-image { margin: 10px 0 0; }
  .article-img-wrap {
    min-height: 240px;
    border-radius: 18px;
    margin: 0 12px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(13, 34, 87, 0.12);
  }
  .article-image.has-image-details .article-img-wrap {
    border-radius: 18px 18px 0 0;
  }
  .article-img-wrap img {
    width: 100%;
    height: 240px;
    max-height: none;
    object-fit: cover;
  }
  .img-caption-bar {
    margin: 0 12px;
    border-radius: 0 0 16px 16px;
    padding: 11px 14px 12px;
    background: #f7f8fb;
  }
  .article-image-description {
    font-size: 12px;
  }
  .article-image-credit {
    font-size: 10px;
  }

  /* ── Byline panel ───────────────────────────────── */
  .article-byline {
    flex-wrap: wrap;
    gap: 12px;
    margin: 14px 12px 0;
    padding: 14px;
    border: 1px solid rgba(13, 34, 87, 0.08);
    border-radius: 18px;
    background: rgba(255,255,255,0.94);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  }
  .article-byline .author-avatar {
    width: 40px;
    height: 40px;
  }
  .byline-name { font-size: 13px; }
  .byline-meta {
    gap: 8px 12px;
    font-size: 11px;
  }
  .byline-share {
    width: 100%;
    margin-left: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 4px;
  }
  .share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 14px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  }
  .article-audio-orb {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  /* ── Reading area ──────────────────────────────── */
  .article-text {
    font-size: 17px;
    line-height: 1.9;
    padding: 22px 18px;
    margin: 14px 12px 24px;
    color: #18202b;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.05);
    hyphens: auto;
    -webkit-hyphens: auto;
    word-break: break-word;
  }
  .article-text p { margin-bottom: 19px; }
  .article-text h2 {
    font-size: 20px;
    margin: 28px 0 12px;
    border-bottom: none;
    padding-bottom: 0;
  }
  .article-text h3 { font-size: 17px; margin: 22px 0 10px; }

  /* ── Pull quote ────────────────────────────────── */
  .pull-quote {
    margin: 22px 0;
    padding: 18px 16px;
    border-radius: 16px;
  }
  .pull-quote p { font-size: 17px; }

  /* ── Tags & sharing surfaces ───────────────────── */
  .article-tags,
  .article-share-footer,
  .author-bio,
  .related-articles,
  .sidebar-widget {
    margin-left: 12px;
    margin-right: 12px;
  }

  .article-tags {
    padding: 14px 16px;
    margin-bottom: 18px;
    border: none;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  }

  .article-share-footer {
    padding: 16px;
    margin-bottom: 18px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .share-buttons {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .share-pill {
    justify-content: center;
    font-size: 10px;
    padding: 11px 10px;
    border-radius: 14px;
  }

  /* ── Author card ───────────────────────────────── */
  .author-bio {
    flex-direction: column;
    gap: 12px;
    padding: 18px 16px;
    margin-bottom: 22px;
    border: none;
    border-radius: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
    box-shadow: 0 12px 26px rgba(15, 23, 42, 0.06);
  }
  .author-bio .author-avatar.large {
    width: 56px;
    height: 56px;
  }
  .author-bio .bio-name { font-size: 15px; }
  .author-bio .bio-role { font-size: 11px; }

  /* ── Related section like app feed ─────────────── */
  .related-articles {
    padding: 18px 0 0;
    margin-top: 0;
    border-top: none;
  }
  .related-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .related-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap: 12px;
    align-items: stretch;
    border: none;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  }
  .related-img-wrap {
    height: 100%;
    min-height: 112px;
    border-radius: 0;
  }
  .related-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .related-body {
    padding: 14px 14px 14px 2px;
    justify-content: center;
  }
  .related-body h3 {
    font-size: 14px;
    line-height: 1.35;
  }
  .related-meta {
    font-size: 10px;
    gap: 8px;
  }

  /* ── Sidebar widgets as mobile cards ───────────── */
  .sidebar {
    display: grid;
    gap: 14px;
  }
  .sidebar-widget {
    border: none;
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
  }
}

/* Publish / action button used in article context */
.btn-publish {
  background: var(--red); color: var(--white);
  font-family: var(--font-ui); font-size: 12px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 10px 22px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 8px;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(200,16,46,0.28);
}
.btn-publish:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(200,16,46,0.38); }
/* Navy variant for sign-in etc */
.btn-publish.navy { background: var(--navy); box-shadow: 0 2px 8px rgba(13,34,87,0.25); }
.btn-publish.navy:hover { background: var(--navy-deep); }

/* ── Reading Progress Bar ───────────────────────── */
.read-progress {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--box-width), 100vw);
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red) 0%, #ff6b6b 100%);
  z-index: 9999;
  transition: width 0.12s linear;
  box-shadow: 0 0 12px rgba(200,16,46,0.45);
}
/* ── Related Articles ───────────────────────────── */
.related-articles {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 3px solid var(--border);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 680px) {
  .related-grid { grid-template-columns: 1fr; }
}
.related-card {
  border-radius: 7px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: box-shadow 0.22s, transform 0.22s;
}
.related-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.12);
  transform: translateY(-3px);
}
.related-img-wrap {
  display: block;
  position: relative;
  overflow: hidden;
  height: 140px;
}
.related-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.related-card:hover .related-img-wrap img { transform: scale(1.06); }
.related-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(10,25,90,0.22) 0%, rgba(200,16,46,0.10) 100%);
  mix-blend-mode: multiply;
}
.related-body {
  padding: 12px 14px 14px;
  display: flex; flex-direction: column; gap: 5px;
}
.related-body h3 {
  font-family: var(--font-display);
  font-size: 13px; font-weight: 900;
  line-height: 1.3; color: var(--charcoal);
}
.related-body h3 a { color: inherit; }
.related-body h3 a:hover { color: var(--red); }
.related-meta {
  display: flex; gap: 10px; flex-wrap: wrap;
  font-size: 10px; color: var(--muted); margin-top: 2px;
}

/* Live match centre */
.eb-live-scoreboard{display:grid;grid-template-columns:1fr auto 1fr;align-items:center;gap:20px;padding:22px;background:#101820;color:#fff;border-top:4px solid #d71920}.eb-live-scoreboard>div{display:flex;align-items:center;gap:12px}.eb-live-scoreboard>div:last-child{justify-content:flex-end;text-align:right}.eb-live-scoreboard img{object-fit:contain;background:#fff;border-radius:50%;padding:5px}.eb-live-scoreboard>b{font-size:36px;white-space:nowrap}.eb-live-lineups{display:grid;grid-template-columns:1fr 1fr;gap:18px}.eb-live-lineups>div{position:relative;overflow:hidden;padding:18px 14px;border:3px solid #fff;outline:1px solid #176b3a;background:repeating-linear-gradient(0deg,#238a4b 0,#238a4b 42px,#1f7f45 42px,#1f7f45 84px);color:#fff;box-shadow:inset 0 0 0 1px rgba(255,255,255,.8)}.eb-live-lineups>div:before{content:"";position:absolute;inset:50% 0 auto;border-top:2px solid rgba(255,255,255,.65)}.eb-live-lineups>div:after{content:"";position:absolute;left:50%;top:50%;width:76px;height:76px;border:2px solid rgba(255,255,255,.65);border-radius:50%;transform:translate(-50%,-50%)}.eb-live-lineups h3{position:relative;z-index:1;margin:0 0 12px;padding:8px;background:rgba(0,0,0,.72);color:#fff;text-align:center;font-size:15px}.eb-live-lineups ol{position:relative;z-index:1;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:13px 7px;min-height:360px;margin:0;padding:12px 0;list-style:none;align-content:space-between}.eb-live-lineups li{display:flex;align-items:center;justify-content:center;min-height:42px;padding:5px;border-radius:4px;background:#fff;color:#111;font-size:11px;font-weight:800;line-height:1.15;text-align:center;box-shadow:0 2px 5px rgba(0,0,0,.3)}
@media(max-width:700px){.eb-live-lineups{grid-template-columns:1fr}.eb-live-scoreboard{gap:8px;padding:16px 8px}.eb-live-scoreboard img{width:48px;height:48px}.eb-live-scoreboard>div{flex-direction:column;font-size:12px}.eb-live-scoreboard>b{font-size:27px}.eb-live-lineups ol{min-height:330px}}

/* Match Centre article presentation */
.live-match-article{border-top:4px solid #15803d}.match-article-identity{display:flex;align-items:center;gap:12px;margin:4px 0 18px;padding:12px 14px;border-radius:6px;color:#fff;background:#101820}.match-article-ball{display:grid;place-items:center;width:40px;height:40px;flex:none;border:1px solid rgba(255,255,255,.28);border-radius:50%;color:#fff;background:#15803d;font-size:17px}.match-article-label{display:grid;gap:2px;min-width:0}.match-article-label strong{font-size:12px;letter-spacing:.06em;text-transform:uppercase}.match-article-label small{overflow:hidden;color:#b8c4ce;font-size:10px;text-overflow:ellipsis;white-space:nowrap}.match-article-status{display:flex;align-items:center;gap:7px;margin-left:auto;padding:7px 10px;border:1px solid rgba(255,255,255,.22);border-radius:3px;font-size:9px;font-weight:900;text-transform:uppercase;white-space:nowrap}.match-article-status.is-live{border-color:#ff4056;background:#c8102e}.match-article-status.is-live>span{width:7px;height:7px;border-radius:50%;background:#fff;animation:eb-match-status-pulse 1.6s ease-out infinite}.match-article-status.is-complete{color:#d8f6e2;border-color:#2f9e59;background:#166534}.live-match-article .article-kicker .tag{background:#15803d}.live-match-article .article-headline{max-width:900px}.live-match-article .article-text{margin-top:0}.live-match-article .eb-live-match>p:first-child{display:flex;align-items:center;justify-content:space-between;margin:0;padding:10px 14px;border:1px solid #dce4e0;border-bottom:0;color:#334155;background:#f4f8f5;font-size:11px}.live-match-article .eb-live-scoreboard{min-height:150px;padding:28px;border:0;border-bottom:5px solid #15803d;background:#101820}.live-match-article .eb-live-scoreboard>div{font-size:14px;font-weight:900}.live-match-article .eb-live-scoreboard img{width:64px;height:64px;border:3px solid rgba(255,255,255,.2)}.live-match-article .eb-live-scoreboard>b{padding:9px 15px;border-radius:4px;color:#101820;background:#fff;font-family:var(--font-display);font-size:38px}.live-match-article .eb-live-match>h2{margin:30px 0 14px;padding:10px 13px;border-left:4px solid #15803d;color:var(--navy);background:#f3f6f8;font-size:18px}.live-match-article .eb-live-match>ol{position:relative;margin:0;padding:0 0 0 38px;list-style:none}.live-match-article .eb-live-match>ol:before{content:"";position:absolute;top:5px;bottom:5px;left:14px;width:2px;background:#dbe4df}.live-match-article .eb-live-match>ol>li{position:relative;margin:0;padding:10px 12px;border-bottom:1px solid #e6ebe8;color:#334155;font-size:13px}.live-match-article .eb-live-match>ol>li:before{content:"";position:absolute;top:16px;left:-29px;width:10px;height:10px;border:3px solid #fff;border-radius:50%;background:#15803d;box-shadow:0 0 0 1px #15803d}.live-match-article .eb-live-match table{width:100%;overflow:hidden;border-collapse:separate;border-spacing:0;border:1px solid #dce4e0;border-radius:5px;font-size:12px}.live-match-article .eb-live-match thead{color:#fff;background:var(--navy)}.live-match-article .eb-live-match th,.live-match-article .eb-live-match td{padding:10px 12px;border-bottom:1px solid #e8ecea;text-align:center}.live-match-article .eb-live-match tbody tr:last-child>*{border-bottom:0}.live-match-article .eb-live-match tbody tr:nth-child(even){background:#f7f9f8}.live-match-article .eb-live-match>p:last-child{margin-top:20px;padding:10px 12px;border-left:3px solid #94a3b8;color:#64748b;background:#f8fafc;font-size:10px}.match-state-post .read-progress{background:#15803d}@keyframes eb-match-status-pulse{70%{box-shadow:0 0 0 7px rgba(255,255,255,0)}100%{box-shadow:0 0 0 0 rgba(255,255,255,0)}}
@media(max-width:700px){.match-article-identity{margin:8px 12px 16px;padding:10px 12px}.match-article-ball{width:34px;height:34px;font-size:14px}.match-article-label small{max-width:145px}.match-article-status{padding:6px 8px}.live-match-article .eb-live-scoreboard{min-height:130px;padding:18px 9px}.live-match-article .eb-live-scoreboard img{width:52px;height:52px}.live-match-article .eb-live-scoreboard>b{padding:7px 10px;font-size:27px}.live-match-article .eb-live-match>h2{margin:24px 0 12px;font-size:16px}.live-match-article .eb-live-match table{font-size:10px}.live-match-article .eb-live-match th,.live-match-article .eb-live-match td{padding:9px 5px}}
.live-match-article .eb-live-scoreboard>div strong{color:#fff}.live-match-article .eb-team-crest-fallback{display:grid;place-items:center;width:64px;height:64px;flex:none;border:3px solid rgba(255,255,255,.2);border-radius:50%;color:#15803d;background:#fff;font-size:25px}
@media(max-width:700px){.live-match-article .eb-team-crest-fallback{width:52px;height:52px;font-size:21px}}
@media(max-width:700px){.match-article-label small{max-width:none;overflow:visible;line-height:1.25;text-overflow:clip;white-space:normal}}

/* Article discovery: live trending, inline quick reads and expanded recommendations. */
.article-trending-widget .widget-title {
  justify-content: flex-start;
  gap: 6px;
  padding: 8px 11px;
  border-bottom: 2px solid var(--red);
  letter-spacing: 0;
}
.article-main .article-sidebar {
  max-height: none;
  overflow: visible;
  padding-right: 0;
}
.article-main .article-sidebar.is-stuck {
  max-height: calc(100vh - var(--eb-article-sticky-top, 222px) - 12px);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 3px;
}
.article-main .article-sidebar.is-stuck .article-trending-widget .widget-title,
.article-main .article-sidebar.is-stuck .article-standings-widget .widget-title {
  position: sticky;
  top: 0;
  z-index: 2;
}
.article-main .article-sidebar.is-stuck .article-trending-widget,
.article-main .article-sidebar.is-stuck .article-standings-widget {
  overflow: visible;
}
.article-trending-widget .trending-list { background: #fff; }
.article-trending-widget .trending-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 8px;
  padding: 8px 11px;
}
.article-trending-widget .trending-item .rank {
  width: auto;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
}
.article-trending-widget .trending-item:first-child .rank {
  color: var(--red);
  font-size: 22px;
  font-weight: 900;
}
.article-trending-widget .trending-copy { min-width: 0; }
.article-trending-widget .trending-item h4 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
}
.article-trending-widget .trending-item h4 a { font-weight: 400; }
.article-standings-widget .widget-title {
  justify-content: flex-start;
  gap: 7px;
  border-bottom: 2px solid var(--red);
  letter-spacing: 0;
}
.article-standings-control {
  display: grid;
  gap: 5px;
  padding: 10px 11px;
  border-bottom: 1px solid var(--border-lt);
  background: #f8fafc;
}
.article-standings-control label {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}
.article-standings-control select {
  width: 100%;
  height: 34px;
  padding: 0 30px 0 9px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--navy);
  background: #fff;
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
}
.article-standings-panel[hidden] { display: none; }
.article-standings-panel table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}
.article-standings-panel th,
.article-standings-panel td {
  padding: 7px 5px;
  border-bottom: 1px solid var(--border-lt);
  text-align: center;
}
.article-standings-panel thead th {
  color: #fff;
  background: var(--navy);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0;
}
.article-standings-panel thead th:first-child,
.article-standings-panel tbody td:first-child { width: 28px; }
.article-standings-panel thead th:nth-child(3),
.article-standings-panel thead th:nth-child(4),
.article-standings-panel tbody td:nth-child(3),
.article-standings-panel tbody td:nth-child(4) { width: 34px; }
.article-standings-panel tbody th {
  overflow-wrap: anywhere;
  color: var(--charcoal);
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
}
.article-standings-panel tbody tr:first-child { background: #fff7f8; }
.article-standings-panel tbody tr:first-child td:first-child,
.article-standings-panel tbody tr:first-child td:last-child { color: var(--red); font-weight: 900; }
.article-standings-panel tbody tr:last-child th,
.article-standings-panel tbody tr:last-child td { border-bottom: 0; }
.article-standings-empty {
  margin: 0;
  padding: 22px 14px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}
.in-news-recommendations {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 14px;
  margin: 24px 0;
  padding: 14px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.in-news-title {
  padding-top: 2px;
  color: var(--red);
  font-family: var(--font-ui);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}
.in-news-recommendations ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.in-news-recommendations li {
  position: relative;
  margin: 0;
  padding-left: 13px;
  line-height: 1.35;
}
.in-news-recommendations li::before {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
}
.in-news-recommendations a {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 800;
}
.in-news-recommendations a:hover { color: var(--red); }
.related-articles .related-grid { align-items: stretch; }
.related-articles .related-card { display: flex; flex-direction: column; }
.related-articles .related-body { flex: 1; }
.related-articles .related-meta { margin-top: auto; padding-top: 4px; }

@media (max-width: 700px) {
  .article-main .article-sidebar,
  .article-main .article-sidebar.is-stuck {
    position: static;
    max-height: none;
    overflow: visible;
    padding-right: 0;
  }
  .article-trending-widget .trending-item { padding: 8px 13px; }
  .in-news-recommendations {
    grid-template-columns: 1fr;
    gap: 9px;
    margin: 23px 0;
    padding: 14px 0;
  }
  .in-news-recommendations a { font-size: 13px; }
}

.live-match-article .eb-live-match-report {
  margin: 24px 0 8px;
  padding: 22px 24px;
  border-left: 4px solid #15803d;
  background: #f4f8f5;
}
.live-match-article .eb-live-match-report h2 {
  margin: 0 0 13px;
  padding: 0;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-size: 21px;
}
.live-match-article .eb-live-match-report p {
  margin: 0 0 12px;
  color: #27352e;
  font-size: 15px;
  line-height: 1.72;
}
.live-match-article .eb-live-match-report p:last-child { margin-bottom: 0; }

@media (max-width: 700px) {
  .live-match-article .eb-live-match-report { margin: 18px 0 6px; padding: 17px 16px; }
  .live-match-article .eb-live-match-report h2 { font-size: 18px; }
  .live-match-article .eb-live-match-report p { font-size: 14px; }
}
.eb-article-sources{margin:38px 0 26px;padding:24px;border:1px solid #dfe4ec;border-left:4px solid #c8102e;border-radius:10px;background:#f7f8fb}.eb-article-sources-heading>span{display:block;margin-bottom:4px;color:#c8102e;font-size:11px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.eb-article-sources h2{margin:0 0 6px;color:#101a3b;font-size:21px}.eb-article-sources-heading p,.eb-article-sources-note{margin:0;color:#667085;font-size:13px}.eb-article-sources ul{display:grid;gap:8px;margin:18px 0;padding:0;list-style:none}.eb-article-sources li{margin:0}.eb-article-sources li a{display:flex;flex-direction:column;padding:11px 13px;border:1px solid #e1e5ec;border-radius:7px;background:#fff;color:#101a3b;font-family:Arial,Helvetica,sans-serif;font-size:14px;font-weight:700;text-decoration:none}.eb-article-sources li a:hover,.eb-article-sources li a:focus{border-color:#c8102e;color:#c8102e}.eb-article-sources li small{margin-top:2px;color:#667085;font-size:11px;font-weight:500}.eb-article-sources-note{padding-top:12px;border-top:1px solid #e1e5ec}@media(max-width:600px){.eb-article-sources{padding:19px 16px}.eb-article-sources h2{font-size:19px}}
