/* =========================================
   1. VARIABLES & RESET
========================================= */
:root {
  --color-brand: #B92025;
  --color-dark: #111;
  --color-gray: #f4f4f4;
  --color-text-main: #212529;
  --color-text-muted: #6c757d;
  --font-ui: "Inter", system-ui, -apple-system, sans-serif;
  --font-editorial: "Noto Serif Devanagari", serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: var(--font-ui);
  color: var(--color-text-main);
  background-color: #fff;
  overflow-x: hidden;
  overflow-y: auto !important;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

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

/* GLOBAL CONTAINER */
.container {
  max-width: 1296px;
  margin: 0 auto;
  padding: 0 15px;
}

/* SECTION TITLES */
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 10px;
  border-bottom: 2px solid transparent;
}
.section-head h2,
.section-head .section-title {
  font-size: 24px;
  font-weight: 700;
  font-family: var(--font-editorial);
  margin: 0;
  color: var(--color-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}
.section-head h2::after,
.section-head .section-title::after {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-brand);
  margin-top: 5px;
}
.section-head .see-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-brand);
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: gap 0.2s;
}
.section-head .see-more:hover {
  gap: 8px;
  color: rgb(141.5207373272, 24.4792626728, 28.3041474654);
}

/* =========================================
   2. STORY TRAY (Homepage)
========================================= */
.stories-section {
  padding: 20px 0 0 0;
  background: #fff;
  margin-bottom: 20px;
}
.stories-section .section-title {
  margin-left: 5px;
  font-size: 18px;
  margin-bottom: 15px;
}
.stories-section .story-tray {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 5px 5px 20px 5px;
  scrollbar-width: none;
}
.stories-section .story-tray::-webkit-scrollbar {
  display: none;
}
.stories-section .story-tray .story-card {
  flex: 0 0 110px;
  height: 190px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #f0f0f0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.stories-section .story-tray .story-card .story-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.stories-section .story-tray .story-card .story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 10px;
}
.stories-section .story-tray .story-card .story-overlay .story-icon {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid var(--color-brand);
  background: #fff;
  padding: 1px;
  z-index: 2;
}
.stories-section .story-tray .story-card .story-overlay .story-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 50%;
}
.stories-section .story-tray .story-card .story-overlay .story-title {
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.stories-section .story-tray .story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
.stories-section .story-tray .story-card:hover .story-bg {
  transform: scale(1.05);
}

/* =========================================
   3. STORY VIEWER (Fullscreen Overlay)
========================================= */
.story-viewer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 99999;
  justify-content: center;
  align-items: center;
}
.story-viewer.active {
  display: flex;
}
.story-viewer .story-viewport {
  width: 100%;
  height: 100%;
  max-width: 450px;
  position: relative;
  background: #111;
  overflow: hidden;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
  /* Progress Bar */
  /* Header */
  /* Main Image */
  /* Footer Overlay */
  /* Tap Zones */
}
@media (min-width: 768px) {
  .story-viewer .story-viewport {
    height: 90vh;
    border-radius: 16px;
    margin-top: 2vh;
  }
}
.story-viewer .story-viewport .viewer-progress {
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  z-index: 40;
  display: flex;
  gap: 4px;
}
.story-viewer .story-viewport .viewer-progress .p-bar {
  flex: 1;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  overflow: hidden;
}
.story-viewer .story-viewport .viewer-progress .p-bar .p-fill {
  width: 0%;
  height: 100%;
  background: #fff;
}
.story-viewer .story-viewport .viewer-header {
  position: absolute;
  top: 25px;
  left: 15px;
  right: 15px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.story-viewer .story-viewport .viewer-header .v-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.story-viewer .story-viewport .viewer-header .v-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #fff;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.story-viewer .story-viewport .viewer-header .v-meta {
  display: flex;
  flex-direction: column;
  color: #fff;
  line-height: 1.2;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}
.story-viewer .story-viewport .viewer-header .v-meta .v-name {
  font-size: 0.95rem;
  font-weight: 700;
}
.story-viewer .story-viewport .viewer-header .v-meta .v-time {
  font-size: 0.75rem;
  opacity: 0.9;
}
.story-viewer .story-viewport .viewer-header .v-close {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.9;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.8);
  padding: 0 5px;
  transition: opacity 0.2s;
}
.story-viewer .story-viewport .viewer-header .v-close:hover {
  opacity: 1;
  transform: scale(1.1);
}
.story-viewer .story-viewport .viewer-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.story-viewer .story-viewport .viewer-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6), transparent);
  padding: 80px 20px 40px;
  z-index: 40;
  pointer-events: none;
}
.story-viewer .story-viewport .viewer-overlay .viewer-footer {
  text-align: center;
  pointer-events: auto;
}
.story-viewer .story-viewport .viewer-overlay .viewer-footer .v-headline {
  color: #fff;
  font-family: var(--font-ui);
  font-size: 1.4rem;
  font-weight: 700;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
  margin-bottom: 20px;
  line-height: 1.4;
  text-align: left;
}
.story-viewer .story-viewport .viewer-overlay .viewer-footer #vSwipe {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  animation: floatUp 1.5s infinite;
  opacity: 0.9;
  padding: 10px;
}
.story-viewer .story-viewport .viewer-overlay .viewer-footer #vSwipe i {
  font-size: 24px;
  color: #fff;
  filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.5));
}
.story-viewer .story-viewport .viewer-overlay .viewer-footer #vSwipe span {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #fff;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.8);
}
.story-viewer .story-viewport .tap-zone {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 30;
}
.story-viewer .story-viewport .tap-left {
  left: 0;
  width: 30%;
}
.story-viewer .story-viewport .tap-right {
  right: 0;
  width: 30%;
}
.story-viewer .story-viewport .tap-center {
  left: 30%;
  width: 40%;
}

@keyframes floatUp {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.8;
  }
  50% {
    transform: translateY(-8px);
    opacity: 1;
  }
}
/* =========================================
   4. NEWS TICKER
========================================= */
.news-ticker-area {
  margin-top: 20px;
  color: #fff;
  font-family: var(--font-ui);
  padding: 0 0;
  overflow: hidden;
}
.news-ticker-area .ticker-wrapper {
  display: flex;
  align-items: center;
  background: #333;
  border-radius: 4px;
  overflow: hidden;
}
.news-ticker-area .ticker-label {
  background: var(--color-brand);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  padding: 8px 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 2;
}
.news-ticker-area .ticker-label .blink {
  color: #fff;
  animation: blinker 1.5s linear infinite;
}
.news-ticker-area .ticker-content {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 6px 0;
  height: 32px;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(to right, transparent, black 10px, black 95%, transparent);
          mask-image: linear-gradient(to right, transparent, black 10px, black 95%, transparent);
}
.news-ticker-area .ticker-track {
  display: inline-flex;
  white-space: nowrap;
  animation: tickerScroll 30s linear infinite;
  padding-left: 20px;
}
.news-ticker-area .ticker-track:hover {
  animation-play-state: paused;
}
.news-ticker-area .ticker-item {
  color: #ddd;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.2s;
}
.news-ticker-area .ticker-item:hover {
  color: #fff;
  text-decoration: underline;
}
.news-ticker-area .ticker-divider {
  margin: 0 15px;
  color: #666;
  font-size: 10px;
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes blinker {
  50% {
    opacity: 0;
  }
}
/* =========================================
   5. HERO SECTION
========================================= */
.hero-exact {
  padding: 30px 0;
  margin-bottom: 40px;
  /* Main Hero Card */
  /* Hero Side List */
}
.hero-exact .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 30px;
}
@media (max-width: 992px) {
  .hero-exact .container {
    grid-template-columns: 1fr;
  }
}
.hero-exact .hero-main {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  color: #fff;
  height: 450px;
  /* Fixed height for desktop */
}
@media (max-width: 768px) {
  .hero-exact .hero-main {
    height: 350px;
  }
}
@media (max-width: 576px) {
  .hero-exact .hero-main {
    height: 280px;
    /* Smaller on mobile */
  }
}
.hero-exact .hero-main img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-exact .hero-main .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.4), transparent);
}
.hero-exact .hero-main .hero-content {
  position: absolute;
  left: 30px;
  bottom: 30px;
  right: 30px;
  max-width: 90%;
}
@media (max-width: 576px) {
  .hero-exact .hero-main .hero-content {
    left: 15px;
    bottom: 15px;
    right: 15px;
  }
}
.hero-exact .hero-main .hero-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-family: var(--font-ui);
}
.hero-exact .hero-main .hero-top .hero-category {
  background: var(--color-brand);
  color: #fff;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-exact .hero-main .hero-top .hero-time {
  font-size: 12px;
  opacity: 0.8;
}
.hero-exact .hero-main .hero-title {
  font-family: var(--font-editorial);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 576px) {
  .hero-exact .hero-main .hero-title {
    font-size: 20px;
    /* Fixed mobile font size */
  }
}
.hero-exact .hero-main:hover img {
  transform: scale(1.03);
}
.hero-exact .hero-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: space-between;
}
.hero-exact .hero-side-card {
  display: flex;
  gap: 15px;
  text-decoration: none;
  color: var(--color-text-main);
  align-items: stretch;
  /* Image Constraint */
}
.hero-exact .hero-side-card img {
  width: 140px;
  height: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
  transition: opacity 0.2s;
}
.hero-exact .hero-side-card .hero-side-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-exact .hero-side-card .hero-side-body .hero-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.hero-exact .hero-side-card .hero-side-body .hero-author img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
.hero-exact .hero-side-card .hero-side-body h3 {
  font-family: var(--font-editorial);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 6px 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-exact .hero-side-card .hero-side-body p {
  font-size: 13px;
  color: var(--color-text-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.hero-exact .hero-side-card:hover h3 {
  color: var(--color-brand);
}
.hero-exact .hero-side-card:hover img {
  opacity: 0.9;
}

/* =========================================
   6. VIDEO SECTION (FIXED RED LINE & MOBILE LAYOUT)
========================================= */
.video-section {
  padding: 60px 0;
  background-color: #0f0f0f;
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
  /* Meta Header */
  /* Thumbnail Area */
  /* Content Area */
  /* Footer Stats */
  /* Main vs Side Cards */
  /* Side Grid (Responsive Logic) */
}
.video-section .section-head {
  position: relative;
  /* Context for absolute line */
}
.video-section .section-head h2 {
  color: #fff;
  position: relative;
  padding-bottom: 15px;
  /* Spacing for the line */
  margin-bottom: 0;
  /* The Red Line (Below Heading) */
}
.video-section .section-head h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 45px;
  height: 3px;
  background: var(--color-brand);
  border-radius: 2px;
}
.video-section .video-layout-wrapper {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 25px;
  /* Tablet & Mobile: Stack Columns */
}
@media (max-width: 992px) {
  .video-section .video-layout-wrapper {
    grid-template-columns: 1fr;
  }
}
.video-section .video-card {
  display: flex;
  flex-direction: column;
  background-color: #1a1a1a;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
  border: 1px solid #333;
}
.video-section .video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: var(--color-brand);
}
.video-section .video-card:hover .play-btn {
  background: var(--color-brand) !important;
  transform: translate(-50%, -50%) scale(1.1) !important;
}
.video-section .video-card:hover h3 {
  color: var(--color-brand) !important;
}
.video-section .card-header-meta {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #222;
  border-bottom: 1px solid #333;
}
.video-section .card-header-meta .author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 2px solid #333;
}
.video-section .card-header-meta .meta-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.video-section .card-header-meta .meta-text .author-name {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}
.video-section .card-header-meta .meta-text .upload-time {
  font-size: 0.75rem;
  color: #888;
}
.video-section .video-thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio */
  background: #000;
  overflow: hidden;
}
.video-section .video-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.video-section .video-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  transition: 0.3s;
  z-index: 2;
}
.video-section .video-thumb .play-btn.large {
  width: 60px;
  height: 60px;
  font-size: 28px;
}
.video-section .video-thumb .play-btn.small {
  width: 44px;
  height: 44px;
  font-size: 20px;
}
.video-section .card-body-content {
  padding: 15px;
  flex-grow: 1;
}
.video-section .card-body-content h3 {
  color: #e0e0e0;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  transition: color 0.2s;
}
.video-section .card-body-content .video-summary {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #aaa;
  margin-top: 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-section .card-footer-stats {
  padding: 12px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #222;
  border-top: 1px solid #333;
}
.video-section .card-footer-stats .cat-badge {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 8px;
  text-transform: uppercase;
}
.video-section .card-footer-stats .stats-group {
  display: flex;
  gap: 15px;
  font-size: 0.8rem;
  color: #888;
}
.video-section .card-footer-stats .stats-group span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.video-section .card-footer-stats .stats-group span i {
  font-size: 14px;
}
.video-section .main-card h3 {
  font-size: 1.4rem;
}
.video-section .side-card h3 {
  font-size: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.video-section .side-video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  /* On Mobile: Ensure 2 Columns (not 1fr) */
}
@media (max-width: 576px) {
  .video-section .side-video-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    /* Smaller gap for mobile */
  }
}

/* =========================================
   7. TRENDY NEWS (Fixed 2 Columns Mobile)
========================================= */
.trendy-news,
.popular-news,
.latest-news,
.weekly-highlights {
  margin: 60px 0;
}

.trendy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media (max-width: 1200px) {
  .trendy-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 992px) {
  .trendy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .trendy-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.trendy-grid .trendy-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.trendy-grid .trendy-card .trendy-thumb {
  width: 100%;
  padding-top: 65%;
  /* Fixed Aspect Ratio */
  position: relative;
  overflow: hidden;
}
.trendy-grid .trendy-card .trendy-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.trendy-grid .trendy-card .trendy-body {
  padding: 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media (max-width: 576px) {
  .trendy-grid .trendy-card .trendy-body {
    padding: 10px;
  }
}
.trendy-grid .trendy-card .trendy-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.trendy-grid .trendy-card .trendy-meta img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
@media (max-width: 576px) {
  .trendy-grid .trendy-card .trendy-meta {
    font-size: 10px;
  }
}
.trendy-grid .trendy-card .trendy-title {
  font-family: var(--font-editorial);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 8px 0;
  color: var(--color-text-main);
}
@media (max-width: 576px) {
  .trendy-grid .trendy-card .trendy-title {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.trendy-grid .trendy-card .trendy-excerpt {
  font-size: 13px;
  color: #555;
  margin-bottom: 15px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (max-width: 576px) {
  .trendy-grid .trendy-card .trendy-excerpt {
    display: none;
  }
}
.trendy-grid .trendy-card .trendy-footer {
  margin-top: auto;
  font-size: 12px;
  color: var(--color-brand);
  font-weight: 600;
  text-transform: uppercase;
}
@media (max-width: 576px) {
  .trendy-grid .trendy-card .trendy-footer {
    font-size: 10px;
  }
}
.trendy-grid .trendy-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}
.trendy-grid .trendy-card:hover .trendy-title {
  color: var(--color-brand);
}
.trendy-grid .trendy-card:hover .trendy-thumb img {
  transform: scale(1.05);
}

/* =========================================
   8. LATEST NEWS (Grid Fix)
========================================= */
.latest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}
@media (max-width: 992px) {
  .latest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .latest-grid {
    grid-template-columns: 1fr;
  }
}
.latest-grid .latest-card {
  display: flex;
  gap: 15px;
  text-decoration: none;
  color: inherit;
  align-items: flex-start;
}
.latest-grid .latest-card .thumb {
  width: 110px;
  height: 110px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.latest-grid .latest-card .thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.latest-grid .latest-card .body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.latest-grid .latest-card .body h4 {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px 0;
  color: var(--color-text-main);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.latest-grid .latest-card .body .meta {
  display: flex;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 5px;
}
.latest-grid .latest-card .body .meta img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.latest-grid .latest-card .body .footer {
  font-size: 11px;
  color: var(--color-brand);
  font-weight: 600;
  text-transform: uppercase;
  margin-top: auto;
}
.latest-grid .latest-card:hover h4 {
  color: var(--color-brand);
}
.latest-grid .latest-card:hover .thumb img {
  transform: scale(1.05);
}

/* Featured Article within Latest */
.latest-featured {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 24px;
  background: #f8f9fa;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  margin-bottom: 32px;
  border: 1px solid #e9ecef;
}
@media (max-width: 768px) {
  .latest-featured {
    grid-template-columns: 1fr;
  }
}
.latest-featured .featured-thumb {
  height: 350px;
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .latest-featured .featured-thumb {
    height: 250px;
  }
}
.latest-featured .featured-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.latest-featured .featured-content {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.latest-featured .featured-content .meta {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #666;
  margin-bottom: 15px;
}
.latest-featured .featured-content .meta img {
  width: 24px;
  height: 24px;
  border-radius: 50%;
}
.latest-featured .featured-content .meta time {
  margin-left: auto;
  color: #999;
}
.latest-featured .featured-content h3 {
  font-family: var(--font-editorial);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 15px 0;
  color: var(--color-dark);
}
@media (max-width: 576px) {
  .latest-featured .featured-content h3 {
    font-size: 20px;
  }
}
.latest-featured .featured-content p {
  color: #555;
  line-height: 1.6;
  margin: 0 0 20px 0;
  font-size: 15px;
}
@media (max-width: 576px) {
  .latest-featured .featured-content p {
    display: none;
  }
}
.latest-featured .featured-content .footer {
  margin-top: auto;
  color: var(--color-brand);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.latest-featured:hover h3 {
  color: var(--color-brand);
}
.latest-featured:hover .featured-thumb img {
  transform: scale(1.05);
}

/* =========================================
   9. POPULAR NEWS (Fixed 2 Columns Mobile)
========================================= */
.popular-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
@media (max-width: 992px) {
  .popular-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .popular-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}
.popular-list .popular-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}
.popular-list .popular-item .popular-thumb {
  width: 100%;
  padding-top: 65%;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 12px;
}
.popular-list .popular-item .popular-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.popular-list .popular-item h3 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px 0;
  color: var(--color-text-main);
}
@media (max-width: 576px) {
  .popular-list .popular-item h3 {
    font-size: 14px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.popular-list .popular-item .popular-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 5px;
}
.popular-list .popular-item .popular-author img {
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
@media (max-width: 576px) {
  .popular-list .popular-item .popular-author {
    font-size: 10px;
  }
}
.popular-list .popular-item .popular-meta {
  font-size: 12px;
  color: var(--color-brand);
  font-weight: 600;
  margin-top: auto;
}
@media (max-width: 576px) {
  .popular-list .popular-item .popular-meta {
    font-size: 10px;
  }
}
.popular-list .popular-item:hover h3 {
  color: var(--color-brand);
}
.popular-list .popular-item:hover .popular-thumb img {
  transform: scale(1.05);
}

/* =========================================
   10. WEEKLY SLIDER
========================================= */
.weekly-slider-wrapper {
  overflow: hidden;
  padding-bottom: 20px;
}

.weekly-slider {
  display: flex;
  gap: 25px;
  overflow-x: auto;
  padding: 5px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.weekly-slider::-webkit-scrollbar {
  display: none;
}
.weekly-slider .weekly-card {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border: 1px solid #f0f0f0;
  border-radius: 12px;
  overflow: hidden;
  padding-bottom: 15px;
}
.weekly-slider .weekly-card .weekly-thumb {
  width: 100%;
  padding-top: 60%;
  position: relative;
  overflow: hidden;
  margin-bottom: 15px;
}
.weekly-slider .weekly-card .weekly-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
}
.weekly-slider .weekly-card .weekly-body {
  padding: 0 15px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.weekly-slider .weekly-card .weekly-body h3 {
  font-family: var(--font-editorial);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 10px 0;
  color: var(--color-text-main);
}
.weekly-slider .weekly-card .weekly-body .weekly-author {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 10px;
}
.weekly-slider .weekly-card .weekly-body .weekly-author img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}
.weekly-slider .weekly-card .weekly-body .weekly-footer {
  margin-top: auto;
  font-size: 12px;
  color: var(--color-brand);
  font-weight: 600;
}
.weekly-slider .weekly-card:hover {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  transform: translateY(-3px);
}
.weekly-slider .weekly-card:hover h3 {
  color: var(--color-brand);
}
.weekly-slider .weekly-card:hover .weekly-thumb img {
  transform: scale(1.05);
}/*# sourceMappingURL=index.css.map */