:root {
  --red: #ed7110;
  --dark-red: #990000;
  --orange: #e65c00;
  --yellow: #f51818;
  --dark: #001342;
  --text: #222;
  --light-gray: #f4f4f4;
  --mid-gray: #e0e0e0;
  --border: #ddd;
  --white: #fff;
  --blue: #003b7a;
  --link-blue: #1a5276;
}

/* Dark Mode Variables */
[data-theme="dark"] {
  --text: #e0e0e0;
  --light-gray: #1a1a2e;
  --mid-gray: #2d2d44;
  --border: #3d3d5c;
  --white: #16213e;
  --dark: #0f0f1a;
}

[data-theme="dark"] body {
  background: #0f0f1a;
  color: #e0e0e0;
}

[data-theme="dark"] .header,
[data-theme="dark"] .top-bar,
[data-theme="dark"] .main-nav,
[data-theme="dark"] .section-box,
[data-theme="dark"] .sidebar-box,
[data-theme="dark"] .news-card,
[data-theme="dark"] .hero-side,
[data-theme="dark"] .list-item,
[data-theme="dark"] .banner-ad {
  background: #16213e;
}

[data-theme="dark"] .top-bar,
[data-theme="dark"] .main-nav {
  background: #0f0f1a;
}

[data-theme="dark"] .card-title,
[data-theme="dark"] .hero-side-body h3,
[data-theme="dark"] .list-item-body h4,
[data-theme="dark"] .sidebar-item-text,
[data-theme="dark"] .section-title-alt {
  color: #e0e0e0;
}

[data-theme="dark"] .footer-top {
  background: #0f0f1a;
}

[data-theme="dark"] .footer-bottom {
  background: #1a1a2e;
}

/* Theme Toggle Button */
.theme-toggle {
  background: rgba(237, 113, 16, 0.2);
  border: 1px solid rgba(237, 113, 16, 0.5);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: 10px;
}

.theme-toggle:hover {
  background: rgba(237, 113, 16, 0.4);
  transform: scale(1.1);
}

.theme-toggle i {
  font-size: 16px;
  color: var(--red);
}

[data-theme="dark"] .theme-toggle {
  background: rgba(255, 215, 0, 0.2);
  border-color: rgba(255, 215, 0, 0.5);
}

[data-theme="dark"] .theme-toggle i {
  color: #ffd700;
}

@media (max-width: 768px) {
  .theme-toggle {
    width: 36px;
    height: 36px;
  }
  
  .theme-toggle i {
    font-size: 14px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== HIDE GOOGLE TRANSLATE TOOLBAR ===== */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight {
  display: none !important;
}

body {
  top: 0 !important;
}

.skiptranslate {
  display: none !important;
}

/* Fix Google Translate iframe that pushes body down */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

iframe.goog-te-banner-frame {
  display: none !important;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Noto Sans Devanagari", sans-serif;
  background: #f0f0f0;
  color: var(--text);
  font-size: 17px;
}

body.menu-open {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--dark);
  color: #ccc;
  font-size: 12px;
  padding: 6px 0;
}

.top-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.top-bar a {
  color: #ccc;
  margin: 0 6px;
}

.top-bar a:hover {
  color: var(--yellow);
}

.top-date {
  font-size: 13px;
}

.top-location {
  font-size: 13px;
  color: #ccc;
}

.top-date i,
.top-location i {
  color: var(--yellow);
  margin-right: 6px;
}

.language-switcher {
  display: flex;
  align-items: center;
  gap: 8px;
}

.language-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #fff;
}

.language-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  padding: 5px 28px 5px 10px;
  font-size: 12px;
  cursor: pointer;
  outline: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #fff 50%),
    linear-gradient(135deg, #fff 50%, transparent 50%);
  background-position:
    calc(100% - 14px) 50%,
    calc(100% - 9px) 50%;
  background-size:
    5px 5px,
    5px 5px;
  background-repeat: no-repeat;
}

.language-select option {
  color: #000;
}

.language-select:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 2px rgba(245, 197, 24, 0.18);
}

/* ===== HEADER ===== */
.header {
  background: #fff;
  padding: 10px 0;
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-text {
  font-family: "Tiro Devanagari Hindi", serif;
  font-size: 38px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
  letter-spacing: -1px;
}

.logo-sub {
  font-size: 11px;
  color: #ffcc99;
  margin-top: 2px;
  letter-spacing: 1px;
}

.live-badge {
  background: #fff;
  color: var(--red);
  font-weight: 800;
  font-size: 14px;
  padding: 6px 14px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.live-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: blink 1s infinite;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.header-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-btns {
  display: flex;
  gap: 4px;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.2);
  color: #000;
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 3px 8px;
  border-radius: 3px;
  font-size: 11px;
  cursor: pointer;
}

.lang-btn.active {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
}

/* ===== NAV ===== */
.main-nav {
  background: var(--dark);
  border-bottom: 3px solid var(--red);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  display: flex;
  align-items: center;
  overflow-x: auto;
}

.nav-inner::-webkit-scrollbar {
  height: 0;
}

.nav-link {
  color: #ddd;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 6px;
  height: 2px;
  background: var(--yellow);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

.nav-link.active {
  color: #fff;
}

.nav-link.active::after {
  background: var(--red);
  transform: scaleX(1);
}

.nav-link.home {
  color: var(--yellow);
}

/* ===== BREAKING NEWS ===== */
.breaking-bar {
  background: red;
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.breaking-label {
  background-color: rgb(224, 11, 11);
  color: #ffff;
  font-weight: 800;
  font-size: 12px;
  padding: 10px 14px;
  white-space: nowrap;
  letter-spacing: 0.5px;
}

.breaking-ticker {
  flex: 1;
  overflow: hidden;
  padding: 8px 16px;
  font-size: 14px;
}

.ticker-wrap {
  display: flex;
  animation: ticker 20s linear infinite;
  gap: 60px;
}

.ticker-wrap span {
  white-space: nowrap;
}

.ticker-link {
  white-space: nowrap;
  color: #fff;
  text-decoration: none;
  transition:
    color 0.2s,
    text-decoration 0.2s;
}

.ticker-link:hover {
  color: #ffe066;
  text-decoration: underline;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== MAIN LAYOUT ===== */
.main-wrapper {
  max-width: 1300px;
  margin: 10px auto;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 20px;
}

/* ===== HERO / FEATURED ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-bottom: 14px;
}

.hero-main {
  grid-row: 1 / 3;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: #000;
}

.hero-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  opacity: 0.8;
}

.hero-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 30px 14px 14px;
  color: #fff;
}

.hero-tag {
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 2px;
  display: inline-block;
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}

.hero-caption h2 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}

.hero-side {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

.hero-side-img {
  height: 140px;
  object-fit: cover;
  width: 100%;
}

.hero-side-body {
  padding: 10px 12px;
}

.hero-side-body .tag {
  font-size: 10px;
  color: var(--red);
  font-weight: 700;
}

.hero-side-body h3 {
  font-size: 13px;
  font-weight: 700;
  margin-top: 4px;
  line-height: 1.4;
  color: var(--dark);
}

/* ===== SECTION HEADERS ===== */
.section-title {
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  padding: 7px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title .icon {
  font-size: 14px;
}

.section-title-alt {
  border-left: 4px solid var(--red);
  padding-left: 10px;
  font-size: 15px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ===== NEWS CARD ===== */
.news-card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.news-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.news-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.latest-news-slider {
  position: relative;
  overflow: hidden;
  padding: 0 44px;
}

.latest-news-track {
  display: flex;
  gap: 12px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.latest-news-card {
  flex: 0 0 calc(25% - 9px);
  min-width: calc(25% - 9px);
  height: 100%;
}

/* National slider — 3 per view */
#nationalTrack .latest-news-card {
  flex: 0 0 calc(33.333% - 8px);
  min-width: calc(33.333% - 8px);
}

/* Entertainment slider — 4 per view (same as default) */
#entTrack .latest-news-card {
  flex: 0 0 calc(25% - 9px);
  min-width: calc(25% - 9px);
}

.latest-news-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: rgba(0, 19, 66, 0.86);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.latest-news-arrow:hover {
  background: var(--red);
  transform: translateY(-50%) scale(1.05);
}

.latest-news-arrow-prev {
  left: 0;
}

.latest-news-arrow-next {
  right: 0;
}

.latest-news-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
}

.latest-news-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 999px;
  background: #d2d2d2;
  cursor: pointer;
  transition:
    width 0.25s ease,
    background 0.25s ease;
}

.latest-news-dot.active {
  width: 26px;
  background: var(--red);
}

.news-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}

.news-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}

.card-img {
  height: 140px;
  object-fit: cover;
  width: 100%;
  background: #ccc;
}

.card-body {
  padding: 10px 12px 12px;
}

.card-tag {
  font-size: 10px;
  color: var(--red);
  font-weight: 700;
  text-transform: uppercase;
}

.card-title {
  font-size: 15px;
  font-weight: 700;
  margin-top: 6px;
  line-height: 1.6;
  color: var(--dark);
}

.card-meta {
  font-size: 12px;
  color: #888;
  margin-top: 8px;
}

.card-excerpt {
  font-size: 13px;
  color: #555;
  margin-top: 8px;
  line-height: 1.7;
}

/* ===== LIST NEWS ===== */
.list-news {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.list-item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  background: #fff;
  padding: 10px 12px;
}

.list-item:last-child {
  border-bottom: none;
}

.list-item-img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 3px;
  background: #ddd;
}

.list-item-body {
  flex: 1;
}

.list-item-body h4 {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--dark);
}

.list-item-body .meta {
  font-size: 11px;
  color: #888;
  margin-top: 6px;
}

/* ===== BANNER AD ===== */
.banner-ad {
  background: #001342;
  color: #fff;
  text-align: center;
  padding: 14px;
  border-radius: 4px;
  margin-bottom: 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.banner-ad::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 60%
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0%,
  100% {
    transform: rotate(0deg);
  }

  50% {
    transform: rotate(180deg);
  }
}

.banner-ad .ad-title {
  font-size: 18px;
  font-weight: 800;
}

.banner-ad .ad-sub {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.8;
  margin-top: 4px;
}

.ph {
  background: linear-gradient(135deg, #e0e0e0, #c8c8c8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #aaa;
}

/* ===== SECTION WRAP ===== */
.section-box {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}

/* ===== SIDEBAR ===== */
.sidebar-box {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.07);
}

.sidebar-title {
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 7px 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.sidebar-list {
  padding: 8px 12px;
}

.sidebar-item {
  display: flex;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.sidebar-item:last-child {
  border-bottom: none;
}

.sidebar-item-img {
  width: 65px;
  height: 50px;
  object-fit: cover;
  border-radius: 3px;
  background: #ddd;
  flex-shrink: 0;
}

.sidebar-item-text {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.6;
  color: var(--dark);
}

.sidebar-item-meta {
  font-size: 11px;
  color: #888;
  margin-top: 4px;
}

/* Weather widget */
.weather-widget {
  padding: 12px;
}

.weather-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.weather-city {
  font-size: 13px;
  font-weight: 700;
}

.weather-temp {
  font-size: 32px;
  font-weight: 300;
  color: var(--red);
}

.weather-desc {
  font-size: 11px;
  color: #666;
}

.weather-row {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}

.weather-day {
  flex: 1;
  min-width: 40px;
  text-align: center;
  background: var(--light-gray);
  padding: 6px 4px;
  border-radius: 4px;
}

.weather-day .day {
  font-size: 10px;
  color: #888;
}

.weather-day .temp {
  font-size: 12px;
  font-weight: 700;
  margin-top: 3px;
}

.weather-day .ico {
  font-size: 16px;
  margin: 3px 0;
}

/* poll */
.poll-widget {
  padding: 12px;
}

.poll-q {
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  line-height: 1.6;
}

.poll-opt {
  margin-bottom: 10px;
}

.poll-opt label {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  cursor: pointer;
}

.poll-opt input {
  accent-color: var(--red);
}

.vote-btn {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 7px 20px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  margin-top: 6px;
  font-family: inherit;
}

/* calendar */
.calendar {
  padding: 8px 12px;
}

.cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.cal-header span {
  font-size: 13px;
  font-weight: 700;
}

.cal-nav {
  font-size: 14px;
  color: var(--red);
  cursor: pointer;
  font-weight: 700;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  text-align: center;
}

.cal-day-hdr {
  font-size: 10px;
  color: #888;
  padding: 3px;
  font-weight: 600;
}

.cal-day {
  font-size: 11px;
  padding: 4px 2px;
  border-radius: 3px;
  cursor: pointer;
}

.cal-day:hover {
  background: var(--light-gray);
}

.cal-day.today {
  background: var(--red);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
}

.cal-day.empty {
  color: transparent;
  cursor: default;
}

/* social follow */
.social-box {
  padding: 10px 12px;
}

.social-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.social-btn .count {
  margin-left: auto;
  font-size: 11px;
  opacity: 0.9;
}

.fb {
  background: #1877f2;
}

.tw {
  background: #1da1f2;
}

.yt {
  background: #ff0000;
}

.wa {
  background: #25d366;
}

.tg {
  background: #0088cc;
}

/* QR box */
.qr-box {
  padding: 12px;
  text-align: center;
}

.qr-placeholder {
  width: 100px;
  height: 100px;
  background: var(--dark);
  margin: 0 auto 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
}

.qr-box p {
  font-size: 11px;
  color: #666;
}

/* ===== SPORTS SECTION ===== */
.sports-bg {
  background: #001342;
  border-radius: 4px;
  padding: 14px;
  margin-bottom: 14px;
}

.sports-bg .section-title-alt {
  color: #fff;
  border-left-color: var(--yellow);
}

.score-card {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  padding: 12px;
  color: #fff;
  margin-bottom: 10px;
}

.score-header {
  font-size: 11px;
  color: #aac;
  margin-bottom: 8px;
}

.score-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.score-team {
  font-size: 13px;
  font-weight: 700;
}

.score-runs {
  font-size: 15px;
  font-weight: 800;
  color: var(--yellow);
}

.score-status {
  font-size: 11px;
  color: #88aacc;
  text-align: center;
  margin-top: 6px;
}

.sports-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ===== VIDEO SECTION ===== */
.video-thumb {
  position: relative;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
}

.video-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: rgba(204, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #fff;
  transition: transform 0.2s;
}

.video-thumb:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.15);
}

.video-title {
  font-size: 13px;
  font-weight: 600;
  margin-top: 10px;
  line-height: 1.6;
  color: var(--dark);
}

/* ===== FOOTER ===== */
.footer-top {
  background: #001342;
  color: #ed7110;
  padding: 30px 0 20px;
  margin-top: 20px;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
}

.footer .row {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 24px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 24px;
}

.footer-brand .logo-text {
  font-size: 28px;
  margin-bottom: 10px;
}

.footer-brand p {
  font-size: 15px;
  line-height: 1.7;
  color: #cdd4e3;
  text-align: justify;
}

.footer-col h4 {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--red);
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  padding: 4px 0;
}

.footer-col a {
  font-size: 13px;
  color: white;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: green;
}

.footer-btn-link {
  display: inline-block;
  background: #ed7110;
  color: #fff !important;
  padding: 7px 12px;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 2px;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.footer-btn-link:hover {
  background: #cf5f08;
  color: #fff !important;
  transform: translateY(-1px);
}

.footer-bottom {
  background: #111;
  color: #666;
  text-align: center;
  padding: 12px;
  font-size: 16px;
}

.footer-bottom p {
  margin: 0;
}

.contact-info {
  list-style: none;
  color: #cdd4e3;
  font-size: 14px;
  line-height: 1.8;
}

.contact-info li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 8px;
}

.footer-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.btn-footer {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.btn-footer:hover {
  background: #cf5f08;
  transform: translateY(-1px);
}

/* ===== SHOW MORE BTN ===== */
.show-more {
  display: block;
  text-align: center;
  background: var(--red);
  color: #fff;
  padding: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s;
}

.show-more:hover {
  background: var(--dark-red);
}

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25d366;
  color: #fff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 999;
  animation: pulse 2s infinite;
}

.wa-float i {
  font-size: 28px;
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.8);
  }
}

/* color image placeholders */
.ph-red {
  background: linear-gradient(135deg, #cc0000, #990000);
}

.ph-blue {
  background: linear-gradient(135deg, #003b7a, #00539c);
}

.ph-green {
  background: linear-gradient(135deg, #1a7a1a, #0d5c0d);
}

.ph-orange {
  background: linear-gradient(135deg, #e65c00, #b34700);
}

.ph-purple {
  background: linear-gradient(135deg, #5b2c6f, #3d1a54);
}

.ph-teal {
  background: linear-gradient(135deg, #0e6655, #0b5345);
}

@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .top-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .top-info {
    justify-content: center;
    gap: 8px 12px;
    text-align: center;
  }

  .language-switcher {
    justify-content: center;
    flex-wrap: wrap;
  }

  .main-wrapper {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .logo-img {
    height: 50px;
  }

  .logo-text {
    font-size: 28px;
  }

  .nav-link {
    padding: 10px 12px;
    font-size: 13px;
  }

  .section-title {
    font-size: 13px;
    padding: 8px 12px;
  }

  .news-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .news-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid-2 {
    grid-template-columns: 1fr;
  }

  .card-title {
    font-size: 14px;
  }

  .card-meta {
    font-size: 12px;
  }

  .card-body {
    padding: 10px 12px 12px;
  }

  .hero-caption {
    padding: 25px 12px 12px;
  }

  .hero-caption h2 {
    font-size: 16px;
  }

  .list-item {
    gap: 10px;
    padding: 10px 12px;
  }

  .list-item-img {
    width: 75px;
    height: 55px;
  }

  .list-item-body h4 {
    font-size: 13px;
  }

  .sidebar-box {
    margin-bottom: 12px;
  }

  .sidebar-item {
    gap: 8px;
    padding: 8px 0;
  }

  .sidebar-item-img {
    width: 65px;
    height: 50px;
  }

  .sidebar-item-text {
    font-size: 12px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .hero-side-body {
    padding: 10px 12px;
  }

  .hero-side-body h3 {
    font-size: 13px;
  }

  .weather-city {
    font-size: 13px;
  }

  .weather-temp {
    font-size: 30px;
  }

  .sports-cards {
    grid-template-columns: 1fr;
  }
}

.video-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.video-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay icon */
.video-overlay {
  position: absolute;
  top: 10px;
  left: 10px;
  color: #fff;
  font-size: 22px;
  background: rgba(0, 0, 0, 0.5);
  padding: 6px 10px;
  border-radius: 6px;
}

/* Optional hover effect */
.video-card:hover video {
  transform: scale(1.05);
  transition: 0.4s ease;
}

.video-card {
  height: 320px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  /* user click disable (optional) */
}

.logo-box {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a.logo-box:hover {
  opacity: 0.9;
  text-decoration: none;
}

/* Logo image */
.logo-img {
  height: 80px;
  width: auto;
  /* border-radius: 10px; */
  cursor: pointer;
}

/* Text */

.logo-sub {
  font-size: 12px;
  color: #555;
}

/* Mobile responsive */
@media (max-width: 576px) {
  body {
    font-size: 14px;
  }

  .main-wrapper {
    grid-template-columns: 1fr;
    padding: 0 8px;
    gap: 10px;
  }

  .logo-img {
    height: 40px;
  }

  .logo-text {
    font-size: 20px;
  }

  .logo-sub {
    font-size: 10px;
  }

  .nav-link {
    padding: 8px 10px;
    font-size: 12px;
  }

  .section-title {
    font-size: 11px;
    padding: 6px 10px;
  }

  .news-grid-4 {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .news-grid-3 {
    grid-template-columns: 1fr;
  }

  .news-grid-2 {
    grid-template-columns: 1fr;
  }

  .card-title {
    font-size: 13px;
    line-height: 1.5;
  }

  .card-meta {
    font-size: 11px;
  }

  .card-body {
    padding: 8px 10px 10px;
  }

  .card-img {
    height: 120px;
  }

  .hero-caption {
    padding: 15px 8px 8px;
  }

  .hero-caption h2 {
    font-size: 14px;
    line-height: 1.3;
  }

  .hero-tag {
    font-size: 9px;
  }

  .list-item {
    gap: 8px;
    padding: 8px 8px;
  }

  .list-item-img {
    width: 65px;
    height: 48px;
  }

  .list-item-body h4 {
    font-size: 12px;
    line-height: 1.5;
  }

  .list-item-body .meta {
    font-size: 10px;
  }

  .sidebar-box {
    margin-bottom: 10px;
  }

  .sidebar-title {
    font-size: 11px;
    padding: 6px 10px;
  }

  .sidebar-item {
    gap: 6px;
    padding: 6px 0;
  }

  .sidebar-item-img {
    width: 55px;
    height: 42px;
  }

  .sidebar-item-text {
    font-size: 11px;
    line-height: 1.5;
  }

  .sidebar-item-meta {
    font-size: 10px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .footer .row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-col h4 {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .footer-col a {
    font-size: 12px;
  }

  .hero-side-body {
    padding: 8px 10px;
  }

  .hero-side-body h3 {
    font-size: 12px;
  }

  .hero-side-body .tag {
    font-size: 9px;
  }

  .weather-widget {
    padding: 8px;
  }

  .weather-city {
    font-size: 12px;
  }

  .weather-temp {
    font-size: 26px;
  }

  .weather-day .temp {
    font-size: 11px;
  }

  .poll-q {
    font-size: 12px;
  }

  .poll-opt label {
    font-size: 12px;
  }

  .vote-btn {
    font-size: 11px;
    padding: 6px 16px;
  }

  .sports-cards {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .score-header {
    font-size: 10px;
  }

  .score-team {
    font-size: 12px;
  }

  .score-runs {
    font-size: 14px;
  }

  .video-title {
    font-size: 13px;
    line-height: 1.5;
  }

  .top-bar {
    font-size: 11px;
    padding: 4px 0;
  }

  .top-info {
    gap: 6px 10px;
  }

  .top-date {
    font-size: 11px;
  }

  .top-location {
    font-size: 11px;
  }

  .language-label {
    font-size: 11px;
  }

  .language-select {
    font-size: 11px;
    padding: 4px 24px 4px 8px;
  }

  .breaking-label {
    font-size: 11px;
    padding: 6px 10px;
  }

  .breaking-ticker {
    padding: 6px 10px;
    font-size: 13px;
  }
}

/* ===== CONTACT PAGE STYLES (moved from contact.html internal <style> tag) ===== */
/* ===== CONTACT PAGE STYLES ===== */
.contact-hero {
  background: linear-gradient(135deg, #001342 0%, #003b7a 60%, #ed7110 100%);
  padding: 60px 20px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-hero::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  background: rgba(237, 113, 16, 0.15);
  border-radius: 50%;
}
.contact-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
}
.contact-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}
.contact-hero p {
  font-size: 15px;
  opacity: 0.85;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
  position: relative;
  z-index: 1;
}
.contact-hero .hero-badge {
  display: inline-block;
  background: rgba(237, 113, 16, 0.3);
  border: 1px solid rgba(237, 113, 16, 0.6);
  color: #ffcc88;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}

/* ===== CONTACT WRAPPER ===== */
.contact-wrapper {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 30px;
  align-items: start;
}

/* ===== INFO CARDS ===== */
.contact-info-col {
}
.contact-info-title {
  font-size: 20px;
  font-weight: 800;
  color: #001342;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 3px solid #ed7110;
  display: inline-block;
}
.info-card {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}
.info-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
}
.info-icon.orange {
  background: linear-gradient(135deg, #ed7110, #c95e00);
}
.info-icon.blue {
  background: linear-gradient(135deg, #003b7a, #001342);
}
.info-icon.green {
  background: linear-gradient(135deg, #1a7a1a, #0d5c0d);
}
.info-icon.purple {
  background: linear-gradient(135deg, #5b2c6f, #3d1a54);
}
.info-card-body h4 {
  font-size: 14px;
  font-weight: 700;
  color: #001342;
  margin-bottom: 4px;
}
.info-card-body p,
.info-card-body a {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  text-decoration: none;
}
.info-card-body a:hover {
  color: #ed7110;
}

/* Social links */
.social-contact {
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  margin-bottom: 16px;
}
.social-contact h4 {
  font-size: 14px;
  font-weight: 700;
  color: #001342;
  margin-bottom: 14px;
}
.social-links-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.social-link-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition:
    opacity 0.2s,
    transform 0.2s;
}
.social-link-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.social-link-btn.fb {
  background: #1877f2;
}
.social-link-btn.tw {
  background: #1da1f2;
}
.social-link-btn.yt {
  background: #ff0000;
}
.social-link-btn.wa {
  background: #25d366;
}

/* ===== CONTACT FORM ===== */
.contact-form-col {
}
.form-card {
  background: #fff;
  border-radius: 14px;
  padding: 36px 32px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.09);
}
.form-card h2 {
  font-size: 22px;
  font-weight: 800;
  color: #001342;
  margin-bottom: 6px;
}
.form-card .form-subtitle {
  font-size: 13px;
  color: #777;
  margin-bottom: 28px;
  line-height: 1.6;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #333;
  margin-bottom: 6px;
}
.form-group label span {
  color: #ed7110;
}
.form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e0e0e0;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  color: #333;
  background: #fafafa;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
  outline: none;
}
.form-control:focus {
  border-color: #ed7110;
  box-shadow: 0 0 0 3px rgba(237, 113, 16, 0.12);
  background: #fff;
}
textarea.form-control {
  resize: vertical;
  min-height: 130px;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23666' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}
.submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #ed7110, #c95e00);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}
.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(237, 113, 16, 0.35);
}
.form-note {
  font-size: 11px;
  color: #999;
  text-align: center;
  margin-top: 12px;
}

/* ===== MAP SECTION ===== */
.map-section {
  max-width: 1200px;
  margin: 0 auto 40px;
  padding: 0 16px;
}
.map-section h3 {
  font-size: 18px;
  font-weight: 800;
  color: #001342;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.map-section h3 i {
  color: #ed7110;
}
.map-frame {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  height: 320px;
}

/* ===== SUCCESS MESSAGE ===== */
.success-msg {
  display: none;
  background: linear-gradient(135deg, #d4edda, #c3e6cb);
  border: 1px solid #28a745;
  border-radius: 8px;
  padding: 14px 18px;
  color: #155724;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
  align-items: center;
  gap: 10px;
}
.success-msg.show {
  display: flex;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 576px) {
  .form-card {
    padding: 24px 18px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .social-links-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-hero {
    padding: 40px 16px;
  }
}

/* ===== REPORTER PAGE PHOTO ===== */
.reporter-photo-card {
  padding: 0;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}
.reporter-photo-card img {
  width: 100%;
  display: block;
}

.sidebar-item-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* ya cover */
}

.card-img {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* 🔥 important */
  display: block;
}

/* ===== WRAPPER ===== */
.ad-slider-wrap {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

/* ===== HEADER ===== */
.ad-slider-header {
  padding: 12px 16px;
  font-weight: 600;
  background: linear-gradient(45deg, #ff512f, #dd2476);
  color: #fff;
  font-size: 15px;
}

.ad-slider-header i {
  margin-right: 6px;
}

/* ===== SLIDER BOX ===== */
.ad-slider-box {
  position: relative;
  overflow: hidden;
}

/* ===== SLIDES CONTAINER ===== */
.ad-slides-container {
  display: flex;
  transition: transform 0.6s ease-in-out;
  width: 100%;
}

/* ===== SINGLE SLIDE ===== */
.ad-slide {
  min-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px;
  position: relative;
  overflow: hidden;
  border-radius: 0 0 14px 14px;
}

/* ===== BACKGROUND VARIATIONS ===== */
.ad-slide-1 {
  background: linear-gradient(135deg, #667eea, #764ba2);
}

.ad-slide-2 {
  background: linear-gradient(135deg, #ff9966, #ff5e62);
}

.ad-slide-3 {
  background: linear-gradient(135deg, #00c9ff, #92fe9d);
}

.ad-slide-4 {
  background: linear-gradient(135deg, #f7971e, #ffd200);
}

/* ===== LEFT SIDE ===== */
.ad-slide-left {
  width: 60%;
  color: #fff;
}

.ad-badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  display: inline-block;
  margin-bottom: 8px;
}

.ad-slide-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  line-height: 1.3;
}

.ad-slide-sub {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 10px;
}

.ad-slide-icons span {
  font-size: 12px;
  margin-right: 10px;
}

/* ===== RIGHT SIDE ===== */
.ad-slide-right {
  width: 40%;
  text-align: center;
}

/* PHONE MOCKUP */
.ad-phone-mockup {
  width: 70px;
  height: 120px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  margin: auto;
  margin-bottom: 10px;
}

/* CTA BUTTON */
.ad-cta-btn {
  display: inline-block;
  padding: 7px 14px;
  background: #fff;
  color: #333;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.ad-cta-btn:hover {
  transform: scale(1.05);
  background: #000;
  color: #fff;
}

/* ===== ARROWS ===== */
.ad-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0, 0, 0, 0.4);
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}

.ad-arrow-prev {
  left: 10px;
}

.ad-arrow-next {
  right: 10px;
}

.ad-arrow:hover {
  background: #000;
}

/* ===== DOTS ===== */
.ad-dots {
  text-align: center;
}

.ad-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 4px;
  cursor: pointer;
  transition: 0.3s;
}

.ad-dot.active {
  background: #333;
  width: 18px;
  border-radius: 10px;
}

/* ===== PROGRESS BAR ===== */
.ad-progress-bar {
  width: 100%;
  height: 3px;
  background: #eee;
}

.ad-progress-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, #ff512f, #dd2476);
  transition: width 4s linear;
}

/* ===== BACKGROUND CIRCLES ===== */
.ad-bg-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.ad-circle-1 {
  width: 120px;
  height: 120px;
  top: -40px;
  right: -40px;
}

.ad-circle-2 {
  width: 80px;
  height: 80px;
  bottom: -30px;
  left: -30px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .ad-slide {
    flex-direction: column;
    text-align: center;
  }

  .ad-slide-left,
  .ad-slide-right {
    width: 100%;
  }

  .ad-phone-mockup {
    margin-top: 10px;
  }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .ad-slide {
    flex-direction: column;
    text-align: center;
    padding: 16px 12px;
  }

  .ad-slide-left,
  .ad-slide-right {
    width: 100%;
  }

  .ad-slide-left {
    margin-bottom: 10px;
  }

  .ad-slide-title {
    font-size: 17px;
    line-height: 1.4;
  }

  .ad-slide-sub {
    font-size: 12px;
  }

  .ad-slide-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
  }

  .ad-slide-icons span {
    font-size: 11px;
    margin: 0;
  }

  .ad-phone-mockup {
    width: 60px;
    height: 100px;
    font-size: 22px;
    margin-bottom: 8px;
  }

  .ad-cta-btn {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* arrows hide (optional clean UI) */
  .ad-arrow {
    display: none;
  }

  /* dots bigger for touch */
  .ad-dot {
    width: 10px;
    height: 10px;
  }

  .ad-dot.active {
    width: 20px;
  }
}

/* ===== EXTRA SMALL DEVICES ===== */
@media (max-width: 480px) {
  .ad-slide-title {
    font-size: 15px;
  }

  .ad-slide-sub {
    font-size: 11px;
  }

  .ad-badge {
    font-size: 10px;
    padding: 3px 8px;
  }

  .ad-phone-mockup {
    width: 50px;
    height: 90px;
  }

  .ad-cta-btn {
    font-size: 11px;
    padding: 5px 10px;
  }
}

/* ===== GLOBAL FIX ===== */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== HERO GRID ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 12px;
}

.hero-main {
  grid-row: span 2;
}

.card-img1 {
  position: relative;
  width: 100%;
  height: 410px;
  overflow: hidden;
  border-radius: 10px;
}

.card-img1 iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== NEWS GRIDS ===== */
.news-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.news-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.news-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* ===== LIST NEWS ===== */
.list-item {
  display: flex;
  gap: 10px;
  padding: 10px;
}

.list-item-img {
  width: 80px;
  height: 60px;
  flex-shrink: 0;
  overflow: hidden;
}

.list-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== SPORTS ===== */
.sports-cards {
  display: flex;
  gap: 10px;
}

.score-card {
  flex: 1;
}

/* ================= MOBILE ================= */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-main {
    grid-row: auto;
  }

  .card-img1 {
    height: 220px;
  }

  .news-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .sports-cards {
    flex-direction: column;
  }
}

/* ================= SMALL MOBILE ================= */
@media (max-width: 576px) {
  /* HERO */
  .card-img1 {
    height: 200px;
  }

  .hero-caption h2 {
    font-size: 16px;
  }

  /* ALL GRIDS -> SINGLE COLUMN */
  .news-grid-4,
  .news-grid-3,
  .news-grid-2 {
    grid-template-columns: 1fr;
  }

  /* CARD */
  .news-card {
    border-radius: 8px;
  }

  .card-body {
    padding: 8px;
  }

  .card-title {
    font-size: 14px;
    line-height: 1.4;
  }

  .card-tag {
    font-size: 11px;
  }

  .card-meta {
    font-size: 10px;
  }

  /* LIST */
  .list-item {
    flex-direction: row;
  }

  .list-item-img {
    width: 70px;
    height: 55px;
  }

  .list-item-body h4 {
    font-size: 13px;
  }

  /* ENTERTAINMENT SIDE CARD FIX */
  .news-card[style*="flex-direction:row"] {
    flex-direction: column !important;
  }

  .news-card[style*="flex-direction:row"] .card-img {
    width: 100% !important;
    height: 140px !important;
  }

  /* SPORTS */
  .score-card {
    font-size: 13px;
  }

  /* BANNER */
  .banner-ad {
    text-align: center;
    padding: 10px;
  }

  .ad-title {
    font-size: 14px;
  }

  .ad-sub {
    font-size: 12px;
  }
}

/* ===== EXTRA SMALL ===== */
@media (max-width: 400px) {
  .hero-caption h2 {
    font-size: 14px;
  }

  .card-title {
    font-size: 13px;
  }

  .list-item-body h4 {
    font-size: 12px;
  }
}

.footer-brand {
  max-width: 320px;
}

/* Logo */
.footer-logo {
  width: 190px;
  margin-bottom: 12px;
  border-radius: 15px;
}

/* About Text */
.footer-about {
  font-size: 14px;
  line-height: 1.7;
  color: #ccc;
  margin-bottom: 15px;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #fff;
  font-size: 14px;
  transition: 0.3s;
}

/* Hover Colors */
.footer-social a:nth-child(1):hover {
  background: #1877f2;
  /* Facebook */
}

.footer-social a:nth-child(2):hover {
  background: #1da1f2;
  /* Twitter */
}

.footer-social a:nth-child(3):hover {
  background: #e4405f;
  /* Instagram */
}

.footer-social a:nth-child(4):hover {
  background: hsl(0, 100%, 50%);
  /* YouTube */
}

.footer-bottom a {
  color: yellow;
}

/* === HAMBURGER BUTTON === */
.hamburger-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === MOBILE MENU === */
.mobile-menu {
  display: none;
  max-height: none;
  overflow-y: auto;
  transition: transform 0.35s ease;
  background: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  width: min(84vw, 320px);
  height: 100vh;
  z-index: 999;
  transform: translateX(-100%);
  border-right: 1px solid #eee;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.25s ease,
    visibility 0.25s ease;
  z-index: 998;
}

.mobile-menu-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-top {
  padding: 14px 16px 10px;
  border-bottom: 1px solid #f0f0f0;
  background: linear-gradient(135deg, #fff, #fafafa);
}

.mobile-menu-title {
  display: block;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 10px;
}

.mobile-menu-lang {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.mobile-nav-links {
  padding: 6px 0;
}

.mobile-nav-link {
  display: block;
  padding: 12px 16px;
  font-size: 14px;
  color: #333;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
  text-decoration: none;
}

.mobile-nav-link:last-child {
  border-bottom: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: #fdf0ef;
  color: #c0392b;
  font-weight: 500;
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hamburger-btn {
    display: flex;
  }

  .hamburger-btn span {
    background: #ed7110;
  }

  .mobile-menu {
    display: block;
  }

  .footer .row {
    grid-template-columns: 1fr 1fr;
  }

  .mobile-menu.open {
    transform: translateX(0);
  }

  .main-nav {
    display: none !important;
  }

  .header-right .lang-btns {
    display: none;
  }
}

@media (min-width: 769px) {
  .hamburger-btn {
    display: none !important;
  }

  .mobile-menu {
    display: none !important;
  }

  .mobile-menu-backdrop {
    display: none !important;
  }
}

/* //breaking-newz-blinking */
.blink-text {
  animation: blink 1s infinite;
  color: rgb(243, 240, 240);
  font-weight: bold;
  text-shadow: 0 0 8px rgb(243, 240, 240);
}

/* --swiper-slider--- */

/* ===== RESPONSIVE POLISH ===== */
.content,
.sidebar,
.hero-main,
.hero-side,
.section-box,
.sidebar-box,
.news-card,
.list-item-body,
.ad-slide-left,
.ad-slide-right {
  min-width: 0;
}

.main-wrapper {
  grid-template-columns: minmax(0, 1fr) 300px;
  align-items: start;
}

.content {
  min-width: 0;
}

.sidebar {
  min-width: 0;
}

.hero-caption h2 {
  font-size: clamp(1rem, 1.1vw + 0.8rem, 1.45rem);
}

.card-title {
  word-break: break-word;
}

.sidebar-item-text,
.list-item-body h4 {
  word-break: break-word;
}

.footer-bottom p {
  font-size: 14px;
  line-height: 1.6;
}

@media (max-width: 1199px) {
  .main-wrapper {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 16px;
  }

  .hero-grid {
    gap: 16px;
  }

  .top-bar-inner,
  .header-inner,
  .nav-inner,
  .footer .container {
    padding-left: 14px;
    padding-right: 14px;
  }
}

@media (max-width: 991px) {
  .top-bar-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .top-info,
  .language-switcher {
    justify-content: center;
  }

  .header {
    padding: 8px 0;
  }

  .header-inner {
    gap: 12px;
  }

  .logo-img {
    height: 64px;
  }

  .main-wrapper {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sidebar {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .sidebar-box {
    margin-bottom: 0;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-main {
    grid-row: auto;
  }

  .card-img1 {
    height: 280px;
  }

  .news-grid-4,
  .news-grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-grid-2 {
    grid-template-columns: 1fr;
  }

  .sports-cards {
    grid-template-columns: 1fr;
  }

  .footer .row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 15px;
  }

  .top-bar {
    padding: 8px 0;
  }

  .top-info {
    gap: 6px 12px;
  }

  .top-date,
  .top-location,
  .language-label,
  .language-select {
    font-size: 12px;
  }

  .header-inner {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  .logo-img {
    height: 52px;
  }

  .breaking-bar {
    align-items: stretch;
  }

  .breaking-label {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 128px;
    padding: 8px 10px;
  }

  .breaking-ticker {
    padding: 8px 10px;
    font-size: 13px;
  }

  .ticker-wrap {
    gap: 36px;
    animation: ticker 8s linear infinite;
  }

  .main-wrapper {
    margin: 8px auto;
    padding: 0 8px;
  }

  .sidebar {
    grid-template-columns: 1fr;
  }

  .section-title,
  .sidebar-title {
    padding: 8px 10px;
  }

  .card-img1 {
    height: 240px;
  }

  .hero-caption {
    padding: 20px 12px 12px;
  }

  .news-grid-4,
  .news-grid-3,
  .news-grid-2 {
    gap: 10px;
  }

  .latest-news-slider {
    padding: 0 36px;
  }

  .latest-news-card {
    flex-basis: calc(50% - 6px);
    min-width: calc(50% - 6px);
  }

  #nationalTrack .latest-news-card {
    flex-basis: calc(50% - 6px);
    min-width: calc(50% - 6px);
  }

  #entTrack .latest-news-card {
    flex-basis: calc(50% - 6px);
    min-width: calc(50% - 6px);
  }

  .weather-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .weather-day {
    min-width: 0;
  }

  .social-btn {
    font-size: 13px;
  }

  .footer .row {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    max-width: none;
  }
}

@media (max-width: 575px) {
  .top-info {
    flex-direction: column;
  }

  .language-switcher {
    flex-wrap: wrap;
  }

  .main-wrapper {
    gap: 12px;
  }

  .card-img1 {
    height: 210px;
  }

  .hero-caption h2 {
    font-size: 16px;
    line-height: 1.35;
  }

  .news-grid-4,
  .news-grid-3,
  .news-grid-2 {
    grid-template-columns: 1fr;
  }

  .latest-news-slider {
    padding: 0;
  }

  .latest-news-arrow {
    display: none;
  }

  .latest-news-card {
    flex-basis: 100%;
    min-width: 100%;
  }

  #nationalTrack .latest-news-card {
    flex-basis: 100%;
    min-width: 100%;
  }

  #entTrack .latest-news-card {
    flex-basis: 100%;
    min-width: 100%;
  }

  .latest-news-dots {
    margin-top: 10px;
  }

  .list-item {
    align-items: flex-start;
    padding: 10px;
  }

  .list-item-img {
    width: 74px;
    height: 58px;
  }

  .news-card[style*="display:flex"] {
    flex-direction: column !important;
  }

  .news-card[style*="display:flex"] .card-img {
    width: 100% !important;
    height: 180px !important;
  }

  .ad-slider-wrap {
    border-radius: 10px;
  }

  .ad-slider-header {
    font-size: 14px;
    padding: 10px 12px;
  }

  .ad-dots {
    padding: 4px 0 2px;
  }

  .weather-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-top {
    padding: 24px 0 18px;
  }

  .btn-footer {
    width: 100%;
  }
}

@media (max-width: 399px) {
  .logo-img {
    height: 44px;
  }

  .breaking-label {
    min-width: 112px;
    font-size: 10px;
  }

  .breaking-ticker {
    font-size: 12px;
  }

  .card-img1 {
    height: 190px;
  }

  .hero-caption {
    padding: 16px 10px 10px;
  }

  .hero-caption h2 {
    font-size: 14px;
  }

  .weather-row {
    grid-template-columns: 1fr;
  }

  .list-item {
    gap: 8px;
  }

  .list-item-img {
    width: 68px;
    height: 52px;
  }
}

/* ===== RELIGION PAGE UNIQUE HERO SECTION ===== */
.relegion-hero-section {
  background: linear-gradient(135deg, #fff8f0 0%, #fff5e6 100%);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(255, 140, 0, 0.15);
  border: 2px solid #ffc107;
}

.relegion-header {
  background: linear-gradient(135deg, #ff6f00, #ff8f00, #ffa000);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.relegion-title-wrap {
  text-align: center;
}

.relegion-main-title {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 12px;
}

.relegion-main-title i {
  font-size: 18px;
}

.relegion-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 12px;
  margin-top: 4px;
  font-style: italic;
}

.relegion-mandala-left,
.relegion-mandala-right {
  color: rgba(255, 255, 255, 0.6);
  font-size: 28px;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

.relegion-hero-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 0;
  padding: 16px;
}

.relegion-featured-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  margin-right: 12px;
}

.relegion-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.relegion-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.relegion-featured-card:hover .relegion-card-image img {
  transform: scale(1.05);
}

.relegion-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.6));
}

.relegion-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: linear-gradient(135deg, #ff6f00, #ff8f00);
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.relegion-featured-content {
  padding: 16px;
}

.relegion-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #ff6f00;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 1px;
}

.relegion-featured-content h3 {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 10px;
}

.relegion-meta {
  display: flex;
  gap: 14px;
  font-size: 11px;
  color: #888;
  margin-bottom: 10px;
}

.relegion-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}

.relegion-desc {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

.relegion-side-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.relegion-side-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.relegion-side-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 140, 0, 0.2);
}

.relegion-side-img {
  width: 110px;
  height: 110px;
  position: relative;
  flex-shrink: 0;
}

.relegion-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.relegion-icon-badge {
  position: absolute;
  bottom: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, #ff6f00, #ff8f00);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border: 2px solid #fff;
}

.relegion-icon-badge.relegion-badge-2 {
  background: linear-gradient(135deg, #7b1fa2, #9c27b0);
}

.relegion-side-content {
  padding: 10px 12px;
  flex: 1;
}

.relegion-tag-small {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #ff6f00;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.relegion-tag-small.relegion-tag-pilgrimage {
  color: #7b1fa2;
}

.relegion-side-content h4 {
  font-size: 13px;
  font-weight: 700;
  color: #222;
  line-height: 1.4;
  margin-bottom: 6px;
}

.relegion-date {
  font-size: 10px;
  color: #999;
  display: flex;
  align-items: center;
  gap: 4px;
}

.relegion-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px 16px;
  gap: 12px;
}

.divider-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, transparent, #ffc107, transparent);
}

.divider-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #ff6f00, #ff8f00);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

@media (max-width: 768px) {
  .relegion-hero-grid {
    grid-template-columns: 1fr;
  }

  .relegion-featured-card {
    margin-right: 0;
    margin-bottom: 12px;
  }

  .relegion-card-image {
    height: 200px;
  }

  .relegion-main-title {
    font-size: 16px;
  }

  .relegion-mandala-left,
  .relegion-mandala-right {
    display: none;
  }
}

/* ===== INTERNATIONAL DETAIL PAGE UNIQUE HERO ===== */
.intl-hero-section {
  background: linear-gradient(135deg, #0a1929 0%, #0d2137 50%, #132f4c 100%);
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 24px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.intl-hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(
      circle at 20% 80%,
      rgba(59, 130, 246, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 20%,
      rgba(16, 185, 129, 0.12) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.intl-hero-header {
  padding: 24px 28px 20px;
  position: relative;
  z-index: 2;
}

.intl-badge-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.intl-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #3b82f6, #2563eb);
  color: #fff;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
}

.intl-badge i {
  font-size: 10px;
}

.intl-region-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.9);
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.intl-main-title {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 12px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.intl-meta-row {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.intl-meta-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
}

.intl-meta-item i {
  color: #3b82f6;
  font-size: 11px;
}

.intl-hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 0;
  padding: 0 24px 24px;
  position: relative;
  z-index: 2;
}

.intl-featured-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-right: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.intl-featured-img {
  position: relative;
  height: 300px;
}

.intl-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.intl-featured-card:hover .intl-featured-img img {
  transform: scale(1.05);
}

.intl-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 25, 41, 0.9) 0%,
    rgba(10, 25, 41, 0.3) 50%,
    transparent 100%
  );
}

.intl-featured-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}

.intl-featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(59, 130, 246, 0.9);
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.intl-featured-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  line-height: 1.6;
}

.intl-side-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.intl-side-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  transition:
    transform 0.3s,
    background 0.3s,
    border-color 0.3s;
}

.intl-side-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
}

.intl-side-img {
  width: 100px;
  height: 90px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.intl-side-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.intl-side-card:hover .intl-side-img img {
  transform: scale(1.1);
}

.intl-side-body {
  padding: 10px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.intl-side-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.intl-side-tag.blue {
  color: #60a5fa;
}
.intl-side-tag.red {
  color: #f87171;
}
.intl-side-tag.green {
  color: #4ade80;
}

.intl-side-title {
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.intl-side-meta {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  margin-top: 6px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.intl-side-meta i {
  font-size: 9px;
}

.intl-globe-animation {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 120px;
  height: 120px;
  opacity: 0.08;
  animation: rotate-globe 20s linear infinite;
}

.intl-globe-animation i {
  font-size: 120px;
  color: #3b82f6;
}

@keyframes rotate-globe {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (max-width: 768px) {
  .intl-hero-grid {
    grid-template-columns: 1fr;
  }

  .intl-featured-card {
    margin-right: 0;
    margin-bottom: 12px;
  }

  .intl-featured-img {
    height: 200px;
  }

  .intl-main-title {
    font-size: 20px;
  }

  .intl-hero-section {
    border-radius: 12px;
  }

  .intl-globe-animation {
    width: 80px;
    height: 80px;
  }

  .intl-globe-animation i {
    font-size: 80px;
  }
}

/* ===== ARTICLE DETAIL PAGE STYLES ===== */
.main-wrapper {
  max-width: 1300px;
  margin: 20px auto;
  padding: 0 15px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 24px;
  align-items: start;
}

.content-area {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-hero {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.article-image-wrap {
  position: relative;
  width: 100%;
  height: 420px;
  overflow: hidden;
}

.article-image-wrap::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(237, 113, 16, 0.1),
    rgba(204, 0, 0, 0.1)
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.article-hero:hover .article-image-wrap::before {
  opacity: 1;
}

.article-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  pointer-events: none;
}

.article-hero:hover .article-main-img {
  transform: scale(1.05);
}

.article-category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #cc0000;
  color: #fff;
  padding: 6px 14px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
}

.article-header {
  padding: 20px 24px;
}

.article-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
  color: #001342;
  margin-bottom: 14px;
}

.article-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: #666;
  font-size: 13px;
}

.article-meta-row i {
  margin-right: 5px;
  color: #cc0000;
}

.article-body {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

.article-lead {
  font-size: 19px;
  font-weight: 600;
  color: #001342;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 2px solid #eee;
}

.article-body p {
  margin-bottom: 18px;
}

.article-body h2 {
  font-size: 21px;
  font-weight: 800;
  color: #001342;
  margin: 28px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid #cc0000;
  display: inline-block;
}

.article-list {
  margin: 16px 0 20px;
  padding-left: 20px;
}

.article-list li {
  margin-bottom: 10px;
  padding-left: 8px;
}

.article-quote {
  margin: 24px 0;
  padding: 20px 24px;
  background: linear-gradient(135deg, #001342, #003b7a);
  border-radius: 8px;
  color: #fff;
  border-left: 4px solid #ed7110;
}

.article-quote p {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 10px;
}

.article-quote cite {
  font-size: 13px;
  opacity: 0.8;
}

.article-tags {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.tag-label {
  font-weight: 700;
  color: #001342;
  margin-right: 8px;
}

.article-tag {
  background: #f0f0f0;
  color: #333;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
  transition: all 0.2s;
}

.article-tag:hover {
  background: #cc0000;
  color: #fff;
}

.article-share {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-label {
  font-weight: 700;
  color: #001342;
  margin-right: 8px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: transform 0.2s;
}

.share-btn:hover {
  transform: scale(1.1);
}

.share-btn.fb {
  background: #1877f2;
}
.share-btn.tw {
  background: #1da1f2;
}
.share-btn.wa {
  background: #25d366;
}
.share-btn.ln {
  background: #0077b5;
}

.related-section {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #eee;
}

.section-header h3 {
  font-size: 18px;
  font-weight: 800;
  color: #001342;
  display: flex;
  align-items: center;
  gap: 8px;
}

.section-header h3 i {
  color: #cc0000;
}

.view-all-link {
  color: #cc0000;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s;
}

.view-all-link:hover {
  color: #001342;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.related-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.related-img-wrap {
  width: 100%;
  height: 120px;
  overflow: hidden;
}

.related-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.related-card:hover .related-img-wrap img {
  transform: scale(1.08);
}

.related-content {
  padding: 12px;
}

.related-cat {
  font-size: 10px;
  font-weight: 700;
  color: #cc0000;
  text-transform: uppercase;
}

.related-content h4 {
  font-size: 14px;
  font-weight: 700;
  color: #001342;
  line-height: 1.5;
  margin: 6px 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.related-date {
  font-size: 11px;
  color: #888;
}

@media (max-width: 1024px) {
  .main-wrapper {
    grid-template-columns: 1fr 260px;
  }
}

@media (max-width: 768px) {
  .main-wrapper {
    grid-template-columns: 1fr;
  }

  .article-image-wrap {
    height: 280px;
  }

  .article-title {
    font-size: 22px;
  }

  .article-header {
    padding: 16px;
  }

  .article-body {
    padding: 20px 16px;
  }

  .article-lead {
    font-size: 17px;
  }

  .related-grid {
    grid-template-columns: 1fr;
  }

  .article-meta-row {
    flex-direction: column;
    gap: 8px;
  }
}

/* ===== HEADER REPORTER BUTTON ===== */
.header-reporter-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 4px;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 0.2s,
    transform 0.2s;
}

.header-reporter-btn:hover {
  background: #c95e00;
  transform: translateY(-1px);
  color: #fff;
}

@media (max-width: 480px) {
  .header-reporter-btn {
    font-size: 11px;
    padding: 6px 10px;
    gap: 5px;
  }
}
