:root {
  --primary: #1d4ed8;
  --primary-dark: #0f2147;
  --secondary: #5e7be3;
  --secondary-light: #c8d7ff;
  --background: #f3f6fb;
  --surface: #ffffff;
  --text-main: #0b1326;
  --text-muted: #5f6f86;
  --border: #d6dfed;

  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-sm: 8px;

  --shadow-sm: 0 8px 24px rgba(15, 33, 71, 0.06);
  --shadow-md: 0 16px 40px rgba(15, 33, 71, 0.1);
  --shadow-hover: 0 18px 46px rgba(15, 33, 71, 0.14);

  --font-heading: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  --font-display: Georgia, 'Times New Roman', serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.72;
  margin: 0;
  padding: 0;
  color: var(--text-main);
  background-color: var(--background);
}

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

figure,
iframe,
embed,
object,
video {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  margin-top: 0;
  color: var(--text-main);
  letter-spacing: -0.02em;
}

a {
  text-decoration: none;
  color: var(--primary);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--primary-dark);
}

.icon-svg {
  display: inline-flex;
  width: 1em;
  height: 1em;
  line-height: 1;
  vertical-align: -0.12em;
  flex-shrink: 0;
}

.icon-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-title,
.grid-lead-title,
.archive-lead-title,
.single-title,
.category-grid-item h2,
.cat-card-title,
.archive-latest-title,
.rec-body h6,
.pop-body h4,
.trend-content h4,
.mr-body h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.025em;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
}

body.no-scroll {
  overflow: hidden;
}

/* Hide overlay on desktop by default (it's at body level) */
.menu-overlay {
  display: none;
}

.theme-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================================================= */
/* HEADER & NAVIGATION */
/* ========================================================================= */
.top-bar {
  background: linear-gradient(90deg, #08162f 0%, var(--primary-dark) 58%, var(--primary) 100%);
  color: #fff;
  font-size: 0.85rem;
  padding: 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-left {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}

.top-right {
  display: flex;
  align-items: center;
  margin-left: 20px;
  flex-shrink: 0;
}

.top-date {
  font-weight: 500;
  white-space: nowrap;
}

.top-weather {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
  font-weight: 500;
  font-size: 0.85rem;
}

.top-weather .weather-icon {
  width: 1.1em;
  height: 1.1em;
  vertical-align: -0.15em;
  opacity: 0.92;
}

.top-weather .weather-icon svg {
  width: 100%;
  height: 100%;
}

.top-weather-temp {
  letter-spacing: 0.01em;
}

.top-weather-city {
  opacity: 0.8;
}

.top-bar-sep {
  opacity: 0.35;
  margin: 0 10px;
  font-weight: 300;
}

@media (max-width: 600px) {
  .top-weather,
  .top-bar-sep {
    display: none;
  }
}

.top-breaking {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  overflow: hidden;
}

.top-socials a {
  color: rgba(255, 255, 255, 0.8);
  margin-right: 15px;
  font-size: 1rem;
}

.top-socials a:hover {
  color: #fff;
}


.site-header.is-sticky .main-header {
  position: sticky;
  top: 0;
  /* Raise above the body overlay so the drawer remains clickable on mobile */
  z-index: 10010;
  box-shadow: 0 12px 34px rgba(15, 33, 71, 0.06);
}

.main-header {
  background: var(--surface);
  border-bottom: 1px solid rgba(15, 33, 71, 0.08);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  min-height: 78px;
}

.logo h1 {
  margin: 0;
  font-size: 2.05rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  height: var(--logo-height, 40px);
  display: inline-flex;
  align-items: center;
}

.logo h1 a {
  color: var(--logo-main, var(--text-main));
  text-decoration: none;
}

.logo-image,
.logo-image .custom-logo-link,
.logo-image .custom-logo {
  display: inline-flex;
  align-items: center;
}

.logo-image .custom-logo {
  max-height: var(--logo-height, 40px);
  width: auto;
  height: auto;
}

.logo-accent {
  color: var(--logo-accent, var(--primary));
}

.logo-text {
  color: var(--logo-main, #000);
}

.main-navigation {
  display: flex;
  flex: 1;
  justify-content: flex-start;
  margin-left: 15px;
}

.menu-toggle {
  display: none;
  /* Hide on desktop */
}

.header-search {
  display: flex;
  align-items: center;
}

.header-cta {
  margin-left: 12px;
}

.header-cta .cta-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.header-cta .cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.header-cta .cta-button {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: var(--primary);
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.header-cta .cta-button:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
}

.search-toggle {
  background: transparent;
  border: none;
  font-size: 1.2rem;
  color: var(--text-main);
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-toggle:hover {
  transform: scale(1.1);
  color: var(--primary);
}

/* ========================================================================= */
/* SEARCH OVERLAY */
/* ========================================================================= */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(8, 22, 47, 0.92);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-overlay-close-area {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.search-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.search-close:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: rotate(90deg) scale(1.1);
}

.search-close svg {
  width: 24px;
  height: 24px;
}

.search-overlay-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 800px;
  padding: 0 40px;
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.search-overlay.active .search-overlay-content {
  transform: translateY(0);
}

.search-overlay .search-form {
  width: 100%;
  position: relative;
}

.search-overlay .search-field {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 3px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 3rem;
  font-family: var(--font-heading);
  font-weight: 800;
  padding: 20px 0;
  outline: none;
  transition: border-color 0.3s ease;
}

.search-overlay .search-field::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.search-overlay .search-field:focus {
  border-bottom-color: var(--primary);
}

.search-overlay .search-submit {
  display: none; /* Hide the submit button, use Enter */
}

.search-overlay .screen-reader-text {
  display: none;
}

.search-hint {
  color: rgba(255, 255, 255, 0.5);
  margin-top: 24px;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-align: center;
  text-transform: uppercase;
  font-weight: 600;
}

.search-hint-mobile {
  display: none;
}

@media (max-width: 768px) {
  .search-overlay .search-field {
    font-size: 1.8rem;
  }

  .search-hint-desktop {
    display: none;
  }

  .search-hint-mobile {
    display: inline;
  }
  
  .search-close {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
}

.primary-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
}

.primary-menu li {
  margin: 0;
  position: relative;
}

.primary-menu li a {
  color: var(--text-main);
  display: block;
  padding: 28px 10px 24px;
  font-weight: 700;
  font-family: var(--font-heading);
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}

.primary-menu li a:hover,
.primary-menu li.current-menu-item a {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

/* Dropdown Sub-menu Styles */
.primary-menu .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  padding: 0;
  margin: 0;
  list-style: none;
  border: 1px solid var(--border);
  border-top: 3px solid var(--primary);
  z-index: 1000;
}

@media (min-width: 901px) {
  .primary-menu li:hover>.sub-menu,
  .primary-menu li:focus-within>.sub-menu {
    display: block;
  }
}

.primary-menu .sub-menu li {
  width: 100%;
}

.primary-menu .sub-menu li a {
  padding: 12px 20px;
  font-size: 0.85rem;
  text-transform: none;
  letter-spacing: 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-main);
  border-left: 0;
  /* Reset */
}

.primary-menu .sub-menu li:last-child a {
  border-bottom: none;
}

.primary-menu .sub-menu li a:hover {
  background: var(--background);
  color: var(--primary);
  border-bottom-color: var(--border);
}

/* Multi-level Dropdowns */
.primary-menu .sub-menu .sub-menu {
  top: -3px;
  left: 100%;
}

/* ========================================================================= */
/* FRONT PAGE - HERO SECTION */
/* ========================================================================= */
.front-page-main {
  padding: 34px 0 72px;
}

/* Hero 3-column grid */
.hero-section {
  margin-bottom: 56px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 14px;
  height: 400px;
}

.hero-col-slider {
  height: 100%;
  min-width: 0;
  min-height: 0;
}

.hero-col-mid,
.hero-col-right {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  min-width: 0;
  min-height: 0;
}

/* Side news cards (image-fill with overlay text) */
.hero-side-card {
  position: relative;
  flex: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 0;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.hero-side-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.hero-side-card__thumb {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.hero-side-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.hero-side-card:hover .hero-side-card__thumb img {
  transform: scale(1.05);
}

.hero-side-card__body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 14px;
  background: linear-gradient(to top, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.6) 70%, rgba(0,0,0,0.1) 100%);
  color: #fff;
  z-index: 2;
}

.hero-side-card__cat {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary);
  background: rgba(255,255,255,0.12);
  border-radius: 4px;
  padding: 2px 6px;
  margin-bottom: 4px;
}

.hero-side-card__title {
  font-size: 0.88rem;
  line-height: 1.3;
  margin: 0 0 4px 0;
  font-weight: 700;
}

.hero-side-card__title a {
  color: #fff;
  text-decoration: none;
}

.hero-side-card__title a:hover {
  text-decoration: underline;
}

.hero-side-card__date {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.7);
}

.hero-slider {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
}

.hero-slider .swiper-slide {
  width: 100%;
  height: 100%;
}

.hero-slider .swiper-pagination-bullet {
  background: #ffffff;
  opacity: 0.6;
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--primary);
  opacity: 1;
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  color: #ffffff;
  background: rgba(0, 0, 0, 0.4);
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
  font-size: 1.2rem;
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  background: var(--primary);
}

.hero-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: var(--shadow-md);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease, opacity 0.5s ease;
}

.hero-item:not(.hero-live-card)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 36%);
  opacity: 0;
  transition: opacity 0.25s ease;
  z-index: 1;
  pointer-events: none;
}

.hero-item:not(.hero-live-card):hover,
.hero-item:not(.hero-live-card):focus-within {
  transform: translateY(-3px);
  filter: saturate(1.04);
  box-shadow: 0 18px 50px rgba(10, 18, 38, 0.24);
}

.hero-item:not(.hero-live-card):hover::before,
.hero-item:not(.hero-live-card):focus-within::before {
  opacity: 1;
}

.main-hero {
  /* No grid properties needed anymore since it's a slide */
}

.hero-live-card {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  min-height: 0;
  text-decoration: none;
  color: #fff;
  background:
    radial-gradient(circle at top left, rgba(88, 137, 255, 0.34), transparent 42%),
    radial-gradient(circle at bottom right, rgba(255, 72, 118, 0.3), transparent 40%),
    linear-gradient(145deg, #091121 0%, #101a33 48%, #161126 100%);
  border: 1px solid rgba(130, 162, 255, 0.2);
  border-radius: var(--radius-md);
  isolation: isolate;
  flex: 1;
}

.hero-live-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 34%),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0 2px, transparent 2px 12px);
  opacity: 0.7;
  z-index: 0;
}

.hero-live-card:hover,
.hero-live-card:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(10, 18, 38, 0.26), 0 0 30px rgba(70, 120, 255, 0.2);
}

.hero-live-card__glow {
  position: absolute;
  inset: auto -12% -25% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 59, 113, 0.5) 0%, rgba(255, 59, 113, 0) 68%);
  filter: blur(10px);
  animation: heroLiveGlow 2.6s ease-in-out infinite;
  z-index: 0;
}

.hero-live-card__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  width: 100%;
  padding: 22px;
}

.hero-live-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.hero-live-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #ff4b78;
  box-shadow: 0 0 0 0 rgba(255, 75, 120, 0.65);
  animation: heroLivePulse 1.4s infinite;
}

.hero-live-card__title {
  margin: 0;
  font-size: 1.4rem;
  line-height: 1.15;
  color: #fff;
}

.hero-live-card__text {
  margin: 0;
  color: rgba(232, 238, 255, 0.82);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-live-card__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #295bff 0%, #4d7cff 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(41, 91, 255, 0.28);
}

@keyframes heroLivePulse {
  0% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 75, 120, 0.65);
  }

  50% {
    opacity: 0.55;
    transform: scale(0.92);
  }

  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 0 14px rgba(255, 75, 120, 0);
  }
}

@keyframes heroLiveGlow {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.08);
    opacity: 1;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0.1) 100%);
}

.hero-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 28px;
  z-index: 2;
}

.sub-hero .hero-content {
  padding: 18px;
}

.cat-label {
  display: inline-block;
  background: var(--primary);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.cat-label.cat-small {
  position: absolute;
  top: 10px;
  left: 10px;
  margin-bottom: 0;
}

.hero-title {
  margin: 0 0 10px;
  text-wrap: balance;
}

.hero-title a {
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-title a:hover {
  color: #c7d2fe;
  text-decoration: underline;
}

.main-hero .hero-title {
  font-size: 2.28rem;
  line-height: 1.08;
}

.sub-hero .hero-title {
  font-size: 1.14rem;
  line-height: 1.24;
}

.hero-meta {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  display: flex;
  gap: 15px;
}

/* ========================================================================= */
/* LATEST NEWS SECTION */
/* ========================================================================= */
.latest-news-grid-section {
  margin-bottom: 40px;
}

.latest-news-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.latest-news-title {
  color: #123891;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0;
  white-space: nowrap;
  padding-right: 15px;
}

.latest-news-line {
  flex-grow: 1;
  height: 2px;
  background-color: #123891;
}

.latest-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
  row-gap: 24px;
}

.latest-news-item {
  display: flex;
  align-items: stretch;
  gap: 15px;
  border-top: 1px solid #eaeaea;
  padding-top: 24px;
}

.latest-news-grid .latest-news-item:nth-child(-n+3) {
  border-top: none;
  padding-top: 0;
}

.latest-news-thumb {
  flex: 0 0 40%;
  border-radius: var(--radius-sm);
  overflow: hidden;
}

.latest-news-thumb img {
  width: 100%;
  height: 100%;
  min-height: 85px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.latest-news-item:hover .latest-news-thumb img {
  transform: scale(1.05);
}

.latest-news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.latest-news-item-title {
  font-size: 0.95rem;
  line-height: 1.35;
  margin: 0 0 8px 0;
}

.latest-news-item-title a {
  color: #0d2866;
  text-decoration: none;
  font-weight: 600;
}

.latest-news-item-title a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.latest-news-item-date {
  font-size: 0.75rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
}

.latest-news-item-date svg {
  color: #123891;
}

@media (max-width: 900px) {
  .latest-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .latest-news-grid .latest-news-item:nth-child(3) {
    border-top: 1px solid #eaeaea;
    padding-top: 24px;
  }
}

@media (max-width: 600px) {
  .latest-news-grid {
    grid-template-columns: 1fr;
  }
  .latest-news-grid .latest-news-item:nth-child(2) {
    border-top: 1px solid #eaeaea;
    padding-top: 24px;
  }
}

/* ========================================================================= */
/* MORE NEWS SECTION */
/* ========================================================================= */
.more-news-section {
  margin-top: 40px;
  margin-bottom: 10px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(214, 223, 237, 0.88);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

.more-news-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.more-news-title {
  color: #cc0000;
  font-size: 1.45rem;
  font-weight: 800;
  margin: 0;
  white-space: nowrap;
  padding-right: 15px;
}

.more-news-line {
  flex-grow: 1;
  height: 2px;
  background-color: #d0d4db;
}

.more-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 22px;
  row-gap: 20px;
}

.more-news-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid #eaeaea;
  padding-top: 16px;
}

.more-news-grid .more-news-item:nth-child(-n+4) {
  border-top: none;
  padding-top: 0;
}

.more-news-thumb {
  display: block;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}

.more-news-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.3s ease;
  display: block;
}

.more-news-item:hover .more-news-thumb img {
  transform: scale(1.05);
}

.more-news-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.more-news-item-title {
  font-size: 0.9rem;
  line-height: 1.38;
  margin: 0;
  font-weight: 700;
}

.more-news-item-title a {
  color: #0d2866;
  text-decoration: none;
}

.more-news-item-title a:hover {
  color: #cc0000;
  text-decoration: underline;
}

.more-news-item-meta {
  font-size: 0.73rem;
  color: #888;
}

@media (max-width: 1100px) {
  .more-news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .more-news-grid .more-news-item:nth-child(-n+3) {
    border-top: none;
    padding-top: 0;
  }
  .more-news-grid .more-news-item:nth-child(4) {
    border-top: 1px solid #eaeaea;
    padding-top: 16px;
  }
}

@media (max-width: 700px) {
  .more-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .more-news-grid .more-news-item:nth-child(-n+2) {
    border-top: none;
    padding-top: 0;
  }
  .more-news-grid .more-news-item:nth-child(3),
  .more-news-grid .more-news-item:nth-child(4) {
    border-top: 1px solid #eaeaea;
    padding-top: 16px;
  }
}

@media (max-width: 480px) {
  .more-news-grid {
    grid-template-columns: 1fr;
  }
  .more-news-grid .more-news-item:nth-child(2) {
    border-top: 1px solid #eaeaea;
    padding-top: 16px;
  }
}

/* ========================================================================= */
/* MAIN LAYOUT */
/* ========================================================================= */
.main-content-layout {
  display: flex;
  gap: 34px;
}

.content-primary {
  flex: 1;
  min-width: 0;
}

.sidebar-secondary {
  width: 320px;
  flex-shrink: 0;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(15, 33, 71, 0.1);
  margin-bottom: 28px;
  padding-bottom: 14px;
}

.section-title {
  margin: 0;
  font-size: 1.38rem;
  text-transform: uppercase;
  color: var(--text-main);
  position: relative;
  letter-spacing: 0.06em;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 58px;
  height: 3px;
  background: var(--primary);
}

.view-all {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ========================================================================= */
/* GRAPHIC 3-COLUMN NEWS GRID */
/* ========================================================================= */
.graphic-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
}

.grid-column {
  display: flex;
  flex-direction: column;
}

.grid-lead-article {
  margin-bottom: 20px;
  min-width: 0;
}

.grid-lead-thumb img {
  width: 100%;
  height: 214px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.grid-lead-title {
  font-size: 1.28rem;
  margin: 14px 0 10px;
  line-height: 1.24;
  overflow-wrap: anywhere;
}

.grid-lead-title a {
  color: var(--text-main);
  text-decoration: none;
}

.grid-lead-title a:hover {
  color: var(--primary);
}

.grid-sub-articles {
  list-style: none;
  padding: 0;
  margin: 0;
}

.grid-sub-articles li {
  border-top: 1px dashed var(--border);
  padding: 14px 0;
}

.grid-sub-articles li a {
  color: var(--text-main);
  text-decoration: none;
  font-weight: 500;
  display: block;
}

.grid-sub-articles li a:hover {
  color: var(--primary);
}

.article-meta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  font-size: 0.76rem;
  color: var(--text-muted);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.article-meta i {
  color: var(--primary);
}

/* ========================================================================= */
/* CATEGORY & ARCHIVE GRID */
/* ========================================================================= */
.archive-section-header {
  align-items: flex-end;
  gap: 18px;
}

.archive-section-heading {
  flex: 1;
  min-width: 0;
}

.archive-section-description {
  margin-top: 10px;
  max-width: 760px;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.archive-section-description p {
  margin: 0;
}

.archive-section-count {
  flex-shrink: 0;
  padding: 8px 12px;
  background: #eef4ff;
  border: 1px solid #cfdbf2;
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
}

.archive-featured-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.55fr);
  gap: 24px;
  margin-bottom: 30px;
  align-items: start;
}

.archive-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--text-main);
}

.archive-subtitle::before {
  content: '';
  width: 26px;
  height: 3px;
  background: var(--primary);
}

.archive-subtitle--spaced {
  margin-top: 8px;
}

.archive-latest-rail {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fe 100%);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.archive-latest-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.archive-latest-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--border);
}

.archive-latest-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.archive-latest-rank {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f2f6ff;
  border: 1px solid #cfdbf2;
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1;
}

.archive-latest-thumb {
  width: 84px;
  height: 66px;
  flex-shrink: 0;
  overflow: hidden;
}

.archive-latest-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.archive-latest-item:hover .archive-latest-thumb img {
  transform: scale(1.05);
}

.archive-latest-body {
  flex: 1;
  min-width: 0;
}

.archive-latest-title {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.36;
}

.archive-latest-title a {
  color: var(--text-main);
}

.archive-latest-title a:hover {
  color: var(--primary);
}

.archive-latest-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.archive-lead-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-lg);
}

.archive-lead-card:hover {
  box-shadow: var(--shadow-hover);
}

.archive-lead-thumb {
  display: block;
  overflow: hidden;
}

.archive-lead-thumb img {
  width: 100%;
  height: 310px;
  object-fit: cover;
  transition: transform 0.35s;
}

.archive-lead-card:hover .archive-lead-thumb img {
  transform: scale(1.03);
}

.archive-lead-content {
  padding: 18px 20px 20px;
}

.archive-lead-title {
  margin: 0 0 12px;
  font-size: 1.78rem;
  line-height: 1.14;
  color: var(--text-main);
  text-wrap: balance;
}

.archive-lead-title a {
  color: var(--text-main);
}

.archive-lead-title a:hover {
  color: var(--primary);
}

.archive-lead-excerpt {
  margin-top: 12px;
  font-size: 0.98rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.category-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.category-grid-item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.category-grid-item:hover {
  box-shadow: var(--shadow-hover);
}

.category-grid-thumb {
  margin-bottom: 0;
  overflow: hidden;
  height: 210px;
}

.category-grid-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.category-grid-item:hover .category-grid-thumb img {
  transform: scale(1.05);
}

.category-grid-item h2 {
  font-size: 1.04rem;
  margin: 0 0 10px;
  line-height: 1.28;
}

.category-grid-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.category-grid-item h2 a {
  color: var(--text-main);
  text-decoration: none;
}

.category-grid-item h2 a:hover {
  color: var(--primary);
}

.category-grid-item .article-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
}

.category-grid-item .article-meta {
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}

.pagination {
  margin-top: 34px;
}

.pagination .page-numbers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.pagination .page-numbers li {
  margin: 0;
  list-style: none;
}

.pagination .page-numbers a,
.pagination .page-numbers span {
  min-width: 42px;
  height: 42px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text-main);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
}

.pagination .page-numbers a:hover {
  background: #edf3ff;
  border-color: #c9d8ff;
  color: var(--primary);
}

.pagination .page-numbers .current {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}

.pagination .page-numbers .dots {
  border-color: transparent;
  background: transparent;
  min-width: auto;
  padding: 0 4px;
}

@media (max-width: 992px) {
  .archive-featured-layout {
    grid-template-columns: 1fr;
  }

  .archive-latest-rail {
    order: 2;
  }

  .archive-lead-card {
    order: 1;
  }

  .archive-lead-thumb img {
    height: 270px;
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .category-grid--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .archive-section-header {
    align-items: flex-start;
  }

  .archive-section-count {
    padding: 6px 10px;
    font-size: 0.74rem;
  }

  .archive-latest-rail {
    padding: 16px;
  }

  .archive-latest-thumb {
    width: 76px;
    height: 62px;
  }

  .archive-latest-rank {
    width: 24px;
    height: 24px;
    font-size: 0.72rem;
  }

  .archive-lead-thumb img {
    height: 215px;
  }

  .archive-lead-content {
    padding: 16px;
  }

  .archive-lead-title {
    font-size: 1.22rem;
  }

  .category-grid {
    grid-template-columns: 1fr;
  }

  .category-grid-thumb {
    height: 210px;
  }

  .pagination .page-numbers {
    gap: 8px;
  }

  .pagination .page-numbers a,
  .pagination .page-numbers span {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    font-size: 0.88rem;
  }
}

/* ========================================================================= */
/* SINGLE POST & PAGE */
/* ========================================================================= */
.single-page-main {
  padding: 40px 0;
}

.main-content-layout--triple {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: start;
}

.main-content-layout--triple .content-primary {
  min-width: 0;
}

.single-article {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 26px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
}

.single-header {
  margin-bottom: 25px;
}

.single-title {
  font-size: 2.5rem;
  line-height: 1.08;
  margin-bottom: 15px;
  color: var(--text-main);
  text-wrap: balance;
}

.single-thumbnail {
  margin-bottom: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 500px;
}

.single-thumbnail img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.single-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-main);
  word-wrap: break-word;
  overflow-wrap: break-word;
}

.author-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px;
  margin-top: 24px;
  border: 1px solid rgba(15, 33, 71, 0.08);
  border-radius: var(--radius-md);
  background: #fff;
}

.author-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-main);
  margin-bottom: 4px;
}

.author-bio {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.single-content > *:first-child {
  margin-top: 0;
}

.single-content h1,
.single-content h2,
.single-content h3,
.single-content h4 {
  margin-top: 30px;
  margin-bottom: 15px;
}

.single-content p {
  margin-bottom: 20px;
}

.single-content a {
  text-decoration: underline;
}

.single-content ul,
.single-content ol {
  margin-bottom: 20px;
  padding-left: 20px;
}

.single-content img {
  max-width: 100%;
  height: auto;
}

.single-content table {
  width: 100%;
  display: block;
  overflow-x: auto;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.single-content iframe {
  width: 100%;
  min-height: 380px;
}

.single-content blockquote {
  border-left: 4px solid var(--primary);
  margin: 0 0 20px;
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.03);
  font-style: italic;
}

.share-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(15, 33, 71, 0.08);
  border-radius: var(--radius-md);
  background: #fff;
  margin: 20px 0;
}

.share-label {
  font-weight: 700;
  color: var(--text-main);
}

.share-buttons-inline {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 10px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-main);
  background: rgba(15, 33, 71, 0.04);
  transition: all 0.2s ease;
}

.share-btn:hover {
  background: rgba(15, 33, 71, 0.1);
}

.share-facebook { color: #1877f2; }
.share-twitter { color: #111; }
.share-whatsapp { color: #25d366; }
.share-sms { color: #0f2147; }
.share-copy { color: var(--primary); }

.post-sidebar {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fe 100%);
  border: 1px solid var(--border);
  padding: 18px;
  position: sticky;
  top: 24px;
  box-shadow: var(--shadow-sm);
}

.post-sidebar .widget-title {
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.25;
  letter-spacing: 0.06em;
  overflow-wrap: anywhere;
}

.recommended-news-list,
.popular-news-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.rec-item,
.pop-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 14px;
  border-bottom: 1px dashed var(--border);
}

.rec-item:last-child,
.pop-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.rec-thumb {
  width: 96px;
  height: 74px;
  flex-shrink: 0;
  overflow: hidden;
  display: block;
}

.rec-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.rec-item:hover .rec-thumb img {
  transform: scale(1.05);
}

.rec-body,
.pop-body {
  flex: 1;
  min-width: 0;
}

.rec-body h6,
.pop-body h4 {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.45;
  color: var(--text-main);
}

.rec-body h6 {
  font-size: 0.95rem;
}

.pop-body h4 {
  font-size: 0.98rem;
}

.rec-body a,
.pop-body a {
  color: var(--text-main);
}

.rec-body a:hover,
.pop-body a:hover {
  color: var(--primary);
}

.rec-date,
.pop-meta {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.sidebar-left .rec-item {
  display: block;
}

.sidebar-left .rec-thumb {
  width: 100%;
  height: 104px;
  margin-bottom: 10px;
}

.sidebar-left .rec-body h6 {
  font-size: 0.9rem;
  line-height: 1.32;
}

.sidebar-left .rec-date {
  display: block;
  margin-top: 8px;
}

.pop-rank {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #eef2ff;
  border: 1px solid #c9d8ff;
  color: var(--primary);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 800;
}

.sidebar-right .sidebar-secondary {
  width: auto;
  margin-top: 22px;
}

.sidebar-right .widget {
  padding: 18px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
  box-shadow: none;
}

.sidebar-right .widget:last-child {
  margin-bottom: 0;
}

/* ========================================================================= */
/* SIDEBAR */
/* ========================================================================= */
.widget {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 30px;
  box-shadow: var(--shadow-sm);
}

.widget-title {
  margin: 0 0 20px;
  padding: 10px 15px;
  background: linear-gradient(90deg, #0b1731 0%, var(--primary-dark) 100%);
  color: white;
  border-bottom: none;
  font-size: 1.1rem;
  text-transform: uppercase;
}

.trending-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trending-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

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

.trending-item:hover {
  background: #f4f7ff;
}

.trend-rank {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--background);
  color: var(--secondary);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.trending-item:nth-child(1) .trend-rank {
  background: var(--primary);
  color: white;
}

.trend-thumb {
  flex-shrink: 0;
  width: 58px;
  height: 46px;
  object-fit: cover;
  display: block;
}

.trend-body {
  flex: 1;
  min-width: 0;
}

.trend-body h4 {
  margin: 0 0 5px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  font-family: var(--font-heading);
  color: var(--text-main);
}

.trend-body h4 a {
  color: var(--text-main);
}

.trend-body h4 a:hover {
  color: var(--primary);
}

.square-ad {
  width: 100%;
  height: 250px;
  background: #eaecf0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px dashed #cbd5e1;
  color: #94a3b8;
  border-radius: var(--radius-md);
  text-align: center;
}

/* ========================================================================= */
/* FOOTER */
/* ========================================================================= */
.site-footer {
  background: linear-gradient(180deg, #0f2147 0%, #09152d 100%);
  color: rgba(226, 232, 240, 0.78);
  margin-top: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 -20px 50px rgba(9, 21, 45, 0.18);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 40px;
  padding: 60px 20px;
}

.footer-widget h3 {
  color: #ffffff;
  margin-bottom: 20px;
  font-size: 1.2rem;
  letter-spacing: 0.3px;
}

.footer-logo {
  color: var(--footer-logo-main, #ffffff);
  font-size: 2rem;
  margin-bottom: 15px;
}

.footer-logo span {
  color: var(--footer-logo-accent, #7aa2ff);
}

.footer-logo--image {
  display: inline-flex;
  align-items: center;
}

.footer-logo-img {
  max-height: var(--footer-logo-height, 48px);
  width: auto;
  height: auto;
}

.branding-widget p {
  max-width: 520px;
  line-height: 1.8;
  color: rgba(226, 232, 240, 0.72);
}

.footer-socials {
  margin-top: 20px;
  display: flex;
  gap: 15px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  background: rgba(122, 162, 255, 0.12);
  border: 1px solid rgba(122, 162, 255, 0.18);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.25s ease;
}

.footer-socials a:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-socials a.social-facebook { background: #1877f2; border-color: #1877f2; color: #fff; }
.footer-socials a.social-x { background: #000000; border-color: #000000; color: #fff; }
.footer-socials a.social-twitter { background: #1da1f2; border-color: #1da1f2; color: #fff; }
.footer-socials a.social-youtube { background: #ff0000; border-color: #ff0000; color: #fff; }
.footer-socials a.social-instagram { background: #e4405f; border-color: #e4405f; color: #fff; }
.footer-socials a.social-tiktok { background: #000000; border-color: #000000; color: #fff; }

.footer-socials a:hover {
  filter: brightness(1.08);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(226, 232, 240, 0.76);
}

.footer-links a:hover {
  color: #ffffff;
  padding-left: 5px;
}

.footer-links--secondary a {
  color: rgba(226, 232, 240, 0.86);
}

.footer-links--secondary a:hover {
  color: #ffffff;
}

.newsletter-block form {
  display: grid;
  gap: 10px;
}

.newsletter-block input[type="email"],
.newsletter-block input[type="text"] {
  width: 100%;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.12);
}

.newsletter-block input[type="submit"],
.newsletter-block button {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.newsletter-block input[type="submit"]:hover,
.newsletter-block button:hover {
  background: var(--primary-dark);
}



.footer-bottom {
  background: rgba(4, 10, 24, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(226, 232, 240, 0.7);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-copy {
  margin: 0;
}

.footer-socials--bottom {
  margin-top: 0;
}

.footer-socials--bottom a {
  width: 36px;
  height: 36px;
  background: rgba(122, 162, 255, 0.18);
}

.footer-socials--branding {
  margin-top: 16px;
}

.footer-top--secondary {
  padding-top: 0;
}

/* ========================================================================= */
/* RESPONSIVE DESIGN */
/* ========================================================================= */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.2fr 1fr;
    height: auto;
  }
  .hero-col-slider {
    height: 360px;
  }
  .hero-col-mid {
    height: 360px;
  }
  .hero-col-right {
    grid-column: span 2;
    flex-direction: row;
    height: 180px;
  }
  .hero-col-right .hero-live-card {
    flex: 0 0 38%;
  }
}

@media (max-width: 700px) {
  .hero-grid {
    grid-template-columns: 1fr;
    height: auto;
  }
  .hero-col-slider {
    height: 300px;
  }
  .hero-col-mid,
  .hero-col-right {
    flex-direction: row;
    height: 160px;
  }
  .hero-col-right .hero-live-card {
    flex: 0 0 40%;
  }
}


@media (max-width: 900px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
  }

  .logo h1 {
    font-size: 1.6rem;
  }

  .main-navigation {
    margin-left: auto;
    flex: 0;
  }

  .header-search {
    margin-left: 0;
  }

  .main-content-layout {
    flex-direction: column;
  }

  .graphic-news-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
  }

  .main-content-layout--triple {
    grid-template-columns: 1fr;
  }

  .sidebar-left {
    order: 2;
  }

  .sidebar-right {
    order: 3;
  }

  .post-sidebar {
    position: static;
  }

  .sidebar-secondary {
    width: 100%;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .menu-toggle {
    display: block;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--text-main);
    background: transparent;
    border: none;
    padding: 10px;
  }

  .main-header {
    z-index: 10000;
  }

  /* Ensure header stays visible but drawer remains top-most */
  body.no-scroll .main-header {
    z-index: 10005;
  }

  /* Hide social bar when drawer is open so it doesn't block drawer items */
  body.no-scroll .mobile-social-bar {
    display: none !important;
  }

  .nav-menu-wrapper {
    position: fixed;
    top: 0;
    left: -280px;
    /* Start off-screen */
    width: 280px;
    height: 100vh;
    background: #fff;
    z-index: 10006;
    /* Drawer must be above everything */
    padding: 20px;
    display: flex !important;
    flex-direction: column;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.1);
    transition: left 0.3s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-menu-wrapper.menu-open {
    left: 0;
    /* Slide in */
  }

  /* Mobile Menu Overlay - now at body level, must be above header */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10004;
    /* Overlay below header and drawer */
    display: none;
  }

  .menu-overlay.active {
    display: block;
  }

  .primary-menu {
    flex-direction: column;
    width: 100%;
    margin-top: 20px;
  }

  .primary-menu li {
    width: 100%;
    border-bottom: 1px solid var(--border);
  }

  .primary-menu li a {
    padding: 15px 0;
    font-size: 1rem;
    display: block;
    color: var(--text-main);
  }

  .primary-menu li:last-child {
    border-bottom: none;
  }

  .primary-menu .menu-item-has-children > a {
    position: relative;
    padding-right: 28px !important;
  }

  .primary-menu .menu-item-has-children > a::after {
    content: "\25BC";
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.7rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    pointer-events: none;
  }

  .primary-menu .menu-item-has-children.open > a::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .primary-menu .sub-menu {
    display: block !important;
    position: static !important;
    padding-left: 18px;
    margin-top: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    visibility: hidden;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.25s ease, max-height 0.3s ease, visibility 0.25s ease;
  }

  .primary-menu .menu-item-has-children.open .sub-menu {
    visibility: visible;
    opacity: 1;
    max-height: 600px;
    margin-top: 4px;
  }

  .primary-menu .sub-menu li a {
    padding: 12px 0 12px 18px;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: 0;
  }

  .nav-search {
    width: 100%;
    margin: 15px 0;
  }

  .nav-search .search-form {
    width: 100%;
  }

  .nav-search .search-field {
    width: 100%;
  }

  .header-ad {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-live-card__content {
    padding: 18px;
    gap: 12px;
  }

  .hero-live-card__title {
    font-size: 1.15rem;
  }

  .hero-live-card__text {
    font-size: 0.88rem;
    line-height: 1.45;
  }

  .hero-live-card__cta {
    padding: 9px 12px;
    font-size: 0.72rem;
  }

  .single-article {
    padding: 18px;
  }

  .single-title {
    font-size: 1.55rem;
  }

  .single-thumbnail img {
    height: 260px;
  }

  .single-content {
    font-size: 0.98rem;
    line-height: 1.75;
  }

  .author-box {
    grid-template-columns: 1fr;
  }

  .single-content iframe {
    min-height: 220px;
  }

  .post-sidebar {
    padding: 16px;
  }

  .rec-thumb {
    width: 84px;
    height: 66px;
  }

  .mobile-social-bar {
    left: 8px;
    right: 8px;
    bottom: 8px;
    height: 54px;
    border-radius: 16px;
  }

  .share-count-box {
    width: 74px;
  }

  .share-buttons a {
    font-size: 0.92rem;
  }
}

@media (max-width: 600px) {
  .list-article {
    flex-direction: column;
  }

  .article-thumb {
    width: 100%;
    height: 200px;
  }
}

@media (max-width: 900px) {
  .news-section .section-header {
    background: var(--primary-dark) !important;
    padding: 10px 15px !important;
    border-bottom: none !important;
    margin-bottom: 0px !important;
  }

  .news-section .section-title {
    color: white !important;
    font-size: 1.1rem !important;
    padding-bottom: 0 !important;
    text-transform: capitalize !important;
    font-weight: 700 !important;
  }

  .news-section .section-title::after {
    display: none !important;
  }

  .news-section .view-all {
    display: none !important;
  }

  .latest-news-list {
    background: #fff;
    padding: 0;
  }

  .news-list-item {
    display: flex;
    padding: 12px 15px;
    border-bottom: 1px dashed #ddd;
    background: white;
    gap: 15px;
    align-items: center;
  }

  .news-item-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
  }

  .news-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }

  .news-item-content {
    flex: 1;
  }

  .news-item-title {
    margin: 0 0 5px;
    font-size: 0.95rem;
    line-height: 1.4;
    font-weight: 500;
  }

  .news-item-title a {
    color: #1a1a1a;
    text-decoration: none;
  }

  .news-item-meta {
    font-size: 0.7rem;
    color: #6c757d;
  }

  .hero-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    grid-template-rows: auto !important;
    display: grid !important;
    gap: 10px !important;
  }

  .hero-item:nth-child(n+3) {
    display: block !important;
  }

  .main-hero {
    grid-column: span 2 !important;
    height: 250px !important;
  }

  .sub-hero {
    grid-column: span 1 !important;
    height: 180px !important;
    display: block !important;
  }

  .hero-live-card {
    display: flex !important;
    grid-column: span 2 !important;
    grid-row: auto !important;
    min-height: 200px !important;
    height: auto !important;
  }

  .hero-item .hero-content {
    padding: 15px !important;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
  }

  .hero-title {
    font-size: 0.95rem !important;
    margin-bottom: 5px !important;
  }

  .main-hero .hero-title {
    font-size: 1.2rem !important;
  }
}

.mobile-social-bar {
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  width: auto;
  height: 58px;
  background: rgba(11, 19, 38, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: flex !important;
  align-items: center;
  z-index: 10001;
  box-shadow: 0 18px 44px rgba(11, 19, 38, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  overflow: hidden;
}

.share-count-box {
  width: 86px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  line-height: 1.1;
  background: linear-gradient(180deg, rgba(29, 78, 216, 0.26) 0%, rgba(15, 33, 71, 0.14) 100%);
}

.count-num {
  font-weight: 700;
  font-size: 0.95rem;
  color: #ffffff;
}

.count-label {
  font-size: 0.55rem;
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.68);
}

.share-buttons {
  flex: 1;
  display: flex;
  height: 100%;
}

.share-buttons a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1rem;
  position: relative;
}

.btn-fb {
  background: #1b4fbf;
}

.btn-wa {
  background: #25d366;
}

.btn-x {
  background: #000000;
}

.btn-sms {
  background: var(--secondary);
}

.btn-share {
  background: var(--primary-dark);
}

.share-buttons a + a {
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.back-to-top {
  position: fixed;
  right: 16px;
  bottom: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  box-shadow: var(--shadow-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s ease;
  z-index: 10002;
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--primary-dark);
}

html,
body {
  overflow-x: hidden !important;
  max-width: 100% !important;
}

/* =========================================================================
   HOMEPAGE LAYOUT
   ========================================================================= */
.homepage-layout {
  display: flex;
  gap: 36px;
  margin-top: 38px;
  align-items: flex-start;
}

.homepage-content {
  flex: 1;
  min-width: 0;
}

.homepage-sidebar {
  width: 320px;
  flex-shrink: 0;
  position: static;
}

@media (min-width: 1181px) {
  .homepage-layout {
    align-items: stretch;
  }

  .homepage-sidebar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 36px;
    margin-top: clamp(-190px, calc(-10vw - 50px), -160px);
  }

  .homepage-sidebar > .sidebar-widget:first-child {
    margin-top: 0;
  }
}

.homepage-content > .cat-section:first-child {
  margin-top: 2px;
}

.homepage-content > .cat-section,
.homepage-content > .dual-section-row,
.homepage-content > .must-watch-section,
.homepage-content > .inline-ad-banner {
  margin-bottom: 40px;
}

.inline-ad-banner {
  margin: 0 0 40px;
}

.wide-ad,
.square-ad {
  border-radius: var(--radius-lg);
}

.wide-ad {
  min-height: var(--ad-min-desktop, 90px);
}

.square-ad {
  min-height: var(--ad-min-desktop, 250px);
}

.square-ad--tall {
  min-height: var(--ad-min-desktop, 600px);
}

.ad-slot {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 24px; /* space for label */
}

.ad-label {
  position: absolute;
  top: 6px;
  left: 10px;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 2px 8px;
  border-radius: 999px;
  pointer-events: none;
}

.ad-slot--embed {
  background: transparent;
  border: none;
}

.ad-slot--image {
  background: #eef2f8;
  border: 1px solid #d8e0ec;
}

.ad-media-link,
.ad-media-image {
  display: block;
  width: 100%;
  height: 100%;
}

.ad-media-image {
  object-fit: cover;
}

@media (max-width: 768px) {
  .wide-ad {
    min-height: var(--ad-min-mobile, 60px);
  }
  .square-ad {
    min-height: var(--ad-min-mobile, 200px);
  }
  .square-ad--tall {
    min-height: var(--ad-min-mobile, 300px);
  }

  .header-container {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "logo menu"
      "search search";
    row-gap: 12px;
  }

  .main-navigation {
    grid-area: menu;
    justify-self: end;
  }

  .logo {
    grid-area: logo;
  }

  .header-search {
    grid-area: search;
    justify-self: end;
  }

  .header-cta {
    grid-area: search;
    justify-self: start;
  }
}

.must-watch-section {
  margin-bottom: 46px;
}

.must-watch-grid {
  gap: 20px;
}

.mw-raw-poster {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

/* =========================================================================
   BREAKING / TICKER BAR
   ========================================================================= */
.breaking-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid var(--border);
  border-left: 4px solid var(--primary-dark);
  margin: 18px 0 0;
  overflow: hidden;
  height: 42px;
  box-shadow: var(--shadow-sm);
}

.top-breaking .breaking-label {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 0 12px;
  height: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  letter-spacing: 0.5px;
  border-radius: 4px;
}

.top-breaking .breaking-ticker-wrap {
  flex: 1;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.top-breaking .breaking-ticker {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  width: max-content;
  animation: ticker-scroll 45s linear infinite;
  padding: 0 20px;
  align-items: center;
  height: 100%;
  will-change: transform;
}

.top-breaking .breaking-ticker a {
  color: #fff;
  font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  white-space: nowrap;
  text-decoration: none;
  opacity: 1;
  letter-spacing: 0.015em;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.top-breaking .breaking-ticker a::after {
  content: ' •';
  color: rgba(255, 255, 255, 0.4);
  margin-left: 40px;
}

.top-breaking .breaking-ticker a:last-child::after {
  content: '';
}

.top-breaking .breaking-ticker a:hover {
  opacity: 1;
  text-decoration: underline;
}

@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }

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

/* =========================================================================
   CATEGORY SECTION — shared
   ========================================================================= */
.cat-section {
  margin-bottom: 48px;
}

.cat-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
}

.cat-section-title {
  margin: 0;
  font-size: 1.1rem;
  font-family: var(--font-heading);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-main);
  letter-spacing: 0.08em;
}

.cat-section-title span {
  position: relative;
  padding-right: 14px;
}

.cat-section-title span::before {
  content: '';
  display: inline-block;
  width: 5px;
  height: 18px;
  background: var(--primary);
  margin-right: 10px;
  vertical-align: -2px;
  border-radius: 2px;
}

.cat-view-all {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}

.cat-view-all:hover {
  gap: 9px;
}

.cat-pill {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  letter-spacing: 0.08em;
}

.cat-card-date {
  font-size: 0.77rem;
  color: var(--text-muted);
  display: block;
  margin-top: 6px;
}

/* =========================================================================
   GRID-4 LAYOUT (1 lead + 3 small)
   ========================================================================= */
.cat-grid4 {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 18px;
}

.cat-card {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.cat-card:hover {
  box-shadow: var(--shadow-hover);
}

/* Lead card spans full height */
.cat-card--lead {
  grid-row: span 2;
  display: flex;
  flex-direction: column;
}

.cat-card--lead .cat-card-thumb {
  flex-shrink: 0;
}

.cat-card--lead .cat-card-thumb img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.cat-card--lead:hover .cat-card-thumb img {
  transform: scale(1.03);
}

.cat-card--lead .cat-card-body {
  padding: 18px;
  flex: 1;
}

.cat-card--lead .cat-card-title {
  font-size: 1.24rem;
}

/* Small cards: horizontal */
.cat-card--small {
  display: flex;
  flex-direction: row;
}

.cat-card--small .cat-card-thumb {
  width: 100px;
  flex-shrink: 0;
}

.cat-card--small .cat-card-thumb img {
  width: 100%;
  height: 100%;
  min-height: 85px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.cat-card--small:hover .cat-card-thumb img {
  transform: scale(1.05);
}

.cat-card--small .cat-card-body {
  padding: 12px 14px;
  flex: 1;
}

.cat-card--small .cat-card-title {
  font-size: 0.96rem;
  line-height: 1.32;
}

.cat-card-title {
  margin: 0;
  color: var(--text-main);
  line-height: 1.28;
}

.cat-card-title a {
  color: var(--text-main);
}

.cat-card-title a:hover {
  color: var(--primary);
}

/* =========================================================================
   GRID-3 LAYOUT (3 equal cards)
   ========================================================================= */
.cat-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.cat-card--equal {
  display: flex;
  flex-direction: column;
}

.cat-card--equal .cat-card-thumb img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}

.cat-card--equal:hover .cat-card-thumb img {
  transform: scale(1.04);
}

.cat-card--equal .cat-card-body {
  padding: 16px;
  flex: 1;
}

.cat-card--equal .cat-card-title {
  font-size: 1.08rem;
}

/* =========================================================================
   LIST LAYOUT
   ========================================================================= */
.cat-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cat-list-item {
  display: flex;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
  align-items: flex-start;
}

.cat-list-item:last-child {
  border-bottom: none;
}

.cat-list-thumb {
  flex-shrink: 0;
  width: 88px;
  height: 68px;
  overflow: hidden;
  display: block;
}

.cat-list-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.cat-list-item:hover .cat-list-thumb img {
  transform: scale(1.07);
}

.cat-list-body {
  flex: 1;
}

.cat-list-title {
  font-size: 1rem;
  margin: 0 0 4px;
  line-height: 1.32;
}

.cat-list-title a {
  color: var(--text-main);
}

.cat-list-title a:hover {
  color: var(--primary);
}

/* =========================================================================
   HOMEPAGE EDITORIAL COLUMNS
   ========================================================================= */
.home-news-columns-section {
  margin-bottom: 56px;
  padding: 4px 0 10px;
}

.home-news-columns-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.home-news-columns-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  background: #fff;
  border: 1px solid rgba(214, 223, 237, 0.88);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  padding: 24px;
}

.home-news-columns-grid--2 .home-news-column {
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}

.home-news-column {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(214, 223, 237, 0.88);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  padding: 18px;
}

@supports (grid-template-rows: subgrid) {
  .home-news-columns-grid {
    grid-template-rows: auto auto repeat(10, auto);
  }
  .home-news-column {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 12;
    gap: 0;
  }
  .home-news-column-title {
    grid-row: 1;
  }
  .home-news-column-lead {
    grid-row: 2;
    margin-bottom: 0;
  }
  .home-news-column-list {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: 3 / -1;
    row-gap: 0;
  }
  .home-news-column-list li {
    grid-row: span 1;
  }
}

.home-news-column-title {
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--text-main);
  font-family: var(--font-heading);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-news-column-title a {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--text-main);
}

.home-news-column-title a:hover {
  color: var(--primary);
}

.home-news-column-thumb {
  display: block;
  margin-bottom: 14px;
  overflow: hidden;
  background: #e5ebf4;
}

.home-news-column-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.home-news-column-lead:hover .home-news-column-thumb img {
  transform: scale(1.04);
}

.home-news-column-lead-title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0;
}

.home-news-column-lead-title a {
  color: var(--text-main);
}

.home-news-column-lead-title a:hover {
  color: var(--primary);
}

.home-news-column-excerpt {
  margin: 0 0 14px;
  color: #253044;
  font-size: 0.96rem;
  line-height: 1.45;
}

.home-news-column-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-news-column-list li {
  padding: 18px 0;
  border-top: 1px solid rgba(15, 33, 71, 0.14);
}

.home-news-column-list li::before {
  content: none;
}

.home-news-column-list li:hover::before {
  content: none;
}

.home-news-column-list a {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-width: 0;
  max-width: 100%;
  padding: 0;
  color: var(--text-main);
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 700;
  line-height: 1.4;
}

.home-news-link-dot {
  display: block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 0.35em;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(29, 78, 216, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-news-link-text {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}

.home-news-column-list a::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.2s ease;
}

.home-news-column-list a:hover {
  color: var(--primary);
}

.home-news-column-list a:hover .home-news-link-dot {
  transform: scale(0.86);
  box-shadow: 0 0 0 6px rgba(29, 78, 216, 0.16);
}

.home-news-column-list a:hover::after {
  width: 28px;
}

/* =========================================================================
   DUAL SECTION ROW (two category columns side-by-side)
   ========================================================================= */
.dual-section-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.dual-col .cat-section {
  margin-bottom: 0;
}

/* =========================================================================
   INLINE AD BANNER
   ========================================================================= */
.inline-ad-banner {
  margin: 10px 0 30px;
  text-align: center;
}

.wide-ad {
  width: 100%;
  height: 90px;
  background: #f0f2f5;
  border: 1px dashed #cbd5e1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 0.85rem;
}

/* =========================================================================
   SIDEBAR WIDGETS
   ========================================================================= */
.sidebar-widget {
  background: #fff;
  border: 1px solid var(--border);
  margin-bottom: 28px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.sidebar-widget-title {
  margin: 0;
  padding: 12px 16px;
  background: linear-gradient(90deg, #0b1731 0%, var(--primary-dark) 100%);
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  font-family: var(--font-heading);
  font-weight: 800;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.most-read-title {
  background: var(--primary);
}

/* Most Read */
.most-read-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.most-read-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  transition: background 0.2s;
}

.most-read-item:last-child {
  border-bottom: none;
}

.most-read-item:hover {
  background: #f4f7ff;
}

.mr-rank {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  background: var(--border);
  color: var(--text-main);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.mr-rank--top {
  background: var(--primary);
  color: #fff;
}

.mr-thumb {
  flex-shrink: 0;
  width: 58px;
  height: 46px;
  object-fit: cover;
  display: block;
}

.mr-body {
  flex: 1;
}

.mr-body h4 {
  margin: 0 0 4px;
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  font-family: var(--font-heading);
  color: var(--text-main);
}

.mr-body h4 a {
  color: var(--text-main);
}

.mr-body h4 a:hover {
  color: var(--primary);
}

.sidebar-ad {
  border: none;
  background: transparent;
  margin-bottom: 30px;
}

body.archive .sidebar-secondary > .sidebar-ad,
body.category .sidebar-secondary > .sidebar-ad,
body.tag .sidebar-secondary > .sidebar-ad,
body.tax .sidebar-secondary > .sidebar-ad {
  margin-bottom: 48px;
}

body.archive .sidebar-secondary > .sidebar-ad--tall,
body.category .sidebar-secondary > .sidebar-ad--tall,
body.tag .sidebar-secondary > .sidebar-ad--tall,
body.tax .sidebar-secondary > .sidebar-ad--tall {
  margin-top: 8px;
}

/* =========================================================================
   RESPONSIVE — HOMEPAGE
   ========================================================================= */
@media (max-width: 1024px) {
  .homepage-sidebar {
    width: 280px;
  }
}

@media (max-width: 900px) {
  .homepage-layout {
    flex-direction: column;
  }

  .homepage-sidebar {
    width: 100%;
    position: static;
  }

  .dual-section-row {
    grid-template-columns: 1fr;
  }

  .cat-grid4 {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 14px;
  }

  .cat-card--lead {
    grid-row: span 1;
  }

  .cat-card--lead .cat-card-thumb img {
    height: 200px;
  }

  /* Tablet: stack small cards so text doesn't get squeezed */
  .cat-card--small {
    flex-direction: column;
  }

  .cat-card--small .cat-card-thumb {
    width: 100%;
    height: 180px;
  }

  .cat-grid3 {
    grid-template-columns: 1fr 1fr;
  }

  .home-news-columns-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .graphic-news-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .grid-lead-thumb img {
    height: 200px;
  }

  .grid-lead-title {
    font-size: 1.14rem;
  }

  .breaking-bar {
    height: auto;
    min-height: 42px;
    flex-wrap: wrap;
  }

  .breaking-ticker-wrap {
    width: 100%;
  }

  .top-breaking .breaking-ticker {
    animation-duration: 45s;
  }

  .cat-grid4 {
    grid-template-columns: 1fr;
  }

  .cat-card--lead {
    grid-row: span 1;
  }

  .cat-card--small {
    flex-direction: column;
  }

  .cat-card--small .cat-card-thumb {
    width: 100%;
    height: 160px;
  }

  .cat-grid3 {
    grid-template-columns: 1fr;
  }

  .home-news-columns-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-news-column-title {
    font-size: 0.9rem;
  }

  .home-news-column-lead-title {
    font-size: 1.18rem;
  }

  .most-read-list {
    padding: 0;
  }
}



@media (max-width: 600px) {
  .top-bar-inner {
    flex-direction: column;
    padding: 8px 0;
    gap: 8px;
  }

  .top-left {
    width: 100%;
  }

  .top-right {
    margin-left: 0;
    justify-content: center;
    width: 100%;
  }

  .top-date {
    font-size: 0.75rem;
    opacity: 0.8;
  }

  .top-breaking {
    height: 34px;
  }
  
  .top-breaking .breaking-label {
    padding: 0 8px;
    font-size: 0.65rem;
  }
}

/* =========================================================================
   MUST WATCH SECTION
   ========================================================================= */
.must-watch-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
}

.must-watch-section {
  margin-bottom: 40px;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(214, 223, 237, 0.88);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
}

/* 3-column horizontal poster grid */
.must-watch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  align-items: start;
}

/* Each raw poster banner */
.mw-raw-poster {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mw-raw-poster:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.mw-card-inner {
  display: block;
  text-decoration: none;
}

/* Container for the image */
.mw-poster {
  width: 100%;
  position: relative;
  display: block;
}

/* The physical image tag - shows at natural proportions */
.mw-poster-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* Placeholder state when no must-watch posts exist yet */
.mw-poster--empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: #1a1a2e;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.85rem;
  text-align: center;
  padding: 30px 20px;
  min-height: 240px;
  height: 100%;
}

.mw-poster--empty i {
  font-size: 3rem;
  opacity: 0.25;
}

.mw-card--placeholder .mw-card-inner {
  cursor: default;
}

/* Responsive */
@media (max-width: 900px) {
  .must-watch-grid {
    gap: 12px;
  }

  .mw-title {
    font-size: 0.88rem;
  }

  .mw-play-btn {
    width: 46px;
    height: 46px;
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .must-watch-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* Contact page custom HTML block mobile fixes */
body.oyerepa-contact-page .main-content-layout {
  display: block;
}

body.oyerepa-contact-page .sidebar-secondary {
  display: none;
}

body.oyerepa-contact-page .single-page-main {
  padding: 48px 0 64px;
}

body.oyerepa-contact-page .single-article {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(24px, 4vw, 42px);
}

body.oyerepa-contact-page .single-header {
  margin-bottom: 22px;
}

body.oyerepa-contact-page .single-title {
  font-size: clamp(2.2rem, 4vw, 3.65rem);
  line-height: 1.02;
}

body.oyerepa-contact-page .single-content {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(380px, 1.08fr);
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
}

body.oyerepa-contact-page .contact-intro-section {
  grid-column: 1 / -1;
}

body.oyerepa-contact-page .contact-info-section {
  grid-column: 1;
}

body.oyerepa-contact-page .contact-form-section {
  grid-column: 2;
}

body.oyerepa-contact-page .contact-info-section,
body.oyerepa-contact-page .contact-form-section,
body.oyerepa-contact-page .contact-grid,
body.oyerepa-contact-page .contact-form-container {
  margin: 0 !important;
  padding: 0 !important;
}

body.oyerepa-contact-page .contact-grid,
body.oyerepa-contact-page .contact-form-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

body.oyerepa-contact-page .contact-card,
body.oyerepa-contact-page .contact-form {
  width: 100%;
  height: 100%;
  margin: 0 !important;
  border-radius: 8px !important;
}

body.oyerepa-contact-page .form-image {
  display: none;
}

body .contact-grid > *,
body .contact-form-container > *,
body .contact-item,
body .contact-info,
body .social-link,
body .contact-form,
body .form-image {
  min-width: 0;
}

body .contact-info p,
body .social-link span,
body .contact-form input,
body .contact-form textarea {
  overflow-wrap: anywhere;
  word-break: break-word;
}

@media (max-width: 900px) {
  body.oyerepa-contact-page .single-content {
    grid-template-columns: 1fr;
  }

  body.oyerepa-contact-page .contact-intro-section,
  body.oyerepa-contact-page .contact-info-section,
  body.oyerepa-contact-page .contact-form-section {
    grid-column: 1;
  }

  body .contact-grid,
  body .contact-form-container {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body .contact-card,
  body .contact-form {
    padding: 28px;
  }

  body .form-image {
    max-width: 100%;
  }
}

/* =========================================================================
   EDITORIAL HIERARCHY REFINEMENTS
   ========================================================================= */
body {
  font-size: var(--font-size-base, 17px);
  line-height: 1.76;
  background:
    linear-gradient(180deg, #eef3f9 0%, #f7f9fc 360px, #f3f6fb 100%);
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0;
}

.theme-container {
  max-width: 1440px;
}

.main-header {
  box-shadow: 0 1px 0 rgba(15, 33, 71, 0.04);
}

.header-container {
  min-height: 86px;
}

.logo h1 {
  font-size: 2.35rem;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.primary-menu {
  gap: 2px;
}

.primary-menu li a {
  padding: 31px 12px 27px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
}

.primary-menu li a:hover,
.primary-menu li.current-menu-item > a,
.primary-menu li.current_page_item > a,
.primary-menu li.current-menu-ancestor > a,
.primary-menu li.current_page_ancestor > a {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 700;
}

.primary-menu li.current-menu-item a,
.primary-menu li.current_page_item a {
  font-weight: 700;
}

.front-page-main {
  padding-top: 42px;
}

.hero-grid {
  grid-template-rows: repeat(2, minmax(270px, 1fr));
  gap: 22px;
  margin-bottom: 58px;
}

.hero-item {
  border-radius: 10px;
}

.hero-overlay {
  background:
    linear-gradient(to top, rgba(2, 8, 23, 0.96) 0%, rgba(2, 8, 23, 0.58) 46%, rgba(2, 8, 23, 0.05) 100%);
}

.hero-content {
  padding: 34px;
}

.sub-hero .hero-content {
  padding: 22px;
}

.cat-label,
.cat-pill {
  border-radius: 4px;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.main-hero .hero-title {
  max-width: 760px;
  font-size: clamp(2.6rem, 4vw, 4.25rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.sub-hero .hero-title {
  font-size: clamp(1.18rem, 1.5vw, 1.55rem);
  line-height: 1.14;
}

.hero-meta,
.article-meta,
.cat-card-date,
.archive-latest-meta,
.rec-date,
.pop-meta {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.homepage-layout {
  gap: 44px;
  margin-top: 46px;
}

.homepage-content > .cat-section,
.homepage-content > .dual-section-row,
.homepage-content > .must-watch-section,
.homepage-content > .inline-ad-banner {
  margin-bottom: 56px;
}

.cat-section {
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(214, 223, 237, 0.8);
  border-radius: 10px;
  box-shadow: var(--shadow-sm);
}

.cat-section-header,
.section-header {
  margin-bottom: 26px;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(15, 33, 71, 0.1);
}

.cat-section-title,
.section-title,
.archive-subtitle,
.sidebar-widget-title,
.widget-title {
  font-size: 1.22rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.cat-section-title span::before {
  width: 7px;
  height: 24px;
  margin-right: 12px;
}

.cat-view-all {
  font-weight: 900;
}

.cat-grid3,
.cat-grid4,
.category-grid,
.category-grid--compact {
  gap: 24px;
}

.cat-card,
.category-grid-item,
.archive-lead-card,
.archive-latest-rail,
.sidebar-widget,
.post-sidebar,
.widget {
  border-radius: 8px;
  border-color: rgba(180, 194, 214, 0.78);
}

.cat-card,
.category-grid-item,
.archive-lead-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.cat-card:hover,
.category-grid-item:hover,
.archive-lead-card:hover {
  transform: translateY(-3px);
  border-color: rgba(29, 78, 216, 0.28);
}

.cat-card--lead .cat-card-thumb img {
  height: 318px;
}

.cat-card--equal .cat-card-thumb img {
  height: 205px;
}

.cat-card--small .cat-card-thumb {
  width: 122px;
}

.cat-card--small .cat-card-thumb img {
  min-height: 104px;
}

.cat-card--lead .cat-card-body,
.cat-card--equal .cat-card-body,
.category-grid-content {
  padding: 20px;
}

.cat-card--lead .cat-card-title {
  font-size: 1.58rem;
  line-height: 1.12;
}

.cat-card--equal .cat-card-title,
.category-grid-item h2 {
  font-size: 1.22rem;
  line-height: 1.18;
}

.cat-card--small .cat-card-title,
.cat-list-title,
.mr-body h4,
.trend-body h4,
.rec-body h6,
.pop-body h4 {
  font-size: 0.98rem;
  font-weight: 800;
  line-height: 1.28;
}

.cat-list {
  gap: 14px;
}

.cat-list-item {
  gap: 18px;
  padding: 16px;
  background: #fff;
  border: 1px solid rgba(214, 223, 237, 0.86);
  border-radius: 8px;
}

.cat-list-thumb {
  width: 128px;
  height: 86px;
  border-radius: 6px;
}

.homepage-sidebar {
  width: 340px;
}

.sidebar-widget-title {
  padding: 14px 18px;
  font-size: 0.94rem;
}

.most-read-item,
.trending-item {
  gap: 12px;
  padding: 15px 16px;
  align-items: flex-start;
}

.mr-rank,
.trend-rank,
.pop-rank,
.archive-latest-rank {
  border-radius: 4px;
}

.mr-thumb,
.trend-thumb {
  width: 72px;
  height: 56px;
  border-radius: 6px;
}

.archive-section-header {
  padding: 26px 28px;
  background: #fff;
  border: 1px solid rgba(214, 223, 237, 0.9);
  border-radius: 8px;
}

.archive-section .section-title {
  font-size: clamp(2.15rem, 4vw, 3.5rem);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: none;
}

.archive-section .section-title::after {
  bottom: -16px;
  width: 74px;
  height: 4px;
}

.archive-lead-thumb img {
  height: 380px;
}

.archive-lead-content {
  padding: 24px 26px 26px;
}

.archive-lead-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.03;
}

.archive-latest-title {
  font-size: 1.08rem;
  line-height: 1.22;
}

.single-article {
  background: #fff;
  border: 1px solid rgba(214, 223, 237, 0.88);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
  backdrop-filter: none;
}

.single-title {
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.single-header {
  margin-bottom: 32px;
}

body.single .single-content {
  max-width: none;
}

.single-content {
  width: 100%;
  font-size: 1.12rem;
  line-height: 1.68;
}

body.page .single-article,
body.page .content-primary,
body.page .single-content {
  max-width: none;
}

body.page .single-content {
  margin-left: 0;
  margin-right: 0;
}

.single-content p {
  margin: 0 0 1.1em;
}

.single-content h2 {
  margin-top: 2em;
  font-size: 1.85rem;
  line-height: 1.16;
}

.single-content h3 {
  margin-top: 1.8em;
  font-size: 1.45rem;
  line-height: 1.22;
}

.single-content blockquote {
  margin: 1.8em 0;
  padding: 18px 24px;
  background: #f5f8fe;
  border-left-width: 6px;
  font-size: 1.16rem;
  line-height: 1.7;
}

.single-thumbnail {
  border-radius: 8px;
}

.post-sidebar {
  border-radius: 8px;
}

@media (max-width: 1024px) {
  .homepage-sidebar {
    width: 300px;
  }

  .main-hero .hero-title {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
  }
}

@media (max-width: 900px) {
  .cat-section {
    padding: 22px;
  }

  .homepage-layout {
    gap: 34px;
  }

  .cat-card--lead .cat-card-thumb img,
  .cat-card--equal .cat-card-thumb img {
    height: 230px;
  }
}

@media (max-width: 600px) {
  body {
    font-size: 16px;
  }

  .front-page-main {
    padding-top: 24px;
  }

  .hero-grid {
    gap: 14px;
    margin-bottom: 34px;
  }

  .hero-content,
  .sub-hero .hero-content {
    padding: 20px;
  }

  .main-hero .hero-title {
    font-size: 2rem;
    line-height: 1.04;
  }

  .sub-hero .hero-title {
    font-size: 1.22rem;
  }

  .cat-section {
    padding: 18px;
    margin-left: -6px;
    margin-right: -6px;
  }

  .cat-section-header,
  .section-header {
    align-items: flex-start;
    gap: 12px;
  }

  .cat-section-title,
  .section-title {
    font-size: 1.02rem;
  }

  .cat-list-item {
    padding: 12px;
  }

  .cat-list-thumb {
    width: 104px;
    height: 78px;
  }

  .archive-section-header {
    padding: 20px;
  }

  .archive-lead-title {
    font-size: 1.6rem;
  }

  .single-article {
    padding: 22px 18px;
  }

  .single-title {
    font-size: 2.1rem;
  }

  .single-content {
    font-size: 1.02rem;
    line-height: 1.76;
  }
}

@media (max-width: 600px) {
  body .contact-intro-section,
  body .contact-info-section,
  body .contact-form-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  body .contact-intro-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  body .contact-info-section,
  body .contact-form-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  body .contact-intro-section h2,
  body .form-section h2 {
    font-size: 26px;
  }

  body .contact-intro-section p,
  body .contact-info p {
    font-size: 15px;
  }

  body .contact-card,
  body .contact-form {
    padding: 22px 18px;
    border-radius: 18px;
  }

  body .contact-card h3 {
    font-size: 24px;
    margin-bottom: 24px;
  }

  body .contact-item {
    gap: 14px;
    margin-bottom: 22px;
  }

  body .contact-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    font-size: 18px;
  }

  body .social-links {
    grid-template-columns: 1fr;
  }

  body .social-link {
    padding: 12px 14px;
  }

  body .form-group input,
  body .form-group textarea,
  body .form-submit {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 600px) {
  .main-hero .hero-title {
    font-size: 2rem !important;
    line-height: 1.04 !important;
  }

  .sub-hero .hero-title,
  .hero-title {
    font-size: 1.18rem !important;
    line-height: 1.16 !important;
  }

  .hero-item .hero-content {
    padding: 20px !important;
  }
}

/* ========================================================================= */
/* HOMEPAGE HERO POLISH */
/* ========================================================================= */
.front-page-main {
  padding-top: 28px;
}

.hero-section {
  margin-bottom: 42px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 1fr) 340px;
  grid-template-rows: none;
  gap: 18px;
  height: clamp(340px, 30vw, 420px);
  margin-bottom: 0;
}

.hero-slider,
.hero-item,
.hero-side-card,
.hero-live-card {
  border-radius: 8px;
}

.hero-slider {
  overflow: hidden;
  box-shadow: 0 18px 46px rgba(10, 18, 38, 0.14);
}

.hero-slider .main-hero {
  height: 100% !important;
}

.hero-col-slider,
.hero-col-mid,
.hero-col-right {
  height: 100%;
}

.hero-col-mid,
.hero-col-right {
  gap: 18px;
}

.hero-side-card {
  box-shadow: 0 12px 28px rgba(10, 18, 38, 0.12);
}

.hero-overlay {
  background:
    linear-gradient(to top, rgba(2, 8, 23, 0.96) 0%, rgba(2, 8, 23, 0.68) 52%, rgba(2, 8, 23, 0.24) 100%);
}

.hero-side-card__body {
  background:
    linear-gradient(to top, rgba(2, 8, 23, 0.92) 0%, rgba(2, 8, 23, 0.56) 62%, rgba(2, 8, 23, 0) 100%);
}

.hero-content {
  padding: 30px;
}

.main-hero .hero-title {
  max-width: 560px;
  font-size: clamp(2rem, 2.55vw, 3rem);
  line-height: 1.06;
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.65);
}

.hero-side-card__body {
  padding: 18px;
}

.hero-side-card__cat {
  margin-bottom: 8px;
  color: #dbe7ff;
  background: rgba(29, 78, 216, 0.82);
}

.hero-side-card__title {
  font-size: clamp(0.95rem, 1vw, 1.08rem);
  line-height: 1.25;
  margin-bottom: 8px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.58);
}

.hero-side-card__date {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-live-card {
  position: relative;
  overflow: hidden;
  border: 8px solid #fff;
  box-shadow: 0 12px 28px rgba(10, 18, 38, 0.13);
}

.hero-live-card__content {
  justify-content: center;
  gap: 9px;
  padding: 20px;
}

.hero-live-card__badge {
  padding: 6px 10px;
  font-size: 0.66rem;
}

.hero-live-card__title {
  max-width: 15ch;
  font-size: clamp(1.1rem, 1.25vw, 1.35rem);
}

.hero-live-card__text {
  max-width: 30ch;
  font-size: 0.8rem;
  line-height: 1.35;
}

.hero-live-card__cta {
  margin-top: 4px;
  padding: 9px 14px;
  font-size: 0.72rem;
}

.hero-col-right > .hero-side-card {
  flex: 0.82 1 0;
}

.hero-col-right > .hero-live-card {
  flex: 0 0 calc((100% - 18px) / 2);
  min-height: 0;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 1fr) !important;
    height: auto;
  }

  .hero-col-slider,
  .hero-col-mid {
    height: 360px;
  }

  .hero-col-right {
    grid-column: 1 / -1;
    flex-direction: row;
    height: 220px;
  }

  .hero-col-right .hero-side-card,
  .hero-col-right .hero-live-card {
    flex: 1 1 0;
  }

  .hero-col-right .hero-live-card {
    min-height: 0 !important;
    height: 100% !important;
  }

  .main-hero .hero-title {
    font-size: clamp(1.85rem, 4vw, 2.55rem) !important;
  }
}

@media (max-width: 760px) {
  .theme-container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .hero-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .hero-col-slider {
    height: 360px;
  }

  .hero-col-mid,
  .hero-col-right {
    grid-column: auto !important;
    flex-direction: column !important;
    height: auto !important;
    gap: 14px;
  }

  .hero-side-card {
    flex: none;
    height: 190px;
  }

  .hero-live-card {
    flex: none !important;
    min-height: 250px !important;
  }

  .hero-content {
    padding: 22px;
  }

  .main-hero .hero-title {
    font-size: clamp(1.65rem, 8vw, 2.25rem) !important;
  }
}

/* Live stream feature card */
.hero-grid {
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.9fr) !important;
  grid-template-rows: clamp(340px, 30vw, 420px) clamp(430px, 48vw, 680px) !important;
  height: auto !important;
}

.hero-col-slider {
  grid-column: 1;
  grid-row: 1;
}

.hero-col-mid {
  grid-column: 2;
  grid-row: 1;
}

.hero-col-right {
  grid-column: 1 / -1;
  grid-row: 2;
  display: block !important;
  height: auto !important;
}

.hero-col-right > .hero-live-card {
  width: 100%;
  min-height: clamp(430px, 48vw, 680px) !important;
  height: 100% !important;
}

.hero-live-card {
  position: relative;
  display: flex !important;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(34px, 5.8vw, 82px);
  color: #ffffff;
  text-decoration: none;
  background:
    radial-gradient(circle at 87% 71%, rgba(255, 47, 101, 0.5) 0, rgba(255, 47, 101, 0.22) 15%, rgba(255, 47, 101, 0) 38%),
    radial-gradient(circle at 3% 1%, rgba(45, 129, 255, 0.25) 0, rgba(45, 129, 255, 0.08) 35%, transparent 55%),
    linear-gradient(112deg, #081429 0%, #0d1530 49%, #171229 100%) !important;
  border: 2px solid rgba(130, 146, 185, 0.2) !important;
  border-radius: 32px !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025), 0 28px 70px rgba(5, 12, 32, 0.24) !important;
}

.hero-live-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 88% 66%, rgba(255, 48, 103, 0.26), transparent 34%),
    linear-gradient(90deg, rgba(4, 15, 32, 0.9) 0%, rgba(8, 15, 37, 0.78) 52%, rgba(32, 12, 38, 0.72) 100%);
  opacity: 1 !important;
}

.hero-live-card::after {
  content: "";
  position: absolute;
  right: clamp(-150px, -8vw, -80px);
  top: 14%;
  width: min(58vw, 720px);
  aspect-ratio: 1;
  z-index: -1;
  opacity: 0.55;
  background:
    radial-gradient(circle, transparent 0 15%, rgba(255, 70, 120, 0.48) 15.2% 15.6%, transparent 15.9% 20%),
    radial-gradient(circle, transparent 0 23%, rgba(255, 70, 120, 0.38) 23.2% 23.55%, transparent 23.9% 29%),
    radial-gradient(circle, transparent 0 32%, rgba(255, 70, 120, 0.3) 32.2% 32.5%, transparent 32.8% 38%),
    radial-gradient(circle, transparent 0 43%, rgba(255, 70, 120, 0.24) 43.2% 43.45%, transparent 43.7% 49%),
    radial-gradient(circle, rgba(255, 70, 120, 0.26) 1px, transparent 1.7px);
  background-size: 100% 100%, 100% 100%, 100% 100%, 100% 100%, 18px 18px;
  border-radius: 50%;
  mask-image: radial-gradient(circle, #000 0 66%, transparent 74%);
}

.hero-live-card__glow {
  position: absolute;
  right: -5%;
  bottom: -12%;
  width: min(42vw, 560px);
  height: min(42vw, 560px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 46, 98, 0.52) 0%, rgba(255, 46, 98, 0.2) 31%, transparent 66%);
  filter: blur(2px);
  z-index: -1;
}

.hero-live-card__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  width: min(54%, 650px);
  padding: 0 !important;
  gap: 0 !important;
}

.hero-live-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  margin-bottom: clamp(54px, 5.5vw, 74px);
  padding: 20px 30px;
  border-radius: 999px;
  color: #f5f8ff;
  background: rgba(79, 48, 119, 0.36);
  border: 2px solid rgba(126, 91, 171, 0.32);
  box-shadow: inset 0 0 18px rgba(132, 79, 194, 0.18);
  font-size: clamp(1.05rem, 1.7vw, 1.55rem) !important;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-live-card__dot {
  width: clamp(25px, 2.2vw, 34px);
  height: clamp(25px, 2.2vw, 34px);
  border-radius: 50%;
  background: #ff426d;
  box-shadow: 0 0 0 8px rgba(255, 66, 109, 0.22), 0 0 24px rgba(255, 66, 109, 0.55);
  animation: heroLivePulse 1.4s infinite;
}

.hero-live-card__title {
  max-width: 10.8ch !important;
  margin: 0 0 clamp(34px, 4vw, 52px) !important;
  color: #ffffff;
  font-size: clamp(3.1rem, 6.5vw, 5.5rem) !important;
  line-height: 1.06 !important;
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 7px 22px rgba(0, 0, 0, 0.5);
}

.hero-live-card__title::after {
  content: "";
  display: block;
  width: clamp(118px, 11vw, 150px);
  height: 6px;
  margin-top: clamp(44px, 5vw, 58px);
  border-radius: 999px;
  background: linear-gradient(90deg, #ff2db5 0%, #206cff 50%, #ff38b8 100%);
}

.hero-live-card__text {
  max-width: 18ch !important;
  margin: 0 0 clamp(44px, 5vw, 64px) !important;
  color: rgba(225, 234, 249, 0.78);
  font-size: clamp(1.3rem, 2.55vw, 2.18rem) !important;
  line-height: 1.42 !important;
  font-weight: 700;
}

.hero-live-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  margin: 0 !important;
  padding: clamp(24px, 3vw, 34px) clamp(44px, 5.5vw, 66px);
  min-height: clamp(78px, 7vw, 104px);
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(110deg, #1769ff 0%, #8e2bff 58%, #c42bef 100%);
  box-shadow: 0 22px 48px rgba(60, 57, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.22);
  font-size: clamp(1.18rem, 2.1vw, 2rem) !important;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-live-card__arrow {
  position: relative;
  display: inline-block;
  width: clamp(34px, 4vw, 50px);
  height: 4px;
  border-radius: 999px;
  background: currentColor;
}

.hero-live-card__arrow::before,
.hero-live-card__arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  width: 22px;
  height: 4px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: right center;
}

.hero-live-card__arrow::before {
  transform: rotate(42deg);
}

.hero-live-card__arrow::after {
  transform: rotate(-42deg);
}

.hero-live-card__visual {
  position: absolute;
  right: clamp(8%, 11vw, 15%);
  top: 50%;
  width: clamp(190px, 25vw, 330px);
  aspect-ratio: 1;
  transform: translateY(-35%);
  z-index: 1;
  display: grid;
  place-items: center;
}

.hero-live-card__ring,
.hero-live-card__play {
  position: absolute;
  border-radius: 50%;
}

.hero-live-card__ring--outer {
  inset: 0;
  border: 3px solid rgba(255, 67, 118, 0.34);
}

.hero-live-card__ring--middle {
  inset: 12%;
  border: 3px solid rgba(255, 67, 118, 0.45);
}

.hero-live-card__ring--inner {
  inset: 22%;
  border: 3px solid rgba(255, 67, 118, 0.55);
  background: radial-gradient(circle, rgba(255, 68, 116, 0.48) 0%, rgba(255, 68, 116, 0.22) 58%, transparent 100%);
  box-shadow: 0 0 70px rgba(255, 45, 94, 0.55);
}

.hero-live-card__play {
  width: 0;
  height: 0;
  border-top: clamp(26px, 3.2vw, 42px) solid transparent;
  border-bottom: clamp(26px, 3.2vw, 42px) solid transparent;
  border-left: clamp(42px, 5vw, 70px) solid #ffffff;
  border-radius: 7px;
  transform: translateX(9%);
  filter: drop-shadow(0 7px 16px rgba(0, 0, 0, 0.18));
}

.hero-live-card:hover,
.hero-live-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035), 0 34px 82px rgba(5, 12, 32, 0.3) !important;
}

@media (max-width: 1180px) {
  .hero-grid {
    grid-template-columns: 1fr !important;
    grid-template-rows: 360px auto clamp(400px, 62vw, 610px) !important;
  }

  .hero-col-slider,
  .hero-col-mid,
  .hero-col-right {
    grid-column: 1 !important;
  }

  .hero-col-slider {
    grid-row: 1;
  }

  .hero-col-mid {
    grid-row: 2;
    height: 220px !important;
    flex-direction: row !important;
  }

  .hero-col-right {
    grid-row: 3;
  }
}

@media (max-width: 760px) {
  .hero-grid {
    grid-template-rows: 330px auto auto !important;
  }

  .hero-col-mid {
    height: auto !important;
    flex-direction: column !important;
  }

  .hero-live-card,
  .hero-col-right > .hero-live-card {
    min-height: 640px !important;
    padding: 34px 26px 280px;
    border-radius: 24px !important;
  }

  .hero-live-card__content {
    width: 100%;
  }

  .hero-live-card__badge {
    margin-bottom: 48px;
    padding: 16px 22px;
  }

  .hero-live-card__title {
    font-size: clamp(2.9rem, 13vw, 4.15rem) !important;
  }

  .hero-live-card__text {
    max-width: 20ch !important;
    font-size: clamp(1.15rem, 5.6vw, 1.55rem) !important;
  }

  .hero-live-card__cta {
    width: 100%;
    justify-content: center;
    padding-inline: 24px;
    font-size: clamp(1rem, 4.6vw, 1.35rem) !important;
  }

  .hero-live-card__visual {
    right: 50%;
    top: auto;
    bottom: 52px;
    width: 220px;
    transform: translateX(50%);
  }

  .hero-live-card::after {
    right: 50%;
    top: auto;
    bottom: -70px;
    width: 520px;
    transform: translateX(50%);
  }
}

/* AdSense auto-ad and homepage column stability fixes */
body.home .front-page-main > .google-auto-placed:first-child,
body.front-page .front-page-main > .google-auto-placed:first-child,
body.home .site-header + .google-auto-placed,
body.front-page .site-header + .google-auto-placed,
body.home > .google-auto-placed:first-of-type,
body.front-page > .google-auto-placed:first-of-type,
body.home .menu-overlay + .google-auto-placed,
body.front-page .menu-overlay + .google-auto-placed,
body .site-header .google-auto-placed,
body .site-header ins.adsbygoogle,
body .site-header .adsbygoogle,
body .top-bar .google-auto-placed,
body .top-bar ins.adsbygoogle,
body .top-bar .adsbygoogle,
body .main-header .google-auto-placed,
body .main-header ins.adsbygoogle,
body .main-header .adsbygoogle,
body > .google-auto-placed:first-child,
body > ins.adsbygoogle:first-child,
body .menu-overlay + .google-auto-placed,
body .site-header + .google-auto-placed {
  display: none !important;
  width: 0 !important;
  max-width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

body.home .homepage-content > .google-auto-placed,
body.front-page .homepage-content > .google-auto-placed,
body.home .homepage-content > ins.adsbygoogle,
body.front-page .homepage-content > ins.adsbygoogle,
body.home .homepage-content > .adsbygoogle,
body.front-page .homepage-content > .adsbygoogle,
body.home .home-news-columns-section .google-auto-placed,
body.front-page .home-news-columns-section .google-auto-placed,
body.home .home-news-columns-grid > .google-auto-placed,
body.front-page .home-news-columns-grid > .google-auto-placed,
body.home .home-news-column > .google-auto-placed,
body.front-page .home-news-column > .google-auto-placed,
body.home .cat-section > .google-auto-placed,
body.front-page .cat-section > .google-auto-placed,
body.home .cat-grid3 > .google-auto-placed,
body.front-page .cat-grid3 > .google-auto-placed,
body.home .cat-grid4 > .google-auto-placed,
body.front-page .cat-grid4 > .google-auto-placed,
body.home .dual-section-row > .google-auto-placed,
body.front-page .dual-section-row > .google-auto-placed,
body.home .more-news-section > .google-auto-placed,
body.front-page .more-news-section > .google-auto-placed,
body.home .more-news-grid > .google-auto-placed,
body.front-page .more-news-grid > .google-auto-placed,
body.home .homepage-content > div:not(.inline-ad-banner):not(.ad-slot) > ins.adsbygoogle,
body.front-page .homepage-content > div:not(.inline-ad-banner):not(.ad-slot) > ins.adsbygoogle,
body.home .cat-section > div:not(.ad-slot) > ins.adsbygoogle,
body.front-page .cat-section > div:not(.ad-slot) > ins.adsbygoogle {
  display: none !important;
  width: 0 !important;
  max-width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

.hero-section {
  clear: both;
  position: relative;
  z-index: 1;
}

.ad-slot,
.ad-slot ins.adsbygoogle,
.inline-ad-banner ins.adsbygoogle {
  max-width: 100%;
}

.ad-slot iframe,
.inline-ad-banner iframe {
  max-width: 100% !important;
}

.home-news-columns-grid {
  align-items: stretch;
}

.home-news-column {
  display: flex !important;
  flex-direction: column;
  min-height: 0;
}

.home-news-column-title,
.home-news-column-lead,
.home-news-column-list {
  grid-row: auto !important;
}

.home-news-column-lead {
  display: block;
  flex: 0 0 auto;
  margin-bottom: 10px;
}

.home-news-column-thumb,
.home-news-column-thumb img {
  display: block;
}

.home-news-column-list {
  flex: 1 1 auto;
  margin-top: 0 !important;
}

.home-news-column-list li {
  position: relative;
  min-height: 0;
}

.home-news-column-list a {
  display: grid !important;
  grid-template-columns: 8px minmax(0, 1fr);
  column-gap: 12px;
  align-items: start;
}

.home-news-link-dot {
  grid-column: 1;
  margin-top: 0.42em;
}

.home-news-link-text {
  grid-column: 2;
  min-width: 0;
}

.must-watch-section {
  position: relative;
  isolation: isolate;
}

.must-watch-section > .google-auto-placed,
.must-watch-section .must-watch-grid > .google-auto-placed,
.must-watch-section .adsbygoogle:not(.ad-slot .adsbygoogle) {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
}

.must-watch-grid {
  align-items: stretch !important;
  grid-auto-flow: row;
}

.must-watch-grid > .mw-raw-poster,
.must-watch-grid > .mw-card {
  min-width: 0;
}

.mw-raw-poster,
.mw-card-inner,
.mw-poster {
  min-height: 0;
}

.mw-card-inner {
  height: 100%;
}

.mw-poster {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e7edf6;
}

.mw-poster-img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100%;
  display: block !important;
  object-fit: contain !important;
  object-position: center center !important;
}

.mw-poster--empty {
  min-height: 100% !important;
}

@media (max-width: 600px) {
  .must-watch-grid {
    max-width: none !important;
  }
}

/* Compact hero live card */
@media (min-width: 1181px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 1fr) 340px !important;
    grid-template-rows: clamp(340px, 30vw, 420px) !important;
    height: clamp(340px, 30vw, 420px) !important;
  }

  .hero-col-slider {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  .hero-col-mid {
    grid-column: 2 !important;
    grid-row: 1 !important;
    height: 100% !important;
  }

  .hero-col-right {
    grid-column: 3 !important;
    grid-row: 1 !important;
    display: flex !important;
    height: 100% !important;
  }

  .hero-col-right > .hero-live-card {
    width: 100%;
    min-height: 200px !important;
    height: 200px !important;
    flex: 0 0 200px !important;
  }
}

.hero-col-right .hero-live-card {
  padding: 16px 18px !important;
  border-radius: 8px !important;
}

.hero-col-right .hero-live-card__content {
  width: 56%;
  justify-content: center;
}

.hero-col-right .hero-live-card__badge {
  display: none;
}

.hero-col-right .hero-live-card__dot {
  width: 10px;
  height: 10px;
  box-shadow: 0 0 0 4px rgba(255, 66, 109, 0.22), 0 0 16px rgba(255, 66, 109, 0.45);
}

.hero-col-right .hero-live-card__title {
  max-width: 8.8ch !important;
  margin-bottom: 18px !important;
  font-size: clamp(1.36rem, 1.55vw, 1.65rem) !important;
  line-height: 1.02 !important;
}

.hero-col-right .hero-live-card__title::after {
  width: 58px;
  height: 3px;
  margin-top: 12px;
}

.hero-col-right .hero-live-card__text {
  display: none;
}

.hero-col-right .hero-live-card__cta {
  gap: 12px;
  min-height: 0;
  padding: 12px 17px;
  font-size: 0.78rem !important;
  letter-spacing: 0.04em;
  white-space: nowrap;
  box-shadow: 0 14px 28px rgba(64, 54, 255, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.hero-col-right .hero-live-card__arrow {
  width: 24px;
  height: 3px;
}

.hero-col-right .hero-live-card__arrow::before,
.hero-col-right .hero-live-card__arrow::after {
  width: 13px;
  height: 3px;
}

.hero-col-right .hero-live-card__visual {
  right: 22px;
  top: 36%;
  width: 108px;
}

.hero-col-right .hero-live-card__ring--outer,
.hero-col-right .hero-live-card__ring--middle,
.hero-col-right .hero-live-card__ring--inner {
  border-width: 2px;
}

.hero-live-card__ring--outer {
  animation: heroLiveRingPulse 2.7s ease-in-out infinite;
}

.hero-live-card__ring--middle {
  animation: heroLiveRingPulse 2.7s ease-in-out 0.28s infinite;
}

.hero-live-card__ring--inner {
  animation: heroLiveInnerGlow 1.9s ease-in-out infinite;
}

.hero-col-right .hero-live-card__play {
  border-top-width: 15px;
  border-bottom-width: 15px;
  border-left-width: 24px;
  border-radius: 4px;
}

.hero-col-right .hero-live-card::after {
  right: -70px;
  top: -24px;
  width: 245px;
}

.hero-col-right .hero-live-card__glow {
  right: -76px;
  bottom: -60px;
  width: 240px;
  height: 240px;
}

@keyframes heroLiveRingPulse {
  0%,
  100% {
    opacity: 0.38;
    transform: scale(0.96);
    box-shadow: 0 0 0 rgba(255, 67, 118, 0);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.06);
    box-shadow: 0 0 22px rgba(255, 67, 118, 0.42);
  }
}

@keyframes heroLiveInnerGlow {
  0%,
  100% {
    opacity: 0.72;
    box-shadow: 0 0 28px rgba(255, 45, 94, 0.42);
  }

  50% {
    opacity: 1;
    box-shadow: 0 0 48px rgba(255, 45, 94, 0.72), 0 0 85px rgba(255, 45, 94, 0.28);
  }
}

/* Homepage responsive hardening */
.home-news-columns-grid {
  grid-template-rows: none !important;
}

.home-news-column {
  display: flex !important;
  flex-direction: column;
  height: auto !important;
  min-height: 0 !important;
  overflow: visible;
}

.home-news-column-title,
.home-news-column-lead,
.home-news-column-list,
.home-news-column-list li {
  grid-row: auto !important;
}

.home-news-column-list {
  display: block !important;
}

.home-news-column-list li {
  min-height: auto !important;
  padding: 14px 0;
}

.home-news-column-list a {
  overflow-wrap: anywhere;
  word-break: normal;
  line-height: 1.24 !important;
}

@media (max-width: 1180px) {
  .home-news-columns-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 18px;
  }
}

@media (max-width: 700px) {
  .home-news-columns-grid,
  .home-news-columns-grid--2 {
    grid-template-columns: 1fr !important;
    gap: 18px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .home-news-column {
    padding: 16px;
  }

  .home-news-column-lead-title {
    font-size: 1.12rem;
    line-height: 1.18;
  }

  .home-news-column-excerpt {
    font-size: 0.92rem;
    line-height: 1.38;
  }

  .home-news-column-list a {
    font-size: 1rem;
  }
}

@media (max-width: 760px) {
  .hero-col-right > .hero-live-card,
  .hero-live-card {
    min-height: 260px !important;
    height: auto !important;
    padding: 22px 20px !important;
    border-radius: 8px !important;
  }

  .hero-col-right .hero-live-card__content,
  .hero-live-card__content {
    width: min(100%, 22rem) !important;
    padding: 0 !important;
    gap: 10px;
  }

  .hero-col-right .hero-live-card__title,
  .hero-live-card__title {
    max-width: 11ch !important;
    margin-bottom: 10px !important;
    font-size: clamp(1.45rem, 8vw, 2.15rem) !important;
    line-height: 1.04 !important;
  }

  .hero-col-right .hero-live-card__text,
  .hero-live-card__text {
    display: block;
    max-width: 22ch !important;
    font-size: 0.92rem !important;
    line-height: 1.35 !important;
  }

  .hero-col-right .hero-live-card__cta,
  .hero-live-card__cta {
    width: auto;
    max-width: 100%;
    padding: 10px 14px !important;
    font-size: 0.78rem !important;
    white-space: normal;
  }

  .hero-col-right .hero-live-card__visual,
  .hero-live-card__visual {
    right: 18px !important;
    top: 50% !important;
    bottom: auto !important;
    width: 92px !important;
    transform: translateY(-50%) !important;
  }
}

@media (min-width: 701px) {
  .home-news-column-lead {
    min-height: clamp(300px, 27vw, 350px);
  }

  .home-news-column-lead-title a,
  .home-news-column-excerpt {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .home-news-column-lead-title a {
    -webkit-line-clamp: 4;
  }

  .home-news-column-excerpt {
    -webkit-line-clamp: 4;
  }
}

@supports (grid-template-rows: subgrid) {
  @media (min-width: 701px) {
    .home-news-columns-grid {
      grid-template-rows: auto auto auto auto !important;
    }

    .home-news-column {
      display: grid !important;
      grid-template-rows: subgrid !important;
      grid-row: span 4 !important;
    }

    .home-news-column-title {
      grid-row: 1 !important;
    }

    .home-news-column-lead {
      grid-row: 2 !important;
      min-height: 0;
    }

    .home-news-column-list {
      display: grid !important;
      grid-template-rows: subgrid !important;
      grid-row: 3 / -1 !important;
      align-self: start;
    }

    .home-news-column-list li {
      grid-row: span 1 !important;
    }
  }
}

@media (min-width: 701px) {
  .home-news-column-list li:first-child {
    min-height: clamp(86px, 8vw, 118px) !important;
  }

  .home-news-column-list li:nth-child(n+2) {
    padding-top: 14px;
  }
}

@media (min-width: 701px) and (max-width: 1180px) {
  .home-news-column-list li:first-child {
    min-height: clamp(72px, 10vw, 104px) !important;
  }
}

@media (max-width: 700px) {
  .home-news-column-list li:first-child {
    min-height: 0 !important;
  }
}

@media (min-width: 701px) {
  .home-news-columns-grid--2 .home-news-column-list {
    display: block !important;
  }

  .home-news-columns-grid--2 .home-news-column-list li:first-child {
    height: clamp(74px, 7vw, 88px) !important;
    min-height: clamp(74px, 7vw, 88px) !important;
    overflow: hidden;
  }

  .home-news-columns-grid--2 .home-news-link-text {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
  }
}

@media (max-width: 700px) {
  .home-news-columns-grid--2 .home-news-column-list li:first-child {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible;
  }

  .home-news-columns-grid--2 .home-news-link-text {
    display: block;
    overflow: visible;
  }
}

@media (max-width: 760px) {
  .hero-grid {
    grid-template-rows: auto auto auto !important;
    gap: 18px !important;
  }

  .hero-col-slider {
    height: auto !important;
    min-height: 0 !important;
  }

  .hero-slider {
    height: clamp(430px, 118vw, 520px) !important;
    min-height: 430px;
  }

  .hero-slider .swiper-wrapper,
  .hero-slider .swiper-slide,
  .hero-slider .main-hero {
    height: 100% !important;
  }

  .hero-col-mid {
    height: auto !important;
    gap: 18px !important;
  }

  .hero-side-card {
    height: clamp(210px, 56vw, 250px) !important;
    min-height: 210px;
  }

  .main-hero .hero-title {
    font-size: clamp(1.95rem, 8.4vw, 2.75rem) !important;
    line-height: 1.04 !important;
  }

  .hero-content {
    padding: 24px !important;
  }
}

@media (max-width: 420px) {
  .hero-slider {
    height: clamp(400px, 124vw, 470px) !important;
    min-height: 400px;
  }

  .main-hero .hero-title {
    font-size: clamp(1.72rem, 8.8vw, 2.25rem) !important;
  }

  .hero-content {
    padding: 20px !important;
  }
}

@media (max-width: 760px) {
  .site-header,
  .site-header.is-sticky,
  .site-header .top-bar,
  .site-header .main-header {
    position: relative;
    z-index: 2147483000 !important;
  }

  .site-header.is-sticky .main-header {
    position: sticky;
    top: 0;
  }

  body > .google-auto-placed[style*="position: fixed"],
  body > .google-auto-placed[style*="position:fixed"],
  body > ins.adsbygoogle[style*="position: fixed"],
  body > ins.adsbygoogle[style*="position:fixed"],
  body > .adsbygoogle[style*="position: fixed"],
  body > .adsbygoogle[style*="position:fixed"],
  body > div[style*="position: fixed"] > ins.adsbygoogle,
  body > div[style*="position:fixed"] > ins.adsbygoogle {
    display: none !important;
    width: 0 !important;
    max-width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}

@media (max-width: 700px) {
  .homepage-layout,
  .homepage-sidebar,
  .homepage-sidebar .sidebar-widget,
  .homepage-sidebar .sidebar-ad,
  .homepage-sidebar .ad-slot,
  .homepage-sidebar .wide-ad,
  .homepage-sidebar .square-ad {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .homepage-layout {
    display: block !important;
    overflow: hidden;
  }

  .homepage-sidebar {
    display: block !important;
    flex: none !important;
    padding: 0 !important;
  }

  .homepage-sidebar .sidebar-widget {
    border-radius: 8px;
    overflow: hidden;
  }

  .homepage-sidebar .sidebar-widget-title {
    padding: 12px 14px;
    font-size: 0.88rem;
    line-height: 1.2;
  }

  .most-read-list,
  .trending-list {
    width: 100%;
    padding: 0 !important;
    margin: 0 !important;
  }

  .most-read-item,
  .trending-item {
    display: grid !important;
    grid-template-columns: 30px 64px minmax(0, 1fr);
    gap: 10px !important;
    width: 100%;
    padding: 12px !important;
    align-items: start;
  }

  .mr-rank,
  .trend-rank {
    width: 28px;
    height: 28px;
    min-width: 28px;
  }

  .mr-thumb,
  .trend-thumb {
    width: 64px !important;
    height: 50px !important;
    max-width: 64px;
    border-radius: 6px;
  }

  .mr-body,
  .trend-body {
    min-width: 0;
    width: 100%;
  }

  .mr-body h4,
  .trend-body h4 {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .homepage-sidebar .ad-slot {
    display: block;
    min-height: 0;
  }

  .homepage-sidebar .square-ad,
  .homepage-sidebar .square-ad--tall {
    min-height: 220px !important;
  }

  .homepage-sidebar .ad-slot iframe,
  .homepage-sidebar .ad-slot ins.adsbygoogle,
  .homepage-sidebar .ad-slot .adsbygoogle,
  .homepage-sidebar .ad-media-link,
  .homepage-sidebar .ad-media-image {
    width: 100% !important;
    max-width: 100% !important;
  }
}
