/* assets/css/components.css */
.section-title {
  font-size: 24px;
  font-weight: 600;
  margin: 40px 0 20px;
  border-left: 4px solid #de0000;
  padding-left: 10px;
}

/* Blink animation for article links */
@keyframes blink-link {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.6;
  }
}

.news-layout {
  display: flex;
  gap: 20px;
}



.recent-headlines {
  list-style: none;
  padding: 0;
}

.recent-headlines li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
  display: flex;
  align-items: center;
  gap: 10px;
}

.recent-headlines li:last-child {
  border-bottom: none;
}

.headline-left img {
  width: 105px;
  height: 113px;
  object-fit: cover;
  border-radius: 4px;
}

.headline-right {
  flex-direction: row-reverse;
}

.headline-right img {
  width: 105px;
  height: 113px;
  object-fit: cover;
  border-radius: 4px;
}

.recent-headlines a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  line-height: 1.4;
  flex: 1;
}

.recent-headlines a:hover {
  color: #de0000;
}

/* 
.news-main {
  flex: 1;
} */

.news-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.three-column-grid {
  grid-template-columns: repeat(3, 1fr);
}



.news-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease;
}

.news-card:hover {
  transform: translateY(-5px);
}

.news-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-content {
  padding: 15px;
}

.news-content h3 {
  font-size: 18px;
  color: #0066cc;
  margin-bottom: 8px;
}

.news-content p {
  font-size: 14px;
  color: #555;
  margin-bottom: 10px;
}

.news-content small {
  color: #777;
}

/* See More Button */
.see-more-btn {
  display: block;
  margin: 20px auto 0;
  padding: 12px 24px;
  background: #de0000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.see-more-btn:hover {
  background: #b40000;
}

.see-more-btn.hidden {
  display: none;
}


/* Advertisement section */
.ad-section {
  margin-top: 18px;
  text-align: center;
  animation: blink 4s infinite;
}

@keyframes blink {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.ad-link {
  display: inline-block;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease;
}

.ad-link:hover {
  transform: translateY(-2px);
}

/* Update to Ad Section Styles */

.ad-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.ad-title {
  font-size: 16px;
  font-weight: 700;
  color: #333;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Ensure image respects container */
.ad-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.ad-text {
  padding: 10px 15px;
  background: #f9f9f9;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: #333;
  text-align: center;
}


@media (max-width: 791px) {
  /* .news-card img {
    width: 83px;
    height: 60px;
    object-fit: cover;
  }

  .news-content h3 {
    font-size: 15px;
    color: #0066cc;
    margin-bottom: 8px;
  } */
}


/* Responsive design for Latest News section */
@media (max-width: 768px) {
  .news-layout {
    flex-direction: column;
  }

  .news-sidebar {
    flex: none;
    order: 2;
    /* Sidebar below main content on mobile */
    padding: 20px;
  }

  /* .news-main {
    order: 1;
  } */

  .news-grid {
    grid-template-columns: 1fr;
    /* Single column on mobile */
    gap: 15px;
  }

  /* .three-column-grid {
    grid-template-columns: repeat(2, 1fr);
    /* Two columns for three-column grids on mobile */
  /* }  */

  .recent-headlines li {
    flex-direction: row;
    /* Ensure consistent direction on mobile */
  }

  .headline-right {
    flex-direction: row;
    /* Override to row on mobile */
  }

  /* Convert Latest News cards to compact column layout on mobile */
  .news-card {
    display: flex;
    gap: 10px;
    padding: 10px;
    align-items: flex-start;
  }

  .news-card img {
    width: 83px;
    height: 60px;
    margin-bottom: 0;
    object-fit: cover;
  }

  .news-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;

  }

  .news-content h3 {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 4px;
    line-height: 1.2;
    color: #0066cc;
    margin-bottom: 8px;
  }

  .news-content {
    padding: 0 0 0 5px;
  }

  .news-content p {
    display: none;
    /* Hide description on mobile */
  }

  /* .news-card img {
    width: 83px;
    height: 60px;
    object-fit: cover;
  }

  .news-content h3 {
    font-size: 15px;
    color: #0066cc;
    margin-bottom: 8px;
  } */

}




/* Add this to your components.css file */

/* ===== SIDEBAR ADS STYLES ===== */

.ads-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.sidebar-ad {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  animation: blink 4s infinite;
}

.sidebar-ad:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.sidebar-ad a {
  display: block;
  text-decoration: none;
  color: inherit;
}

.sidebar-ad img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* For standard sidebar ad sizes */
.sidebar-ad img {
  max-height: 250px;
  min-height: 150px;
}

.sidebar-ad .ad-text {
  padding: 12px 15px;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
  margin: 0;
  background: #f8f9fa;
  border-top: 1px solid #e9ecef;
}

.sidebar-ad::after {
  content: 'ADVERTISEMENT';
  position: absolute;
  top: 8px;
  right: 8px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  font-size: 10px;
  padding: 3px 8px;
  border-radius: 3px;
  font-weight: 600;
  letter-spacing: 0.5px;
}


@media (max-width: 1000px) {
  .news-layout {
    flex-direction: column;
  }
}





/* Responsive adjustments */
@media (max-width: 992px) {
  .ads-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    margin-top: 30px;
  }

  .sidebar-ad {
    flex: 1 1 calc(50% - 10px);
    min-width: 280px;
  }
}

@media (max-width: 768px) {
  .ads-sidebar {
    flex-direction: column;
  }

  .sidebar-ad {
    flex: 1 1 100%;
  }
}

/* Loading state */
.ads-sidebar .loading {
  text-align: center;
  padding: 40px 20px;
  color: #999;
}

.ads-sidebar .loading i {
  font-size: 32px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Empty state */
.ads-sidebar .no-ads {
  text-align: center;
  padding: 40px 20px;
  color: #999;
  font-size: 14px;
}














/* ===== More Top Stories - UPDATED WITH CORRECT DESKTOP LAYOUT ===== */
.top-stories .section-title {
  margin-bottom: 25px;
}

/* Desktop/Tablet Layout - Like your image */
.top-stories-layout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

/* Left column (stacked small items) */
.ts-left {
  flex: 0 0 35%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.ts-small-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  background: #fff;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ts-small-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.ts-small-item img {
  width: 100px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
}

.ts-small-item h4 {
  margin: 0 0 8px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #111;
}

.ts-small-item h4 a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ts-small-item h4 a:hover {
  color: #de0000;
}

.ts-small-item small {
  font-size: 12px;
  color: #888;
}

/* Featured center - Large image with title */
.ts-featured {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ts-featured-image {
  width: 100%;
  height: 320px;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}

.ts-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.ts-featured-image:hover img {
  transform: scale(1.05);
}

.ts-featured-content h3 {
  margin: 0 0 10px 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
}

.ts-featured-content h3 a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ts-featured-content h3 a:hover {
  color: #de0000;
}

.ts-featured-content small {
  font-size: 13px;
  color: #888;
}

/* Bottom row (three columns) */
.ts-bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

.ts-bottom-item {
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 6px;
  padding: 12px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.ts-bottom-item:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.ts-bottom-item img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 10px;
}

.ts-bottom-item h4 {
  margin: 0 0 8px 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: #111;
}

.ts-bottom-item h4 a {
  color: #111;
  text-decoration: none;
  transition: color 0.3s ease;
}

.ts-bottom-item h4 a:hover {
  color: #de0000;
}

.ts-bottom-item small {
  font-size: 12px;
  color: #888;
}

/* See More/Less buttons */
.top-stories-buttons {
  text-align: center;
  margin-top: 25px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet view (768px - 992px) - Keep desktop layout but adjust sizes */
@media (max-width: 992px) {
  .ts-left {
    flex: 0 0 40%;
  }

  .ts-featured-image {
    height: 300px;
  }

  .ts-small-item img {
    width: 90px;
    height: 70px;
  }

  .ts-bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .ts-bottom-item img {
    height: 120px;
  }
}

/* Mobile view (max-width: 768px) - HORIZONTAL CARDS LAYOUT */
@media (max-width: 768px) {

  .ts-featured-image img {
    width: 100px;
    object-fit: cover;
  }

  /* Change to vertical stacking */
  .top-stories-layout {
    flex-direction: column;
    gap: 15px;
  }

  .ts-left,
  .ts-featured {
    width: 100%;
  }

  /* Convert all items to horizontal cards (image left, text right) */

  /* Left sidebar items */
  .ts-small-item {
    display: flex;
    gap: 12px;
    padding: 12px;
  }

  .ts-small-item img {
    flex: 0 0 100px;
    width: 100px;
    height: 80px;
  }

  .ts-small-item h4 {
    font-size: 16px;
    font-weight: bold;
  }

  /* Featured item - also horizontal */
  .ts-featured {
    display: flex;
    flex-direction: row;
    /* gap: 12px; */
    padding: 12px;
    background: #fff;
    border-radius: 6px;
  }

  .ts-featured-image {
    flex: 0 0 120px;
    width: 120px;
    height: 90px;
    margin-bottom: 0;
  }

  .ts-featured-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .ts-featured-content h3 {
    font-size: 16px;
    margin-bottom: 6px;
  }

  .ts-featured-content p {
    display: none;
    /* Hide description on mobile */
  }

  /* Bottom row - single column with horizontal cards */
  .ts-bottom {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .ts-bottom-item {
    display: flex;
    gap: 12px;
    padding: 12px;
  }

  .ts-bottom-item img {
    flex: 0 0 100px;
    width: 100px;
    height: 80px;
    margin-bottom: 0;
  }

  .ts-bottom-item h4 {
    font-size: 16px;
    font-weight: bold;
  }
}




/* Small mobile view (max-width: 480px) */
@media (max-width: 480px) {

  .ts-small-item img,
  .ts-bottom-item img {
    flex: 0 0 85px;
    width: 85px;
    height: 70px;
  }

  .ts-featured-image {
    flex: 0 0 100px;
    width: 100px;
    height: 80px;
  }

  .ts-featured-image img {
    width: 85px;
    height: 70px;
  }

  .ts-small-item h4,
  .ts-bottom-item h4,
  .ts-featured-content h3 {
    font-size: 13px;
  }

  .ts-small-item,
  .ts-bottom-item,
  .ts-featured {
    padding: 10px;
  }
}

/* Extra small devices (max-width: 360px) */
@media (max-width: 360px) {

  .ts-small-item img,
  .ts-bottom-item img {
    flex: 0 0 75px;
    width: 75px;
    height: 65px;
  }

  .ts-featured-image {
    flex: 0 0 90px;
    width: 90px;
    height: 75px;
  }

  .ts-small-item h4,
  .ts-bottom-item h4,
  .ts-featured-content h3 {
    font-size: 12px;
  }
}

/* ===== Podcasts section ===== */
.podcasts-section {
  background: #0a0a0a;
  /* dark background like screenshot */
  color: #fff;
  padding: 28px 20px;
  border-radius: 4px;
  margin-top: 30px;
}

.podcasts-section .section-title {
  color: #fff;
  margin-bottom: 18px;
  font-weight: 700;
  font-size: 20px;
}

/* grid: show 5 across on wide screens like screenshot */
.podcasts-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  align-items: start;
}

/* each podcast card */
.podcast-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: transparent;
  border-radius: 4px;
  overflow: hidden;
}

/* image thumb */
.podcast-thumb {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
}

/* title and caption */
.podcast-title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  text-decoration: none;
}

.podcast-sub {
  font-size: 12px;
  color: #d2d2d2;
  line-height: 1.3;
}

/* duration pill */
.podcast-duration {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 20px;
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: 12px;
  margin-top: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, .3);
}

/* bottom "listen more" link */
.podcasts-bottom {
  margin-top: 12px;
}

.podcasts-more {
  color: #cfcfcf;
  text-decoration: none;
  font-size: 14px;
}

/* responsive: fewer columns on smaller screens */
@media (max-width: 1200px) {
  .podcasts-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (max-width: 980px) {
  .podcasts-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 680px) {
  .podcasts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 420px) {
  .podcasts-grid {
    grid-template-columns: 1fr;
  }

  .podcast-thumb {
    height: 160px;
  }
}











/* ===== Lifestyle Feature styles ===== */
.lifestyle-feature {
  background: #f6f3ec;
  /* light warm background like screenshot */
  padding: 22px;
  margin-top: 30px;
  border-radius: 2px;
}

.lifestyle-feature .section-title {
  color: #8b867a;
  font-weight: 500;
  margin-bottom: 18px;
}

/* main layout: left big + right column */
.lf-layout {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 18px;
  align-items: start;
}

/* Left big feature */
.lf-left .feature-card {
  background: transparent;
}

.lf-left .feature-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 3px;
}

.lf-left .feature-card .feature-title {
  font-size: 20px;
  font-weight: 700;
  margin-top: 14px;
  color: #111;
}

.lf-left .feature-card .feature-time {
  color: #8e8b83;
  font-size: 13px;
  margin-top: 8px;
}

/* Right column grid (two columns of small cards) */
.lf-right {
  display: grid;
  gap: 14px;
}

.lf-right .small-card {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.lf-right .small-card img {
  width: 110px;
  height: 80px;
  object-fit: cover;
  border-radius: 3px;
}

.lf-right .small-card .sc-title {
  font-weight: 600;
  font-size: 14px;
  color: #222;
}

.lf-right .small-card .sc-time {
  display: block;
  color: #8e8b83;
  font-size: 12px;
  margin-top: 8px;
}

/* Bottom mini grid (two cards) */
.lf-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  /* margin-top: 18px; */
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.lf-bottom .mini {
  display: flex;
  gap: 12px;
  align-items: center;
}

.lf-bottom .mini img {
  width: 110px;
  height: 80px;
  object-fit: cover;
  border-radius: 3px;
}

.lf-bottom .mini .mini-title {
  font-size: 13px;
  font-weight: 600;
  color: #222;
}

.lf-bottom .mini .mini-time {
  font-size: 12px;
  color: #8e8b83;
  margin-top: 6px;
}

/* Responsive adjustments */
@media (max-width: 786px) {
  .lf-layout {
    grid-template-columns: 1fr;
  }

  .lf-left .feature-card img {
    height: 300px;
  }

  .lf-bottom {
    grid-template-columns: 1fr;
  }
}

@media(max-width:786px) {
  .lf-left .feature-card {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .lf-left .feature-card img {
    width: 110px;
    height: 80px;
  }

  .lf-left .feature-card .feature-title {
    font-weight: 600;
    font-size: 14px;
    color: #222;
  }
}






@media (max-width: 560px) {
  /* .lf-left .feature-card img {
    height: 220px;
  } */

  .lf-right .small-card img {
    width: 95px;
    height: 68px;
  }

  .lf-bottom .mini img {
    width: 100px;
    height: 72px;
  }

  .lf-left .feature-card img {
    width: 95px;
    height: 68px;
  }
}















/* ===== Insider Section ===== */

.insider-section {
  margin-top: 40px;
}

.ins-layout {
  display: grid;
  grid-template-columns: 58% 42%;
  gap: 20px;
}

/* Large left video */
.ins-left .ins-big-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: 4px;
}

.ins-big-title {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  margin-top: 10px;
}

.ins-big-time {
  font-size: 13px;
  color: #777;
  margin-top: 6px;
}

/* Small video grid */
.ins-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ins-small-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 4px;
}

.ins-small-title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  margin-top: 8px;
}

.ins-small-time {
  font-size: 12px;
  color: #777;
}

/* Play icon overlay */
.ins-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 38px;
  color: white;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
}

/* Duration badge */
.ins-duration {
  position: absolute;
  bottom: 6px;
  right: 6px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 2px 6px;
  font-size: 11px;
  border-radius: 3px;
}

/* Thumbnail wrapper */
.ins-thumb {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}

/* Bottom "more" link */
.ins-more {
  display: inline-block;
  margin-top: 14px;
  font-size: 14px;
  color: #111;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .ins-layout {
    grid-template-columns: 1fr;
  }

  .ins-left .ins-big-card img {
    height: 240px;
  }
}



















/* ===== Search Dropdown ===== */
.search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: none;
  max-height: 400px;
  overflow-y: auto;
}

.search-dropdown.show {
  display: block;
}

.dropdown-section {
  padding: 15px;
  border-bottom: 1px solid #eee;
}

.dropdown-section:last-child {
  border-bottom: none;
}

.dropdown-section h4 {
  margin: 0 0 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.dropdown-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-section li {
  padding: 8px 0;
  cursor: pointer;
  font-size: 14px;
  color: #555;
  transition: background-color 0.2s ease;
}

.dropdown-section li:hover {
  background-color: #f8f9fa;
  color: #de0000;
}

/* ===== Visual Stories ===== */

.visual-stories {
  margin-top: 30px;
  overflow-x: hidden;
  /* Prevent section overflow */
  width: 100%;
}

.vs-wrapper {
  position: relative;
  width: 100%;
  overflow-x: hidden;
  /* Contain the slider */
}

.vs-slider {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  /* Snap scrolling for smooth one-by-one sliding */
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.vs-slider::-webkit-scrollbar {
  height: 6px;
}

.vs-slider::-webkit-scrollbar-thumb {
  background: #aaa;
  border-radius: 4px;
}

/* Story card */
.vs-card {
  min-width: 220px;
  height: 360px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  scroll-snap-align: start;
  /* Snap each card */
}

.vs-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Gradient overlay */
.vs-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px 14px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: #fff;
}

.vs-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
}



.vs-title>a {
  color: white !important;
}


.vs-time {
  font-size: 12px;
  margin-bottom: 10px;
}

.vs-btn {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 12px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
}

/* Arrows */
.vs-arrow {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: #fff;
  border: 1px solid #ddd;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: #333;
  display: none;
  /* Hidden on desktop */
  align-items: center;
  justify-content: center;
  z-index: 20;
}

.vs-left {
  left: -15px;
}

.vs-right {
  right: -15px;
}

.vs-arrow:hover {
  background: #f2f2f2;
}

/* Bottom link */
.vs-more {
  display: inline-block;
  margin-top: 14px;
  color: #222;
  font-size: 14px;
  text-decoration: none;
}

/* Visual Story Card Arrows - Same style as Shorts */
.vs-card-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border: 2px solid rgba(0, 0, 0, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 30;
  color: #333;
  font-size: 18px;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 1;
  /* Always visible */
}

.vs-card-arrow:hover {
  background: #fff;
  color: #de0000;
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(222, 0, 0, 0.3);
}

.vs-card-arrow-left {
  left: 10px;
}

.vs-card-arrow-right {
  right: 10px;
}

/* Visual Stories Mobile Responsive */
@media (max-width: 768px) {

  /* Show arrows on tablet and mobile */
  .vs-arrow {
    display: flex;
    width: 30px;
    height: 30px;
    font-size: 18px;
  }

  .vs-card {
    min-width: 200px;
    height: 340px;
  }
}

@media (max-width: 640px) {
  .vs-wrapper {
    padding: 0 10px;
  }

  .vs-slider {
    gap: 12px;
  }

  .vs-card {
    min-width: calc(100vw - 60px);
    max-width: 400px;
    height: 450px;
  }

  /* Hide arrows on small screens */
  .vs-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .vs-card {
    min-width: calc(100vw - 40px);
    height: 500px;
  }

  .vs-slider {
    gap: 10px;
  }
}









/* ===== Simple Article Page Design ===== */
.article-section {
  min-height: 80vh;
  max-width: 800px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Author Bio Section */
.author-bio {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Social Sharing Section */
.social-share {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Comments Section */
/* COMMENTS SECTION MAIN WRAPPER */
.comments-section {
  max-width: 800px;
  margin: 50px auto;
  padding: 0 20px;
}

.comments-section h3 {
  font-size: 26px;
  margin-bottom: 25px;
  border-left: 4px solid #de0000;
  padding-left: 10px;
}

/* COMMENTS LIST */
.comments-list .comment-item {
  background: #fff;
  padding: 15px 20px;
  margin-bottom: 15px;
  border-radius: 10px;
  border: 1px solid #eee;
  box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.05);
}

.comment-item h5 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}

.comment-item p {
  margin: 5px 0 0;
  font-size: 14px;
  color: #555;
  line-height: 1.5;
}

/* COMMENT FORM */
.comment-form {
  margin-top: 35px;
  padding: 25px;
  background: #fafafa;
  border-radius: 12px;
  border: 1px solid #eee;
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.06);
}

.comment-form h4 {
  font-size: 20px;
  margin-bottom: 20px;
  border-left: 4px solid #de0000;
  padding-left: 10px;
}

/* Form Group */
.form-group {
  margin-bottom: 20px;
}

/* Input Styling */
.comment-form input,
.comment-form textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 15px;
  color: #333;
  outline: none;
  transition: 0.3s ease;
}

/* Focus Effects */
.comment-form input:focus,
.comment-form textarea:focus {
  border-color: #de0000;
  box-shadow: 0px 0px 6px rgba(222, 0, 0, 0.2);
}

/* Submit Button */
.comment-form .btn {
  background: #de0000;
  color: #fff;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  width: auto;
}

.comment-form .btn:hover {
  background: #b40000;
}

/* RESPONSIVE */
@media (max-width: 600px) {

  .comments-section {
    padding: 0 15px;
  }

  .comment-form {
    padding: 18px;
  }

  .comment-form .btn {
    width: 100%;
    /* मोबाइल में पूरा बटन */
    text-align: center;
  }

  .comments-section h3,
  .comment-form h4 {
    font-size: 22px;
  }
}


/* Article Header */
.article-header h1 {
  font-size: 36px;
  font-weight: 700;
  line-height: 1.3;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  padding: 15px 0;
  margin-bottom: 30px;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
  font-size: 14px;
  color: #666;
}

.article-meta .author {
  color: #333;
}

.article-meta strong {
  color: #de0000;
}

.category-tag {
  background: #de0000;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

/* Article Image */
.article-image {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 30px;
}

/* Article Body */
.article-body {
  font-size: 18px;
  line-height: 1.8;
  color: #333;
}

.article-body p {
  margin-bottom: 20px;
  text-align: justify;
}

.article-body p:first-of-type {
  font-size: 20px;
  line-height: 1.7;
  color: #222;
}

/* Responsive */
@media (max-width: 768px) {
  .article-section {
    margin: 20px auto;
  }

  .article-header h1 {
    font-size: 28px;
  }

  .article-body {
    font-size: 16px;
  }

  .article-body p:first-of-type {
    font-size: 18px;
  }
}

/* Social Sharing Section */
.share-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  color: #333;
}

.share-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 15px;
  border: 1px solid #ddd;
  border-radius: 25px;
  background: #fff;
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
}

.share-btn:hover {
  background: #f8f9fa;
  border-color: #de0000;
  color: #de0000;
  transform: translateY(-2px);
}

.share-btn.facebook:hover {
  background: #1877f2;
  color: #fff;
  border-color: #1877f2;
}

.share-btn.twitter:hover {
  background: #1da1f2;
  color: #fff;
  border-color: #1da1f2;
}

.share-btn.linkedin:hover {
  background: #0077b5;
  color: #fff;
  border-color: #0077b5;
}

.share-btn.whatsapp:hover {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
}

/* Author Bio Section */
.author-card {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 30px;
  background: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

.author-photo-wrapper {
  flex-shrink: 0;
}

.author-photo {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 24px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.author-description {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.author-social {
  display: flex;
  gap: 15px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.2s ease;
}

.social-link:hover {
  color: #de0000;
}

.social-link.twitter:hover {
  color: #1da1f2;
}

.social-link.linkedin:hover {
  color: #0077b5;
}

/* Related Articles Section */
.related-title {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.related-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.2s ease;
  display: flex;
  flex-direction: column;
}

.related-card:hover {
  transform: translateY(-5px);
}

.related-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.related-content {
  padding: 15px;
  flex: 1;
}

.related-content h4 {
  font-size: 18px;
  color: #0066cc;
  margin-bottom: 8px;
  font-weight: 600;
}

.related-content h4 a {
  text-decoration: none;
  color: inherit;
}

.related-content h4 a:hover {
  color: #de0000;
}

.related-content small {
  color: #777;
  font-size: 14px;
}