/* =========================================
   RESET
========================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ==========================================
   GLOBAL VARIABLES
========================================= */
:root {
  --primary-red: #FF0000;
  --dark-red: #C80000;
  --text-dark: #111;
  --muted: #666;
  --bg-light: #F5F5F5;
  --nav-height: 56px;
  --container-max: 1200px;
  font-family: 'Roboto', sans-serif;
}

/* Common container */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 12px;
}

/* Remove horizontal scroll globally */
body {
  overflow-x: hidden;
  font-family: 'Roboto', sans-serif;
}

/* =========================================
   TOP BAR (DATE + SOCIAL)
========================================= */
 .top-bar {
  background: var(--dark-red);
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 10px 18px;
  font-weight: 700;
  align-items: center;
}

.top-right .social {
  background: #fff;
  color: var(--dark-red);
  padding: 6px 8px;
  margin-left: 8px;
  border-radius: 4px;
  text-decoration: none;
}

/* =========================================
   HEADER LOGO
========================================= */
.header {
  background: #fff;
  height: 60px;
  display: flex;
  align-items: center;
  padding: 8px 16px;
  overflow-x: hidden;
}

.logo {
  height: 46px;
  width: auto;
} 

/* Slightly smaller on very small screens */
@media (max-width: 520px) {
  .logo {
    height: 36px;
  }
}

/* =========================================
   NAVIGATION (MENU)
========================================= */
.main-nav {
  background: #000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  min-height: var(--nav-height);
  position: relative;
  z-index: 2000; /* 3-columns se upar */
}

/* LEFT side menu list */
.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
  align-items: center;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.nav-links li {
  position: relative; /* dropdown place hone ke liye */
}

.nav-links li a {
  color: #fff;
  font-size: 18px;
  padding: 14px 6px;
  display: flex;
  gap: 6px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-links li.active a {
  border-bottom: 3px solid var(--primary-red);
}

/* HOME ICON */
.home-svg {
  width: 20px;
  height: 20px;
}

/* Dropdown (simple clean card) */
.nav-links .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  border-radius: 6px;
  padding: 6px 0;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
  display: none;
  z-index: 2100;
  overflow: hidden;
}

.nav-links .dropdown li {
  display: block;
}

.nav-links .dropdown li a {
  display: block;
  padding: 14px 18px;
  color: #222;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
}

.nav-links .dropdown li + li a {
  border-top: 1px solid #f2f2f2;
}

.nav-links .dropdown li a:hover {
  background: #f7f7f7;
  color: #111;
}

/* show dropdown on hover / focus */
.nav-links li.has-dropdown:hover > .dropdown,
.nav-links li.has-dropdown:focus-within > .dropdown {
  display: block;
}

/* NAV RIGHT (search icon + LIVE) */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  padding: 8px;
}

.search-btn svg {
  display: block;
  width: 20px;
  height: 20px;
}

/* LIVE BUTTON (BLINK) */
.live-btn {
  background: var(--primary-red);
  color: #fff;
  padding: 8px 14px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
}

/* 1 second blink */
@keyframes blinkRed {
  0% { box-shadow: 0 0 0 rgba(255,0,0,1); transform: scale(1); }
  50% { box-shadow: 0 0 18px rgba(255,0,0,0.75); transform: scale(1.02); }
  100% { box-shadow: 0 0 0 rgba(255,0,0,1); transform: scale(1); }
}

.live-btn.blink {
  animation: blinkRed 1s infinite;
}

/* NAV small-screen tweaks */
@media (max-width: 800px) {
  .nav-links li a {
    font-size: 15px;
    padding: 10px 8px;
  }
  .home-svg {
    width: 18px;
    height: 18px;
  }
}

/* Extra wrappers (if used in header.html) */
.nav-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-x: hidden !important;
  white-space: nowrap;
}

.nav-menu {
  display: flex;
  gap: 30px;
  flex-wrap: nowrap;
}

.nav-menu li {
  white-space: nowrap;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

/* =========================================
   THREE COLUMN SECTION (TRENDING / LATEST / EDITORIALS)
========================================= */
.three-columns {
  display: grid;
  grid-template-columns: 0.7fr 2.1fr 0.7fr;  /* center sabse wide */
  gap: 22px;
  margin-top: 20px;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding: 0 12px;
  position: relative;
  z-index: 1;
}

.col-title {
  font-size: 22px;
  font-weight: 800;
  padding-bottom: 8px;
  border-bottom: 3px solid var(--primary-red);
}

.col-list {
  display: grid;
  gap: 12px;
}

/* Stack columns on smaller screens */
@media (max-width: 900px) {
  .three-columns {
    grid-template-columns: 1fr;
    padding: 0 12px;
  }
  .three-columns .col {
    margin-bottom: 14px;
  }
}

/* =========================================
   CARDS (SMALL + FEATURE)
========================================= */
.small-card,
.feature-card {
  display: block;
  color: inherit;
  text-decoration: none;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,0.03);
  transition: transform .12s ease, box-shadow .12s ease;
}

.small-card:hover,
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

/* Small card (left/right columns) */
.small-card {
  display: flex;
  gap: 12px;
  padding: 10px;
  align-items: flex-start;
}

.small-card .thumb {
  flex-shrink: 0;
  width: 110px;
  height: 72px;
  overflow: hidden;
  border-radius: 6px;
}

.small-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.small-card .small-text strong {
  font-size: 15px;
  line-height: 1.2;
  display: block;
  margin-bottom: 6px;
  color: #111;
}

.small-card .meta {
  font-size: 13px;
  color: #777;
}

/* Center FEATURE card */
.feature-card {
  position: relative;
  margin-bottom: 16px;
}

.feature-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.feature-caption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
  max-width: 60%;
}

.feature-caption .kicker {
  background: rgba(0,0,0,0.35);
  padding: 6px 8px;
  border-radius: 4px;
  display: inline-block;
  font-weight: 700;
  margin-bottom: 8px;
}

.feature-caption h2 {
  margin: 0 0 6px;
  font-size: 28px;
  line-height: 1.08;
}

/* Responsive cards */
@media (max-width: 900px) {
  .feature-card img {
    height: 260px;
  }

  .small-card .thumb {
    width: 90px;
    height: 60px;
  }
}

/* =========================================
   FEATURE SLIDER (LATEST NEWS) - #latestList
========================================= */
#latestList {
  position: relative;
  overflow: visible;
}

.fs-slider {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}

.fs-slides {
  position: relative;
  height: 420px;
}

.fs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .5s ease, transform .5s ease;
  display: block;
  text-decoration: none;
  color: inherit;
}

.fs-slide.active {
  opacity: 1;
  z-index: 2;
}

.fs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* caption overlay */
.fs-slides {
  position: relative;
  height: 420px;
  overflow: hidden; /* add if missing */
}

.fs-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* yahi main fix */
/* fs-caption ko update karo */
.fs-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;

  padding: 18px 20px;
  /* yeh line CHANGE karo */
  background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.3), transparent);
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
  max-width: 100%;
  box-sizing: border-box;
}

/* heading ka color white rakho */
.fs-caption h2 {
  margin: 6px 0;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 700;
  color: #fff;
}


.fs-caption .meta {
  font-size: 13px;
  color: #777;
}


/* arrows */
.fs-prev,
.fs-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: none;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.fs-prev { left: 12px; }
.fs-next { right: 12px; }

.fs-prev:hover,
.fs-next:hover {
  background: rgba(0,0,0,0.6);
}

/* dots */
.fs-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12px;
  display: flex;
  gap: 8px;
  z-index: 3;
}

.fs-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.45);
  border: none;
  cursor: pointer;
}

.fs-dot.active {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.25);
}

/* slider responsive */
@media (max-width: 980px) {
  .fs-slides {
    height: 320px;
  }

  .fs-caption h2 {
    font-size: 20px;
  }
}

@media (max-width: 600px) {
  .fs-slides {
    height: 260px;
  }

  .fs-caption {
    left: 8px;
    right: 8px;
    bottom: 10px;
  }

  .fs-caption h2 {
    font-size: 18px;
  }

  .fs-prev,
  .fs-next {
    width: 36px;
    height: 36px;
  }

  .fs-dot {
    width: 8px;
    height: 8px;
  }
}

/* =========================================
   INFINITE FEED + SIDEBAR
========================================= */
.infinite-feed {
  max-width: var(--container-max);
  margin: 28px auto;
  padding: 0 12px;
}

/* header above feed filters */
.feed-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.feed-title {
  font-size: 22px;
  font-weight: 800;
}

.feed-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}

.feed-controls-label {
  font-weight: 600;
}

/* filters */
.feed-filter {
  background: #fff;
  border: 1px solid #ddd;
  padding: 6px 10px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}

.feed-filter.active {
  background: var(--primary-red);
  color: #fff;
  border-color: var(--primary-red);
}

/* Layout: feed + sidebar */
.feed-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(0, 0.8fr);
  gap: 20px;
  align-items: flex-start;
}

/* main feed column */
.feed-main {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feed-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feed-card {
  display: flex;
  gap: 12px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
  transition: transform .14s ease, box-shadow .14s ease;
}

.feed-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.feed-card .f-thumb {
  width: 45%;
  min-width: 180px;
  max-width: 320px;
  overflow: hidden;
  border-radius: 8px;
}

.feed-card .f-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.feed-card .f-body {
  padding: 12px;
  flex: 1;
}

.feed-card .f-body strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  line-height: 1.2;
}

.feed-card .meta {
  font-size: 13px;
  color: #777;
}

.feed-card .excerpt {
  color: #555;
  margin-top: 8px;
}

/* loader + sentinel */
#feedLoader,
.feed-loader {
  display: none;
  text-align: center;
  margin: 16px 0;
  color: #666;
}

.feed-sentinel {
  height: 28px;
}

/* sidebar */
.infinite-feed-sidebar {
  display: block;
}

.sidebar-title {
  margin: 0 0 10px;
  font-weight: 700;
}

.infinite-feed-sidebar .yt-list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.infinite-feed-sidebar .yt-item {
  background: #111;
  border-radius: 20px;
  overflow: hidden;
}

.infinite-feed-sidebar .yt-thumb,
.infinite-feed-sidebar .yt-item iframe {
  width: 100%;
  height: 200px;
  border: 0;
  display: block;
  background: #000;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* --------------------------- */

.infinite-feed-sidebar .yt-thumb {
  position: relative;
  cursor: pointer;
}

.infinite-feed-sidebar .yt-thumb::after {
  content: "▶";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 0, 0, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  transition: transform 0.2s;
}

.infinite-feed-sidebar .yt-thumb:hover::after {
  transform: translate(-50%, -50%) scale(1.1);
}



/* Responsive: stack feed + hide sidebar on small devices */
@media (max-width: 900px) {
  .feed-layout {
    grid-template-columns: 1fr;
  }

  .feed-card {
    flex-direction: column;
  }

  .feed-card .f-thumb {
    width: 100%;
    min-height: 200px;
    max-width: none;
  }

  .infinite-feed-sidebar .yt-thumb,
  .infinite-feed-sidebar .yt-item iframe {
    height: 180px;
  }
}

/* Extra strong mobile fixes */
@media (max-width: 600px) {
  #infiniteFeedSection {
    padding: 0 8px !important;
    margin-top: 12px !important;
  }

  .feed-layout {
    display: block !important;
  }

  .feed-card {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0 !important;
  }

  .feed-card .f-thumb {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 180px !important;
  }

  .feed-card .f-body {
    padding: 10px !important;
  }

  .feed-card .f-body strong {
    font-size: 16px !important;
    margin-bottom: 6px;
  }

  /* sidebar hidden on very small screens */
  .infinite-feed-sidebar {
    display: none !important;
  }

  .yt-list .yt-thumb {
    height: 160px !important;
  }
}

/* =========================================
   RELATED HOME GRID
========================================= */
.related-home-section {
  border-top: 1px solid #eee;
  padding-top: 18px;
}

.related-home-title {
  font-size: 22px;
  margin: 0 0 12px;
  padding-bottom: 8px;
  border-bottom: 4px solid #f05a2b;
  display: inline-block;
  color: #222;
}

.related-home-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 16px;
}

.related-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform .15s ease, box-shadow .15s ease;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.related-card .thumb {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #f6f6f6;
}

.related-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.related-card .body {
  padding: 12px;
}

.related-card .body .kicker {
  font-size: 12px;
  color: #b33;
  margin-bottom: 6px;
  display: block;
  letter-spacing: 0.2px;
}

.related-card .body strong {
  display: block;
  font-size: 16px;
  line-height: 1.25;
  margin-bottom: 8px;
}

.related-card .body .meta {
  font-size: 13px;
  color: #777;
}

/* show more button wrapper */
.related-home-more {
  text-align: center;
  margin-top: 16px;
}

/* button */
.btn-outline {
  background: #fff;
  border: 1px solid #ddd;
  padding: 8px 12px;
  cursor: pointer;
  border-radius: 6px;
}

/* Responsive related grid */
@media (max-width: 1100px) {
  .related-home-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .related-card .thumb {
    height: 180px;
  }
}

@media (max-width: 800px) {
  .related-home-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .related-card .thumb {
    height: 160px;
  }
}

@media (max-width: 480px) {
  .related-home-grid {
    grid-template-columns: 1fr;
  }

  .related-card .thumb {
    height: 220px;
  }
}

/* =========================================
   FOOTER
========================================= */
.site-footer {
  text-align: center;
  padding: 20px 0;
  margin-top: 30px;
  border-top: 1px solid #eee;
  background: #111;
  color: #eee;
  font-family: 'Roboto', sans-serif;
}

.site-footer .container {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.site-footer .f-col {
  width: 300px;
  max-width: 33%;
  min-width: 220px;
}

.footer-logo {
  height: 56px;
  display: block;
  margin-bottom: 10px;
}

.brand-desc {
  color: #dcdcdc;
  font-size: 14px;
  margin: 8px 0 12px;
  line-height: 1.4;
}

.site-footer h4 {
  color: #fff;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
}

.quick-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links li {
  margin-bottom: 8px;
}

.quick-links a {
  color: #ddd;
  text-decoration: none;
}

.quick-links a:hover {
  color: var(--primary-red);
  text-decoration: underline;
}

/* newsletter */
.newsletter {
  display: flex;
  gap: 8px;
  margin-top: 6px;
}

.newsletter input {
  padding: 8px 10px;
  border-radius: 4px;
  border: 1px solid #333;
  background: #222;
  color: #fff;
  outline: none;
}

.newsletter button {
  background: var(--primary-red);
  color: #fff;
  border: none;
  padding: 8px 12px;
  border-radius: 4px;
  cursor: pointer;
}

.small.muted {
  font-size: 13px;
  color: #bbb;
  margin-top: 8px;
}

/* socials */
.social-row.small-row {
  margin-top: 12px;
  display: flex;
  gap: 10px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: all .18s;
}

.social-icon:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.22);
}

/* footer bottom */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin-top: 14px;
}

.footer-bottom .copyright {
  flex: 1;
  text-align: center;
  color: #fff;
  font-size: 15px;
  font-family: 'Roboto', sans-serif;
}

.footer-bottom .back-top {
  flex: 0 0 auto;
  margin-left: auto;
}

.back-top a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.back-top a:hover {
  text-decoration: underline;
}

/* footer responsive */
@media (max-width: 900px) {
  .site-footer .container {
    flex-direction: column;
    gap: 18px;
  }

  .site-footer .f-col {
    width: 100%;
    max-width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: center;
  }

  .footer-bottom .back-top {
    margin-left: 0;
  }
}
.three-columns {
  display: grid !important;
  grid-template-columns: 0.7fr 2.1fr 0.7fr !important;
}





/* mobile ke lye  */


/* =========================================
   FULL MOBILE LAYOUT (<= 600px)
========================================= */
@media (max-width: 600px) {

  /* Global container + body */
  body {
    overflow-x: hidden;
  }

  .container {
    max-width: 100% !important;
    padding: 0 10px !important;
  }

  /* TOP BAR / HEADER / NAV SAFE */
  .top-bar {
    padding: 6px 10px !important;
    font-size: 12px !important;
  }

  .header {
    padding: 6px 10px !important;
    height: auto !important;
  }

  .logo {
    height: 34px !important;
  }

  .main-nav {
    padding: 0 8px !important;
  }

  .nav-links {
    gap: 10px !important;
  }

  .nav-links li a {
    font-size: 14px !important;
    padding: 8px 4px !important;
  }

  /* ========== THREE COLUMNS (HOME HERO) ========== */
  .three-columns {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    padding: 0 6px !important;
    margin-top: 12px !important;
  }

  .three-columns .col {
    width: 100% !important;
    margin-bottom: 0 !important;
  }

  .col-title {
    font-size: 18px !important;
    padding-bottom: 6px !important;
  }

  /* left/right small cards */
  .small-card {
    gap: 8px !important;
    padding: 8px !important;
  }

  .small-card .thumb {
    width: 90px !important;
    height: 60px !important;
  }

  .small-card .small-text strong {
    font-size: 14px !important;
  }

  /* ========== SLIDER CAPTION BOTTOM STICK ========== */
  .fs-slides {
    height: 260px !important;
  }

  .fs-slide img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
  }

  .fs-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;                 /* bilkul bottom */
    padding: 8px 10px !important;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.9),
      rgba(0,0,0,0.4),
      transparent
    );
    text-shadow: 0 2px 6px rgba(0,0,0,0.7);
    box-sizing: border-box;
  }

  .fs-caption h2 {
    margin: 2px 0 0 !important;
    font-size: 18px !important;
    line-height: 1.2 !important;
  }

  /* arrows smaller */
  .fs-prev,
  .fs-next {
    width: 32px !important;
    height: 32px !important;
  }

  /* ========== INFINITE FEED ========== */
  #infiniteFeedSection {
    padding: 0 6px !important;
    margin-top: 10px !important;
  }

  .feed-layout {
    display: block !important;
  }

  .feed-card {
    flex-direction: column !important;
    width: 100% !important;
    gap: 0 !important;
  }

  .feed-card .f-thumb {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 180px !important;
  }

  .feed-card .f-body {
    padding: 8px !important;
  }

  .feed-card .f-body strong {
    font-size: 16px !important;
    margin-bottom: 6px !important;
  }

  /* sidebar OFF on mobile */
  .infinite-feed-sidebar {
    display: none !important;
  }

  /* ========== RELATED GRID ========== */
  .related-home-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .related-card .thumb {
    height: 200px !important;
  }

}