/* ═══════════════════════════════════
   CSS CUSTOM PROPERTIES
═══════════════════════════════════ */
:root {
  --text: #121A2A;
  --text-muted: #596579;
  --faint: #7C879A;
  --primary-100: #E9EEF8;
  --primary-500: #2A56AC;
  --primary-700: #2A56AC;
  --primary-800: #173A7A;
  --accent-400: #2A56AC;
  --accent-500: #173A7A;
  --white: #ffffff;
  --surface: #ffffff;
  --gold: #F5B90B;
  --surface-100: #FFF5D6;
  --border: #D7DFEF;
  --gray-300: #D7DFEF;
  --gray-600: #596579;
  --background: #f2f2f2;
  --box-shadow-sm: 0 1px 3px 0 rgba(34, 40, 42, 0.1);
  --box-shadow-md: 0 4px 20px 0 rgba(33, 37, 41, 0.05);
  --box-shadow-lg: 0 18px 45px rgba(42, 86, 172, .12);
  --maxw: 1320px;
}

/* ═══════════════════════════════════
   BASE
═══════════════════════════════════ */
* { box-sizing: border-box; }

html {
  width: 100%;
  background: #f2f2f2;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  background: var(--white);
  color: var(--text);
  font-family: 'Archivo', sans-serif;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  display: flex;
  flex-direction: column;
}

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: 36px;
  padding-right: 36px;
}

.serif { font-family: 'Newsreader', Georgia, serif; }

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

.hl { transition: color .15s; }
.hl:hover { color: var(--primary-500); }

.imgwrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--primary-100);
  display: block;
}

.imgwrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2, .7, .2, 1);
}

.card-link {
  display: flex;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
  width: 100%;
}

.card-link:hover .imgwrap img { transform: scale(1.035); }

.card-link:hover .hd {
  text-decoration: underline;
  text-decoration-color: var(--primary-500);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.kicker {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--primary-500);
  display: block;
  margin-bottom: 9px;
}

.kicker.navy { color: var(--primary-500); }

.hd {
  font-family: 'Newsreader', Georgia, serif;
  display: block;
  font-weight: 700;
  line-height: 1.16;
  letter-spacing: -.01em;
}

.card .hd { font-size: 20px; line-height: 1.16; }
.card.sm .hd { font-size: 18px; }
.rail-story .hd { font-size: 17.5px; line-height: 1.08; font-weight: 700; }
.feature .hd { font-size: 34px; line-height: 1.04; }

/* ad containment */
.ad_code {
  position: relative;
  overflow: hidden;
  max-width: 100%;
  text-align: center;
  padding: 18px 0;
  background: var(--white);
  border: 1px solid var(--border);
  margin: 36px 0;
}

.ad_code iframe { max-width: 100%; }

/* topbar */
.topbar {
  background: var(--primary-800);
  color: #fff;
  border-top: 4px solid var(--gold);
  border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.topbar .wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 62px;
  align-items: center;
}

.tb-left { justify-self: start; display: flex; align-items: center; gap: 22px; }
.tb-right { justify-self: end; display: flex; align-items: center; gap: 22px; }

.wx {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  color: #fff;
  font-weight: 600;
}

.date-long {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}

.date-short {
  display: none;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .72);
}

.tb-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .78);
  background: none;
  border: 0;
  font-family: inherit;
  padding: 0;
}

.tb-btn:hover { color: #fff; }

.subscribe {
  background: #fff;
  color: #111;
  padding: 7px 14px;
  border-radius: 2px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.subscribe:hover { background: var(--primary-500); color: #fff; }

.top-logo {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(22px, 2.7vw, 30px);
  line-height: 1;
  letter-spacing: -.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.top-logo .logo-orlando { color: var(--gold); font-weight: 800; }
.top-logo .logo-rest { color: #fff; font-weight: 400; margin-left: .16em; letter-spacing: -.045em; }

.menu-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 9px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.menu-toggle:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle.is-open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; }
.menu-toggle.is-open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #C8D1E3;
}

.nav .wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 0;
}

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

.nav a {
  flex: 1 1 0;
  min-width: max-content;
  padding: 0 12px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: .07em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--text);
  border: 0;
  transition: .15s;
}

.nav a:hover { color: var(--primary-500); box-shadow: inset 0 -3px 0 var(--gold); }

.nav .nav-util { display: none; }

/* ticker */
.ticker {
  background: #F7F9FC;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 9px 0;
}

.ticker-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: scroll 80s linear infinite;
  flex: none;
  width: max-content;
  min-width: max-content;
  overflow: visible;
  padding-left: 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .005em;
}

.ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track a:hover { text-decoration: underline; }
.ticker-sep { color: var(--gold); margin: 0 38px; }

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* hero */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.86fr) minmax(320px, .82fr);
  gap: 0;
  padding: 40px 0 46px;
}

.hero-lead {
  padding-right: 40px;
  border-right: 1px solid var(--border);
}

.hero-lead .imgwrap { aspect-ratio: 16/8.7; margin-bottom: 20px; }

.hero-lead .hd {
  font-size: 45px;
  line-height: 1;
  letter-spacing: -.035em;
  margin: 12px 0 14px;
  font-family: 'Newsreader', Georgia, serif;
  display: block;
}

.hero-lead .deck {
  font-size: 18px;
  line-height: 1.48;
  color: var(--text-muted);
  max-width: 68ch;
  font-family: 'Newsreader', Georgia, serif;
}

.hero-rail { padding-left: 34px; display: flex; flex-direction: column; gap: 0; }

.rail-story {
  display: block;
  padding: 0 0 15px;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.rail-story:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }

.rail-story .imgwrap { border-radius: 0; width: 104px; aspect-ratio: 1; }

.imgwrap:after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .08);
  pointer-events: none;
}

/* section header */
.sec {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.sec-head {
  display: block;
  margin-bottom: 22px;
  padding-top: 10px;
  position: relative;
}

.sec-head:before {
  content: '';
  position: absolute;
  left: -1px;
  top: -15px;
  width: 70px;
  height: 5px;
  background: var(--gold);
}

.sec-head h2 {
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -.025em;
  text-transform: none;
  margin: 0;
}

.sec-head h2 a:hover { color: var(--primary-500); }
.sec-head .bar { display: none; }

/* 4-col grid */
.grid4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card .imgwrap { margin-bottom: 14px; }
.card { position: relative; border: 0; background: transparent; }

.rail-story .card-link {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 14px;
  width: 100%;
}

.rail-story .card-link:hover .imgwrap img { transform: scale(1.06); }

.rail-story .rail-text { display: flex; flex-direction: column; }

.weather-rail .rail-story .card-link {
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 16px;
}

/* split */
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(330px, .8fr);
  gap: 48px;
}

.feature .imgwrap { aspect-ratio: 16/9; margin-bottom: 16px; }

.feature .deck {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 10px 0 0;
  font-family: 'Newsreader', Georgia, serif;
}

/* most read */
.mr {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 5px solid var(--primary-500);
  padding: 22px 24px;
}

.mr-item {
  display: flex;
  gap: 15px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}

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

.mr-num {
  font-family: 'Archivo', sans-serif;
  font-style: normal;
  font-size: 30px;
  font-weight: 800;
  letter-spacing: -.06em;
  line-height: 1;
  color: var(--primary-500);
  width: 32px;
  flex-shrink: 0;
}

.mr-item .hd { font-family: 'Newsreader', Georgia, serif; font-size: 16px; font-weight: 700; }

.mr-item .tag2 {
  font-size: 11px;
  color: var(--faint);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 5px;
  display: block;
}

/* sports grid */
.sports-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 22px;
  margin-top: 28px;
}

.sports-tile .imgwrap { aspect-ratio: 16/9; margin-bottom: 12px; }
.sports-tile .hd { font-size: 18px; }

/* weather rail */
.weather-rail { border-top: 1px solid var(--border); }
.weather-rail .rail-story { margin: 0; padding: 17px 0; }
.weather-rail .rail-story .hd { font-size: 17px; line-height: 1.12; }
.weather-rail .rail-story .imgwrap { width: 96px; aspect-ratio: 1; }

/* footer */
.footer {
  background: var(--primary-800);
  color: #fff;
  border-top: 6px solid var(--gold);
  padding: 52px 0 36px;
}

.foot-grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, .13);
  align-items: center;
  text-align: center;
}

.foot-brand .logo {
  font-family: 'Archivo', sans-serif;
  font-size: 27px;
  letter-spacing: -.055em;
  text-transform: uppercase;
  color: #fff;
  font-weight: 800;
  display: inline-block;
}

.foot-brand .sun { color: var(--gold); font-weight: 400; margin: 0 .12em; }

.foot-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 0;
  width: 100%;
}

.foot-sections a {
  color: rgba(255, 255, 255, .65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 8px 14px;
  line-height: 1;
  transition: color .15s;
}

.foot-sections a:hover { color: var(--gold); }

.foot-bottom {
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.foot-bottom .links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
}

.foot-bottom a { font-size: 12px; color: rgba(255, 255, 255, .5); transition: color .15s; }
.foot-bottom a:hover { color: #fff; }

.foot-disclaimer {
  font-size: 12px;
  color: rgba(255, 255, 255, .38);
  line-height: 1.7;
  margin: 0;
  width: 100%;
  text-align: center;
}

/* section pairs */
.sec-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.sec-pair .sec-head:before { left: -1px; }

/* opinion / lifestyle band */
.opinion {
  background: var(--primary-800);
  color: #fff;
  border-top: 6px solid var(--gold);
  padding: 52px 0 56px;
}

.opinion .sec-head:before { background: var(--gold); }
.opinion .sec-head h2 { font-size: 20px; color: #fff; }

.op-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 0;
}

.op-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px 30px 24px 0;
  margin-right: 26px;
  text-align: center;
}

.op-link {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  width: 100%;
}

.op-card .av {
  width: 100%;
  aspect-ratio: 16/16;
  border-radius: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .18);
  display: block;
  position: relative;
}

.op-card .av img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s cubic-bezier(.2, .7, .2, 1);
}

.op-link:hover .av img { transform: scale(1.035); }
.op-card .hd { font-size: 18px; line-height: 1.18; color: #fff; }

.op-link:hover .hd {
  text-decoration: underline;
  text-decoration-color: var(--gold);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.op-card .kicker { color: var(--gold); margin-top: 20px; }

/* animations */
@keyframes newsEnter {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

@keyframes menuDrop {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

.hero-lead, .hero-rail { animation: newsEnter .55s ease both; }
.hero-rail { animation-delay: .09s; }

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
}

/* ─── 2-col grid utility ─── */
.grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

/* ─── section-list (State News / Traffic) ─── */
.section-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.section-list li { padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.section-list li:last-child { border-bottom: 0; padding-bottom: 0; }
.section-list .hd-lg { font-size: 24px; line-height: 1.1; }
.section-list .hd-sm { font-size: 15px; }
.section-list .imgwrap { aspect-ratio: 16/9; margin-bottom: 12px; }

/* ─── opinion link color fix ─── */
.opinion .sec-head h2 a { color: #fff; }

/* ─── site disclaimer ─── */
.site-disclaimer { font-size: 12px; color: rgba(255, 255, 255, .38); line-height: 1.7; margin: 0; width: 100%; text-align: center; }
.site-disclaimer a { color: rgba(255, 255, 255, .6); text-decoration: underline; }
.site-disclaimer a:hover { color: #fff; }

/* ─── responsive ─── */
@media (max-width: 980px) {
  .grid4 { grid-template-columns: repeat(2, 1fr); gap: 26px; }
  .split { grid-template-columns: 1fr; gap: 64px; }
  .sec-pair { grid-template-columns: 1fr; gap: 34px; }
  .hero { grid-template-columns: 1fr; }
  .hero-lead { padding-right: 0; border-right: 0; border-bottom: 1px solid var(--border); padding-bottom: 30px; }
  .hero-rail { padding: 28px 0 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .rail-story { border: 0; margin: 0; padding: 0; }
  .rail-story .card-link { display: flex; flex-direction: column-reverse; }
  .rail-story .imgwrap { width: 100%; aspect-ratio: 16/10; }
  .sports-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 980px) {
  .op-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .op-card { padding: 0; margin: 0; }
}

@media (max-width: 700px) {
  .wrap { padding-left: 18px; padding-right: 18px; }
  .op-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .opinion .sec-head h2 { text-align: center; }
  .opinion .sec-head:before { left: 50%; transform: translateX(-50%); }
  .op-card .av { max-width: 80%; margin: 0 auto; }
  .op-card .hd { font-size: 14px; line-height: 1.2; }
  .op-link { gap: 8px; }
  .op-card .kicker { margin-top: 10px; }
  .topbar { position: relative; }
  .topbar .wrap { height: 78px; min-height: 78px; display: flex; justify-content: center; padding-top: 0; padding-bottom: 0; }
  .topbar .tb-right { display: none; }
  .topbar .tb-left { display: flex; position: absolute; left: 50%; bottom: 7px; transform: translateX(-50%); gap: 12px; white-space: nowrap; }
  .topbar .date-long { display: none; }
  .topbar .date-short { display: inline-block; }
  .top-logo { font-size: clamp(19px, 5.5vw, 25px); transform: translateY(-10px); }
  .pages .topbar .tb-left { display: none; }
  .pages .top-logo { transform: none; }
  .menu-toggle { display: block; position: absolute; right: 18px; top: 8px; }
  .nav { display: none; position: absolute; top: 85px; left: 0; right: 0; z-index: 80; background: #fff; box-shadow: 0 18px 34px rgba(20, 38, 77, .2); }
  .nav.mobile-open { display: block; animation: menuDrop .18s ease both; }
  .nav .wrap { height: auto; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); padding: 10px 18px 14px; }
  .nav a { width: 100%; height: 42px; padding: 0 14px; justify-content: center; text-align: center; font-size: 11px; border-bottom: 1px solid var(--border); }
  .nav a:last-child { border-bottom: 0; }
  .nav-util { display: flex; }
  .hero { padding: 24px 0 30px; }
  .hero-lead .hd { font-size: 31px; }
  .hero-lead .deck { font-size: 17px; }
  .hero-lead .imgwrap { aspect-ratio: 16/9; }
  .hero-rail { grid-template-columns: 1fr; }
  .rail-story .card-link { display: grid; grid-template-columns: 1fr 110px; }
  .rail-story .imgwrap { width: 110px; aspect-ratio: 1; }
  .grid4 { grid-template-columns: 1fr 1fr; gap: 26px 18px; }
  .sec { padding: 64px 0; }
  .card .hd, .card.sm .hd { font-size: 18px; }
  .sports-grid { gap: 22px 16px; }
  .sec-pair { gap: 26px; padding: 34px 0; }
}

@media (max-width: 480px) {
  .nav .wrap { grid-template-columns: 1fr; }
  .nav a { height: 40px; }
  .grid4, .sports-grid { grid-template-columns: 1fr; }
  .hero-lead .hd { font-size: 31px; }
  .rail-story .hd { font-size: 18px; }
  .weather-rail .rail-story .card-link { grid-template-columns: minmax(0, 1fr) 90px; }
  .weather-rail .rail-story .imgwrap { width: 90px; }
  .sec-pair { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════
   LAYOUT RESET
═══════════════════════════════════ */
/* LAYOUT RESET */
.home .container.main {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.container.layout {
  max-width: 100%;
  padding: 0;
}

.container.layout .row.layout {
  margin: 0;
}

.container.layout .row.layout > .cols {
  overflow-x: hidden;
}

.home .container.layout .row.layout > .cols {
  padding: 0;
}

.pages .main-wrapper .container.main {
  padding: 24px 16px;
  max-width: var(--maxw);
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════
   FONTS RESET
═══════════════════════════════════ */
/* FONTS RESET */
.pages .layout h1,
.pages .layout h2 {
  font-weight: 700;
  color: var(--text);
}

.pages .layout h1,
.pages .layout h2,
.pages .layout h3,
.pages .layout p,
.pages .layout strong {
  color: var(--text);
}

.pages .layout h1 {
  font-size: 36px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}

.pages .layout h2 {
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 40px 0 18px;
}

.pages .layout h3 {
  font-size: 22px;
  line-height: 1.3;
  font-weight: 600;
  margin: 24px 0 10px;
}

.pages .layout p {
  font-size: 17px;
  line-height: 1.7;
  margin: 0 0 16px;
}

.pages .layout strong {
  font-weight: 700;
}

@media (max-width: 768px) {
  .pages .layout h1 {
    font-size: 30px;
    margin-bottom: 16px;
  }

  .pages .layout h2 {
    font-size: 25px;
    margin: 32px 0 16px;
  }

  .pages .layout h3 {
    font-size: 20px;
    margin: 22px 0 8px;
  }

  .pages .layout p {
    font-size: 16px;
    line-height: 1.65;
    margin-bottom: 14px;
  }
}

/* ═══════════════════════════════════
   TABLE RESET
═══════════════════════════════════ */
table { margin: 32px 0; }

table th, table td {
  border-color: var(--border) !important;
  padding: 8px 16px !important;
}

table td {
  color: var(--text) !important;
}

table th {
  background: var(--primary-500) !important;
  color: var(--white) !important;
  font-size: 13px !important;
  font-weight: bold !important;
}

table tbody tr:nth-child(even) td {
  background: var(--surface-100) !important;
}

@media (max-width: 992px) {
  table {
    display: block !important;
    overflow-x: auto !important;
    border: 0 !important;
  }
}

/* ═══════════════════════════════════
   CONTACT US FORM
═══════════════════════════════════ */
/* CONTACT US FORM */
#contact-form {
  margin: 45px auto 0;
  max-width: 500px;
}

#contact-form input,
#contact-form textarea {
  flex: 1;
  border: 2px solid var(--gray-300);
  border-radius: 6px;
  outline: 0;
  padding: 14px 18px;
  font-size: 14px;
  color: var(--text);
  min-width: 100%;
}

#contact-form input:active,
#contact-form input:focus,
#contact-form textarea:active,
#contact-form textarea:focus {
  border: 2px solid var(--primary-500);
}

#contact-form input::placeholder,
#contact-form textarea::placeholder {
  color: var(--gray-600);
}

#contact-form button {
  background: var(--primary-500);
  border: none;
  border-radius: 10px;
  cursor: pointer;
  padding: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background 0.2s;
  white-space: nowrap;
  width: 100%;
}

#contact-form button:hover {
  background: var(--accent-500);
}

/* ═══════════════════════════════════
           WIDGETS
═══════════════════════════════════ */

/* IMAGE STYLE RESET */
.item-current-image img {
  box-shadow: none !important;
  border-radius: 4px !important;
  border-color: var(--gray-300) !important;
}

/* SUBLIST */
.item-sublist a {
  width: 100%;
  height: 100%;
}

.item.item-bubbles {
  margin-bottom: 32px;
}

.item-bubbles .row {
  margin: 0;
}

.bubbles-chip {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  display: flex;
  font-weight: 500;
  height: 100%;
  padding: 16px 48px 16px 24px;
  position: relative;
  transition: padding 0.2s ease-in-out;
}

.bubbles-chip:hover {
  color: var(--text);
  background: var(--surface-100);
  border-color: var(--primary-500);
  padding-left: 20px;
}

.bubbles-chip:active,
.bubbles-chip:focus {
  background: var(--primary-500);
  color: var(--text);
}

.bubbles-link {
  display: block;
  width: 100%;
  max-width: 100%;
  text-decoration: none;
}

.bubbles-link .bubbles-outer {
  height: 100%;
  padding: 5px;
  max-width: 100%;
}

.sibling.link-button .bubbles-link .bubbles-outer,
.sibling.link-button .bubbles-chip {
  height: auto;
}

.col-gap:has(> .item-bubbles)::before {
  display: none !important;
}

.bubbles-chip::after {
  content: url("data:image/svg+xml,%3Csvg width='13' height='12' viewBox='0 0 13 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8.87771 7.01782H1.02042C0.737361 7.01782 0.496528 6.91886 0.297917 6.72094C0.0993056 6.52317 0 6.2833 0 6.00136C0 5.71942 0.0993056 5.4781 0.297917 5.2774C0.496528 5.07657 0.737361 4.97615 1.02042 4.97615H8.87771L5.66583 1.76428C5.46111 1.55955 5.35681 1.31719 5.35292 1.03719C5.34889 0.757332 5.45076 0.510249 5.65854 0.295943C5.86632 0.0948319 6.11014 -0.00377823 6.39 0.000110661C6.66986 0.00399955 6.91236 0.108583 7.1175 0.313861L12.0713 5.27407C12.1699 5.37282 12.2464 5.4856 12.3008 5.6124C12.3551 5.73935 12.3823 5.86865 12.3823 6.00032C12.3823 6.13199 12.3551 6.26122 12.3008 6.38803C12.2464 6.51497 12.1727 6.62497 12.0798 6.71803L7.10958 11.688C6.89403 11.9037 6.65368 12.0081 6.38854 12.0012C6.12354 11.9942 5.88715 11.8862 5.67938 11.6772C5.4716 11.4629 5.36771 11.2166 5.36771 10.9382C5.36771 10.6599 5.4716 10.4192 5.67938 10.2162L8.87771 7.01782Z' fill='%232A56AC'/%3E%3C/svg%3E%0A");
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.2s ease-in-out;
}

.bubbles-chip:hover::after {
  right: 10px;
}

/* SUBLIST CARDS */
.item-sublist {
  padding-top: 0 !important;
}

.item-sublist:has(.sublist.card) .row > div {
  padding: 10px !important;
}

.sublist.card {
  border: none;
  border-radius: 0;
  transition: 0.2s ease-in;
}

.sublist.card .card-img-holder {
  aspect-ratio: 16 / 9;
  position: relative;
  width: 100%;
  height: auto;
}

.sublist.card .card-img-holder img {
  position: absolute;
  border-radius: 0;
  transition: 0.2s ease-in;
}

.sublist.card h2 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  font-size: 25px;
  line-height: 1.3;
  color: var(--text);
  margin-top: 14px;
}

.sublist.card h5 {
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--text);
  margin-top: 12px;
}

.sublist.card.horizontal h5 {
  display: block;
  font-family: 'Newsreader', Georgia, serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.3;
  color: var(--text);
  margin-top: 0;
}

.sublist.card .card-body {
  padding: 0px;
}

.sublist.card:hover h2,
.sublist.card:hover h5 {
  color: #1a1a1a;
  text-decoration: underline;
  text-decoration-color: var(--primary-500);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.sublist.card:hover img {
  transform: scale(1.06);
}

@media (max-width: 767.98px) {

  .item-sublist:has(.sublist.card) .row > div {
    padding: 0 0 10px !important;
  }

  .item-sublist {
    padding-bottom: 0 !important;
  }

  .item-sublist:has(.horizontal) {
    margin-bottom: 20px;
  }

  .container.layout .row.layout > .cols {
    padding: 0;
  }

  .row div:has(> .sublist.card) {
    padding: 0 !important;
  }

  .row:has(> div .sublist.card) {
    margin: 0;
  }

  .sublist.card {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 10px;
  }

  .sublist.card.horizontal {
    margin-bottom: 0;
  }

  .sublist.card .card-img-top {
    border-radius: calc(var(--bs-border-radius) - (var(--bs-border-width)));
    width: 120px;
    height: 100%;
    object-fit: cover;
    flex-shrink: 0;
  }

  .sublist.card .card-body {
    flex: 1;
  }

  .sublist.card.horizontal .card-title {
    line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .sublist.card.horizontal h5 {
    font-size: 16px;
  }
}
