/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #0097a7;
  --teal-dark: #00838f;
  --teal-light: #e0f7fa;
  --accent: #ff6f00;
  --text: #222;
  --text-light: #555;
  --border: #ddd;
  --bg: #f5f5f5;
  --white: #fff;
  --font-tel: 'Noto Sans Telugu', 'Noto Serif Telugu', sans-serif;
}

body {
  font-family: var(--font-tel);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
}

a { text-decoration: none; color: inherit; }
a:hover { color: var(--teal); text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* ===========================
   TOP BAR
=========================== */
.topbar {
  background: var(--teal-dark);
  color: #fff;
  font-size: 12px;
  padding: 5px 0;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.topbar-right a {
  color: #fff;
  margin-left: 10px;
  font-size: 13px;
  transition: color 0.2s;
}
.topbar-right a:hover { color: #ffe082; }

/* ===========================
   HEADER
=========================== */
.site-header {
  background: var(--white);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 28px;
  font-weight: 700;
  color: var(--teal);
}
.logo-icon { font-size: 32px; color: var(--teal); }
.logo-accent { color: var(--accent); }
.header-ad {
  flex: 1;
  max-width: 700px;
  height: 90px;
  background: #e8f4f8;
  border: 1px dashed #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
}
.header-ad img { width: 100%; height: 100%; object-fit: cover; }
.ad-placeholder {
  position: absolute;
  color: #999;
  font-size: 13px;
  font-family: sans-serif;
}

/* ===========================
   NAVIGATION
=========================== */
.main-nav {
  background: var(--teal);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}
.main-nav .container {
  display: flex;
  align-items: center;
}
.nav-menu {
  display: flex;
  flex-wrap: wrap;
}
.nav-menu li a {
  display: block;
  color: #fff;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}
.nav-menu li a:hover,
.nav-menu li a.active {
  background: var(--teal-dark);
  color: #ffe082;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  padding: 12px;
}

/* Scroll fade indicator on right edge — mobile only */
.nav-scroll-hint {
  display: none;
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 32px;
  background: linear-gradient(to right, transparent, var(--teal-dark));
  pointer-events: none;
  z-index: 2;
}
@media (max-width: 768px) {
  .main-nav { position: relative; }
  .nav-scroll-hint { display: block; }
}

/* ===========================
   MAIN CONTENT GRID
=========================== */
.main-content { padding: 15px 0; }

.content-grid {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 15px;
  margin-bottom: 15px;
}

/* ===========================
   HERO SLIDER
=========================== */
.hero-section { position: relative; }
.slider-wrapper {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #000;
  aspect-ratio: 16/9;
}
.slider { position: relative; width: 100%; height: 100%; }
.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.slide.active { opacity: 1; }
.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.85));
  padding: 30px 20px 20px;
  color: #fff;
}
.slide-tag {
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 3px;
  display: inline-block;
  margin-bottom: 8px;
  font-weight: 600;
}
.slide-caption h2 {
  font-size: 18px;
  line-height: 1.4;
  font-weight: 700;
}
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  color: #fff;
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  z-index: 10;
  transition: background 0.2s;
}
.slider-btn:hover { background: var(--teal); }
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }
.slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active { background: #fff; }

/* ===========================
   SIDEBAR
=========================== */
.sidebar-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.sidebar-articles { padding: 10px; }
.sidebar-article {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}
.sidebar-article:last-child { border-bottom: none; }
.sidebar-article img {
  width: 90px;
  height: 65px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.sidebar-article-text a {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sidebar-article-text a:hover { color: var(--teal); }

/* ===========================
   SECTION HEADER
=========================== */
.section-header {
  padding: 8px 12px;
  margin-bottom: 0;
}
.section-header.teal {
  background: var(--teal);
  border-left: 4px solid var(--accent);
}
.section-header h3 {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

/* ===========================
   THREE COLUMN SECTION
=========================== */
.three-col-section {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 15px;
}
.news-col {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.list-article {
  display: flex;
  gap: 10px;
  padding: 10px;
  border-bottom: 1px solid #eee;
}
.list-article:last-child { border-bottom: none; }
.list-article img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.list-article a {
  font-size: 15px;
  color: var(--text);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.list-article a:hover { color: var(--teal); }

/* ===========================
   VIDEO SECTION
=========================== */
.video-section {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 15px;
  margin-bottom: 15px;
}
.video-main {
  background: #111;
  border-radius: 6px;
  overflow: hidden;
}
.video-embed iframe { display: block; }
.video-caption {
  background: #1a1a1a;
  padding: 12px 15px;
}
.video-caption h3 {
  color: #ffe082;
  font-size: 16px;
  margin-bottom: 5px;
}
.video-caption p { color: #aaa; font-size: 12px; }
.video-ad { display: flex; align-items: center; justify-content: center; }
.ad-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px;
  text-align: center;
  width: 100%;
}
.ad-box p { font-size: 11px; color: #999; margin-bottom: 8px; font-family: sans-serif; }
.ad-placeholder-box {
  background: #f0f0f0;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 13px;
  font-family: sans-serif;
  border-radius: 4px;
}

/* ===========================
   HEALTH TIPS STRIP
=========================== */
.tips-strip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 15px;
}
.tips-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.tip-card {
  display: block;
  padding: 10px;
  border-right: 1px solid #eee;
  transition: background 0.2s;
}
.tip-card:last-child { border-right: none; }
.tip-card:hover { background: var(--teal-light); }
.tip-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 8px;
}
.tip-card p {
  font-size: 12.5px;
  color: var(--text);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: #1a2a3a;
  color: #ccc;
  padding: 40px 0 0;
  margin-top: 20px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 30px;
  padding-bottom: 30px;
}
.footer-col h4 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal);
  display: inline-block;
}
.footer-col p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 8px;
}
.footer-col p i { margin-right: 8px; color: var(--teal); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 13px;
  color: #bbb;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--teal); padding-left: 5px; }
.footer-social { display: flex; gap: 10px; margin-top: 15px; }
.footer-social a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--teal); }
.footer-bottom {
  background: #111d2b;
  padding: 12px 0;
  text-align: center;
}
.footer-bottom p { font-size: 12px; color: #888; font-family: sans-serif; }

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 1024px) {
  .content-grid { grid-template-columns: 1fr; }
  /* Keep తాజా వార్తలు visible on tablet/mobile */
  .sidebar-section { display: block; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  /* Hide header banner ad on mobile/tablet */
  .header-ad { display: none; }
}

@media (max-width: 768px) {
  .three-col-section { grid-template-columns: 1fr; }
  .video-section { grid-template-columns: 1fr; }
  .tips-grid { grid-template-columns: 1fr 1fr; }
  
  /* Horizontal scrollable menu on mobile */
  .nav-toggle { display: none; } /* Hide hamburger */
  .main-nav .container {
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
  }
  .main-nav .container::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
  }
  .nav-menu {
    display: flex !important;
    flex-direction: row;
    flex-wrap: nowrap;
    width: auto;
    min-width: 100%;
    padding: 0;
  }
  .nav-menu li {
    flex-shrink: 0;
  }
  .nav-menu li a {
    padding: 12px 16px;
    font-size: 13px;
    white-space: nowrap;
    border-bottom: none;
    border-right: 1px solid rgba(255,255,255,0.15);
  }
  .nav-menu li:last-child a {
    border-right: none;
  }
  
  .footer-inner { grid-template-columns: 1fr; }
  .logo a { font-size: 22px; }
}

@media (max-width: 480px) {
  .tips-grid { grid-template-columns: 1fr; }
  .slide-caption h2 { font-size: 14px; }
}

/* ===========================
   VIDEO SLIDER SECTION
=========================== */
.video-slider-section {
  background: #111;
  border-radius: 8px;
  padding: 18px 18px 14px;
  margin-bottom: 15px;
  overflow: hidden;
}

/* Header row */
.vs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.vs-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.vs-viewmore {
  color: #fff;
  font-size: 13px;
  border: 1px solid #555;
  padding: 5px 14px;
  border-radius: 20px;
  transition: background 0.2s, border-color 0.2s;
  font-family: sans-serif;
  white-space: nowrap;
}
.vs-viewmore:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: #fff;
}

/* Track wrapper — clips overflow */
.vs-track-wrapper {
  overflow: hidden;
  position: relative;
}

/* Track — flex row of cards */
.vs-track {
  display: flex;
  gap: 12px;
  transition: transform 0.4s ease;
  will-change: transform;
}

/* Individual card */
.vs-card {
  flex: 0 0 calc(25% - 9px);   /* 4 visible at a time */
  min-width: 0;
  display: block;
  color: #fff;
  text-decoration: none;
}
.vs-card:hover .vs-thumb img {
  transform: scale(1.04);
}

/* Thumbnail */
.vs-thumb {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #222;
}
.vs-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Dark overlay on bottom half */
.vs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 30%, rgba(0,0,0,0.82) 100%);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 8px;
}

/* Channel badge top-left */
.vs-channel-badge {
  background: #e53935;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 3px;
  align-self: flex-start;
  font-family: sans-serif;
  letter-spacing: 0.5px;
}

/* Bottom caption row inside thumb */
.vs-caption-overlay {
  display: flex;
  align-items: flex-end;
  gap: 6px;
}
.vs-yt-btn {
  color: #ff0000;
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}
.vs-caption-text {
  font-size: 11.5px;
  color: #fff;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-weight: 600;
}

/* Title below thumb */
.vs-title-text {
  font-size: 14px;
  color: #ddd;
  margin-top: 8px;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vs-card:hover .vs-title-text { color: #fff; }

/* Dots */
.vs-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 12px;
}
.vs-dot {
  width: 28px;
  height: 5px;
  border-radius: 3px;
  background: #444;
  cursor: pointer;
  transition: background 0.2s;
  border: none;
  padding: 0;
}
.vs-dot.active { background: #fff; }

/* Responsive */
@media (max-width: 900px) {
  .vs-card { flex: 0 0 calc(33.33% - 8px); }
}
@media (max-width: 600px) {
  .vs-card { flex: 0 0 calc(50% - 6px); }
}
@media (max-width: 400px) {
  .vs-card { flex: 0 0 calc(100%); }
}
/* ===========================
   GRID + BULLET LIST SECTION (gbl)
=========================== */
.gbl-section {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 25px;
  margin-bottom: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 18px;
}

/* Section heading — title + teal underline */
/* (defined in fixes section below) */

/* 3-column image grid */
.gbl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

/* Individual image card */
.gbl-card {
  display: block;
  text-decoration: none;
  color: var(--text);
}
.gbl-card:hover p { color: var(--teal); }

.gbl-img-wrap {
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: #eee;
}
.gbl-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gbl-card:hover .gbl-img-wrap img {
  transform: scale(1.04);
}

.gbl-card p {
  font-size: 15px;
  line-height: 1.6;
  margin-top: 7px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

/* Right bullet list */
.gbl-right {
  border-left: 1px solid #eee;
  padding-left: 18px;
}

.gbl-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.gbl-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.gbl-list li:last-child { border-bottom: none; }

/* Teal bullet dot */
.gbl-list li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 5px;
}

.gbl-list li a {
  font-size: 15px;
  color: #333;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.gbl-list li a:hover { color: var(--teal); }

/* Responsive — gbl sections (health tips + research) */
@media (max-width: 900px) {
  .gbl-section {
    grid-template-columns: 1fr;
  }
  .gbl-right {
    border-left: none;
    border-top: 1px solid #eee;
    padding-left: 0;
    padding-top: 15px;
  }
  .gbl-right-imglist {
    border-left: none;
    border-top: 1px solid #eee;
    padding-left: 0;
    padding-top: 15px;
  }
  .altmed-small-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .gbl-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .altmed-small-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 400px) {
  .gbl-grid {
    grid-template-columns: 1fr;
  }
}

/* ===========================
   FIXES: View All, Ad clean, Image sizes, Font
=========================== */

/* Section header with flex for view-all */
.section-header-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.gbl-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--teal);
}

/* View All button — on teal header */
.view-all-btn {
  font-size: 11px;
  color: #fff;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 3px 9px;
  border-radius: 12px;
  white-space: nowrap;
  transition: background 0.2s;
  font-family: sans-serif;
}
.view-all-btn:hover {
  background: rgba(255,255,255,0.35);
  color: #fff;
}

/* View All on white background (gbl sections) */
.view-all-dark {
  font-size: 11px;
  color: var(--teal);
  background: var(--teal-light);
  border: 1px solid var(--teal);
  padding: 3px 9px;
  border-radius: 12px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
  font-family: sans-serif;
}
.view-all-dark:hover {
  background: var(--teal);
  color: #fff;
}

/* Bullet list — match left column width exactly */
.sb-bullet-list {
  list-style: none;
  padding: 6px 12px;
  margin: 0;
}
.sb-bullet-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}
.sb-bullet-list li:last-child { border-bottom: none; }
.sb-bullet-list li::before {
  content: '';
  width: 7px;
  height: 7px;
  min-width: 7px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 6px;
}
.sb-bullet-list li a {
  font-size: 14px;
  color: #222;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.sb-bullet-list li a:hover { color: var(--teal); }

/* Clean Ad block — no heading, exact 300×250 */
.ad-col-clean {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
}
.clean-ad-wrap {
  width: 300px;
  max-width: 100%;
}
.clean-ad-label {
  font-size: 10px;
  color: #aaa;
  text-align: center;
  margin-bottom: 4px;
  font-family: sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.clean-ad-box {
  position: relative;
  width: 300px;
  height: 250px;
  max-width: 100%;
  border-radius: 4px;
  overflow: hidden;
  background: #f0f0f0;
}
.clean-ad-box img {
  width: 300px;
  height: 250px;
  object-fit: cover;
  display: block;
}
.clean-ad-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #bbb;
  font-size: 13px;
  font-family: sans-serif;
  text-align: center;
  line-height: 1.8;
  background: #f0f0f0;
  /* shown only when img fails */
}
.clean-ad-box img:not([src='']) ~ .clean-ad-fallback { display: none; }

/* Fix gbl-grid image — exact 268×167, no stretch */
.gbl-img-wrap {
  width: 100%;
  height: 167px;
  border-radius: 6px;
  overflow: hidden;
  background: #eee;
}
.gbl-img-wrap img {
  width: 100%;
  height: 167px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.gbl-card:hover .gbl-img-wrap img { transform: scale(1.04); }

/* Fix altmed small card — exact 268×167 */
.altmed-small-img-wrap {
  width: 100%;
  height: 167px;
  border-radius: 5px;
  overflow: hidden;
  background: #eee;
}
.altmed-small-img-wrap img {
  width: 100%;
  height: 167px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.altmed-small-card:hover .altmed-small-img-wrap img { transform: scale(1.04); }
.altmed-small-card p {
  font-size: 13px;
  line-height: 1.55;
  margin-top: 7px;
  color: #222;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}
.altmed-small-card:hover p { color: var(--teal); }

/* Improved font sizes across the board */
.list-article a { font-size: 15px; line-height: 1.65; }
.sidebar-article-text a { font-size: 15px; line-height: 1.65; }
.gbl-card p { font-size: 15px; line-height: 1.6; }
.gbl-list li a { font-size: 15px; line-height: 1.65; }
.gbl-imgitem span { font-size: 15px; line-height: 1.6; }
.vs-title-text { font-size: 14px; }
.vs-caption-text { font-size: 13px; }
.slide-caption h2 { font-size: 20px; }
.section-header h3 { font-size: 16px; }
.gbl-heading h2 { font-size: 17px; }
.sb-bullet-list li a { font-size: 15px; line-height: 1.65; }
.altmed-small-card p { font-size: 14px; line-height: 1.6; }
.altmed-featured-caption h3 { font-size: 16px; }
.gbl-imgitem span { font-size: 15px; }
.vs-title { font-size: 20px; }
.vs-viewmore { font-size: 14px; }
.view-all-btn { font-size: 12px; }
.view-all-dark { font-size: 12px; }
.footer-col p { font-size: 14px; }
.footer-col ul li a { font-size: 14px; }
.footer-bottom p { font-size: 13px; }


/* ===========================
   CHANGE 3: రీసెర్చ్ — image+text list style
=========================== */
.gbl-right-imglist {
  border-left: 1px solid #eee;
  padding-left: 18px;
}
.gbl-imglist {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.gbl-imgitem {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  text-decoration: none;
  color: var(--text);
  transition: color 0.2s;
}
.gbl-imgitem:last-child { border-bottom: none; }
.gbl-imgitem img {
  width: 88px;
  height: 66px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
.gbl-imgitem span {
  font-size: 15px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.gbl-imgitem:hover span { color: var(--teal); }

/* ===========================
   CHANGE 4: ఆల్టర్నేటివ్ మెడిసిన్ — featured + 2×2 small grid
=========================== */
.altmed-block { display: flex; flex-direction: column; gap: 12px; }

/* Big featured card */
.altmed-featured { display: block; text-decoration: none; color: inherit; }
.altmed-featured-img {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 16/7;
  background: #222;
}
.altmed-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s;
}
.altmed-featured:hover .altmed-featured-img img { transform: scale(1.03); }
.altmed-featured-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.82));
  padding: 28px 14px 14px;
  color: #fff;
}
.altmed-tag {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  font-size: 10px;
  padding: 2px 9px;
  border-radius: 3px;
  margin-bottom: 6px;
  font-weight: 700;
}
.altmed-featured-caption h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* altmed small card styles moved to fixes section */

/* 2×2 small cards grid */
.altmed-small-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.altmed-small-card {
  display: block;
  text-decoration: none;
  color: var(--text);
}

/* Responsive adjustments for altmed */
@media (max-width: 900px) {
  .altmed-small-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .altmed-small-grid { grid-template-columns: 1fr 1fr; }
}
