
 :root {
      --bg: #dff0e8;
      --accent: #b5001f;
      --card-radius: 16px;
      --card-w: 280px;
      --card-h: 380px;
      --overlap: 40px;
      --text-white: #ffffff;
      --caption-bg: rgba(20, 20, 20, 0.55);
      --active-bg: #1a4a72;
    }


body {
  margin: 0;
 
}

/* Sticky Header */
.header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  border-bottom: 1px solid #ddd;
}

/* Top bar */
.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-size: 14px;
}

.top-left {
  display: flex;
  gap: 15px;
  align-items: center;
}

.epaper {
  color: red;
  font-weight: bold;
  cursor: pointer;
}

.top-right {
  display: flex;
  gap: 15px;
  align-items: center;
}

.subscribe-btn {
  background: #c40018;
  color: #fff;
  border: none;
  padding: 8px 14px;
  font-weight: bold;
  border-radius: 4px;
  cursor: pointer;
}

/* Logo */
.logo {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  letter-spacing: 2px;
  padding: 10px 0;
}

/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  gap: 20px;
  border-top: 1px solid #eee;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-icon {
  font-size: 20px;
  cursor: pointer;
}

.search {
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 25px;
  margin-left: 197px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
}

.nav-links a:hover {
  color: #c40018;
}

/* Dummy content */
.content {
  height: 2000px;
  
}

/* subscribe modal */
/* Modal overlay */
.modal {
  display: none;   /* 🔴 THIS IS REQUIRED */
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
}


/* Show modal when active */
.modal.show {
  display: block;
}

/* Center box */
.modal-content {
  background: #fff;
  width: 350px;
  padding: 25px;
  border-radius: 10px;

  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}



/* Close button */
.close-btn {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  color: #888;
  cursor: pointer;
  transition: 0.2s;
}
.close-btn:hover {
  color: #000;
  transform: rotate(90deg);
}

/* Title */
.modal-content h2 {
  margin-bottom: 10px;
  font-size: 22px;
}

/* Subtitle */
.modal-content p {
  font-size: 14px;
  color: #666;
}

/* Input field */
.email-input {
  width: 100%;
  padding: 12px;
  margin: 18px 0;
  border: 1px solid #ddd;
  border-radius: 6px;
  outline: none;
  transition: 0.3s;
}
.email-input:focus {
  border-color: #c40018;
  box-shadow: 0 0 5px rgba(196, 0, 24, 0.3);
}

/* Gradient Subscribe Button */
.subscribe-submit {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  color: #fff;
  background: linear-gradient(135deg, #c40018, #ff4b5c);
  cursor: pointer;
  transition: 0.3s;
}
.subscribe-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(196, 0, 24, 0.4);
}

/* Small footer text */
.modal-footer {
  margin-top: 12px;
  font-size: 12px;
  color: #999;
}

/* Wrapper */
.news-wrapper {
  width: 100%;
  height: 500px;
  background: #dbe7f2;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Track */
.news-track {
  position: relative;
  width: 900px;
  height: 100%;
}

/* Card base */
.news-card {
  position: absolute;
  width: 260px;
  height: 420px;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Image */
.news-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Text overlay */
.news-card p {
  position: absolute;
  bottom: 0;
  padding: 15px;
  color: #fff;
  font-weight: 500;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
}

/* Center card */
.news-card.active {
  left: 50%;
  transform: translateX(-50%) scale(1.1);
  z-index: 5;
}

/* Left side */
.news-card.left {
  left: 20%;
  transform: translateX(-50%) scale(0.9);
  z-index: 3;
}

/* Right side */
.news-card.right {
  left: 80%;
  transform: translateX(-50%) scale(0.9);
  z-index: 3;
}

/* Far left (faded) */
.news-card.left-fade {
  left: 5%;
  transform: translateX(-50%) scale(0.8);
  opacity: 0.5;
  z-index: 1;
}

/* Far right (faded) */
.news-card.right-fade {
  left: 95%;
  transform: translateX(-50%) scale(0.8);
  opacity: 0.5;
  z-index: 1;
}
/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes scaleUp {
  to {
    transform: translate(-50%, -50%) scale(1);
  }
}

/* Wrapper */
.tp-wrapper {
  max-width: 1400px;
  margin: auto;
  padding: 30px;
  
}

/* Heading */
.tp-heading {
  color: #c40018;
     font-size: 20px;
    letter-spacing: -1px;
  margin-bottom: 15px;
}

/* Grid Layout */
.tp-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr;
  gap: 25px;
}

/* LEFT SECTION */
.tp-left {
  position: relative;
}

.tp-main-img {
  width: 100%;
  border-radius: 6px;
}

.tp-live {
  color: #c40018;
  font-weight: bold;
  margin-top: 10px;
}

.tp-title {
  font-size: 25px;
  margin: 10px 0;
  line-height: 1.2;
  font-family: "Merriweather", serif;
}

.tp-desc {
  color: #444;
  font-size: 16px;
}

/* MIDDLE LIST */
.tp-middle {
  border-left: 1px solid #ddd;
  padding-left: 15px;
}

.tp-item {
  border-bottom: 1px solid #eee;
  padding: 12px 0;
}

.tp-item p {
  margin: 5px 0;
  font-size: 16px;
   font-family: "Merriweather", serif;
}

/* TAGS */
.tp-tag {
  font-size: 12px;
  font-weight: bold;
  color: #c40018;
}

.tp-tag.red {
  color: #c40018;
  font-weight: bolder;
}

/* RIGHT SECTION */
.tp-right {
  border-left: 1px solid #ddd;
  padding-left: 15px;
}

.tp-editorial h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.tp-editorial p {
  border-bottom: 1px solid #eee;
  padding: 8px 0;
}

.tp-comment {
  margin-top: 15px;
}

.tp-comment p {
  margin-top: 5px;
}

.tp-latest {
  margin-top: 20px;
}

.tp-latest h4 {
  color: #c40018;
}

.tp-latest span {
  color: #c40018;
  font-size: 12px;
}

.wrapper {
  max-width: 900px;
  margin: auto;
}

.news-block {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #ddd;
}

.thumb-box img {
  width: 220px;
  height: 140px;
  object-fit: cover;
}

.content-box {
  flex: 1;
}

.tag-live {
  color: #c4002f;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 6px;
}

.tag-category {
  color: #c4002f;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.headline-det {
  font-size: 14px;
  line-height: 1.3;
  margin: 5px 0 10px;
  font-weight: normal;
  font-family: "Merriweather", serif;
}

.author {
  font-size: 8px;
  letter-spacing: 1px;
  color: #000;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  display: inline-block;
  padding-bottom: 2px;
  font-family: "Merriweather", serif;
}
a{
  color: black;
  text-decoration: none;
}
a:hover{
  text-decoration: underline;
}

.main-wrap {
  width: 420px;
  margin: auto;
  background: #fff;
  padding: 20px;
}

/* Common Story Block */
.story-item {
  padding: 15px 0;
  border-bottom: 1px solid #ddd;
}

/* Labels */
.label-live {
  color: #c4002f;
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 6px;
}

.label-cat {
  color: #c4002f;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 6px;
}

/* Title */
.story-title {
  font-size: 15px;
  line-height: 1.3;
  margin: 5px 0 10px;
  font-weight: normal;
  font-family: "Merriweather", serif;
}

/* Author */
.story-author {
  font-size: 12px;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  display: inline-block;
  padding-bottom: 2px;
  letter-spacing: 1px;
}

/* Feature Card */
.feature-card {
  position: relative;
  margin-top: 20px;
  background-color: black;
}

.feature-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Overlay */
.overlay-box {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 90%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0));
  color: #fff;
  background-color: black;
}

.label-feature {
  font-size: 13px;
  font-weight: bold;
  margin-bottom: 5px;
  font-family: "Merriweather", serif;
}

.feature-title {
  font-size: 16px;
  margin: 5px 0;
  line-height: 1.3;
  font-family: "Merriweather", serif;
}

.feature-author {
  font-size: 12px;
  text-transform: uppercase;
  border-bottom: 1px solid #fff;
  display: inline-block;
  padding-bottom: 2px;
}

.ln-container {
  width: 380px;
 font-family: "Merriweather", serif;
  color: #111;
}

/* Header */
.ln-header {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ln-header h2 {
  color: #c40018;
  font-size: 14px;
  margin: 0;
  font-family: "Merriweather", serif;
}

.ln-arrow {
  font-size: 22px;
}

/* News List */
.ln-item {
  border-bottom: 1px solid #ddd;
  padding: 12px 0;
}

.ln-time {
  color: #c40018;
  font-weight: bold;
  font-size: 12px;
  margin: 0 0 5px;
}

.ln-text {
  font-size: 16px;
  line-height: 1.3;
  margin: 0;
}

/* Read More */
.ln-more {
  margin: 15px 0;
  font-size: 14px;
  border-bottom: 2px solid #000;
  display: inline-block;
  cursor: pointer;
}

/* Poll */
.ln-poll {
  margin-top: 20px;
  text-align: center;
}

.ln-poll-header {
  font-size: 12px;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.ln-dot {
  width: 8px;
  height: 8px;
  background: #c40018;
  border-radius: 50%;
  display: inline-block;
}

.ln-question {
  font-size: 14px;
  font-weight: bold;
  margin: 15px 0;
}

/* Dial */
.ln-dial {
  position: relative;
  width: 220px;
  height: 120px;
  margin: 20px auto;
}

.ln-arc {
  width: 100%;
  height: 100%;
  border-top-left-radius: 200px;
  border-top-right-radius: 200px;
  border: 12px solid #eee;
  border-bottom: none;
}

.ln-pointer {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 4px;
  height: 90px;
  background: #333;
  transform: translateX(-50%);
  border-radius: 2px;
}

.ln-center {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-size: 12px;
  padding: 6px 8px;
  border-radius: 50%;
}

.ln-user {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #c40018;
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Labels */
.ln-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-weight: bold;
}

.news-war-container {
  background: #e6d3a3;
  padding: 40px;
}

/* Header */
.news-war-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  
}

.news-war-title {
  font-size: 28px;
  font-weight: bold;
  color: #a40000;
  font-family: "Playfair", serif;
}

.news-war-readmore {
  font-size: 14px;
  text-decoration: none;
  color: black;
}

/* Nav links */
.news-war-links {
  margin: 15px 0;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.news-war-links a {
  text-decoration: underline;
  color: black;
  font-size: 16px;
}

/* Main layout */
.news-war-main {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 20px;
}

/* Left column */
.news-war-left h2 {
  font-size: 22px;
  margin-bottom: 10px;
  font-family: "Merriweather", serif;
}

.news-war-left p {
  font-size: 16px;
  line-height: 1.5;
}

.news-war-author {
  margin-top: 10px;
  font-size: 12px;
  font-weight: bold;
}

/* Center column */
.news-war-center img {
  width: 100%;
  height: auto;
  display: block;
}

/* Right column */
.news-war-right-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.news-war-right-item img {
  width: 90px;
  height: 86px;
  object-fit: cover;
}

.news-war-right-item p {
  font-size: 18px;
  margin: 0;
}

/* Container */
.wrapper-zone {
  width: 95%;
  margin: auto;
  padding: 20px 0;
}

/* Title */
.heading-fire {
  color: #b30000;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
   font-family: "Playfair", serif;
}

/* Grid Layout */
.grid-master {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 25px;
}

/* LEFT BIG STORY */
.left-hero img {
  width: 100%;
  height: auto;
}

.tag-small {
  color: red;
  font-size: 14px;
  font-weight: bold;
  margin-top: 10px;
   font-family: "Playfair", serif;
}

.big-headline {
  font-size: 26px;
  font-weight: bold;
  margin: 10px 0;
   font-family: "Merriweather", serif;
}

.subtext-line {
  font-size: 18px;
  color: #333;
}

/* MIDDLE COLUMN */
.middle-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-box img {
  width: 100%;
  height: auto;
}

.card-title {
  font-size: 14px;
  font-weight: 200;
  margin-top: 8px;
  font-family: "Merriweather", serif;
}

.author-name {
  font-size: 12px;
  margin-top: 5px;
  text-transform: uppercase;
}

.small-label {
  color: red;
  font-size: 12px;
  font-weight: bold;
  margin-top: 5px;
}

/* RIGHT COLUMN */
.side-panel {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel-section {
  border-top: 1px solid #ccc;
  padding-top: 10px;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.panel-title {
  color: #b30000;
  font-size: 15px;
  font-weight: bold;
  font-family: "Merriweather", serif;
}

.select-btn {
  font-size: 14px;
}

.news-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.news-row img {
  width: 70px;
  height: 60px;
  object-fit: cover;
}

.news-text {
  font-size: 16px;
  font-family: "Merriweather", serif;
}

.this-is-main-wrapper-area {
  width: 95%;
  margin: auto;
  padding: 20px 0;
}

/* Title */
.this-is-heading-title-text {
  color: #b30000;
  font-size: 26px;
  font-weight: bold;
  margin-bottom: 20px;
  font-family: "Playfair", serif;
}

/* Grid */
.this-is-four-column-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* Card */
.this-is-single-news-card {
  display: flex;
  flex-direction: column;
}

.this-is-image-holder img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

/* Title */
.this-is-news-heading-text {
  font-size: 20px;
  margin: 10px 0;
  font-family: "Playfair", serif;
  letter-spacing: -1px;
}

/* Author */
.this-is-author-small-text {
  font-size: 12px;
  text-transform: uppercase;
  color: #000;
}

.jp-wrapper {
  padding: 30px;
  margin: auto;
  font-family: "Merriweather", serif;
  background-color: #FDE7E7;
  
}

.jp-heading {
  color: #b30000;
  margin-bottom: 20px;
  font-family: "Playfair", serif;
  font-weight: 900;
  font-size: 29px;
}

.jp-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 30px;
}

/* LEFT COLUMN */
.jp-main-img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

.jp-tag {
  color: #c40000;
  font-weight: bold;
  display: block;
  margin-top: 10px;
}

.jp-title {
  font-size: 32px;
  line-height: 1.2;
  margin: 10px 0;
}

.jp-desc {
  color: #444;
}

/* LEFT LIST */
.jp-left-list {
  margin-top: 20px;
}

.jp-list-item {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
}

.jp-list-item img {
  width: 100px;
  height: 70px;
  object-fit: cover;
}

/* RIGHT COLUMN */
.jp-video-box {
  background: #000;
  color: #fff;
  padding: 15px;
}

.jp-video-img {
  width: 100%;
  margin-bottom: 10px;
}

.jp-video-label {
  font-size: 12px;
  opacity: 0.8;
}

.jp-video-title {
  font-size: 20px;
  margin: 10px 0;
}

.jp-video-desc {
  font-size: 14px;
  color: #ccc;
}

/* RIGHT LIST */
.jp-right-list {
  margin-top: 0px;
}

.jp-right-item {
  border-bottom: 1px solid #ddd;
  padding: -1px 0;
}

.nx-wrap {
  max-width: 1100px;
  margin: auto;
  /* background: #e6d3d3; */
  padding: 20px;
  font-family: "Playfair", serif;
}

.nx-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.nx-col {
  display: flex;
  flex-direction: column;
}

/* TOP TEXT */
.nx-top {
  margin-bottom: 10px;
}

.nx-cat {
  color: #c40000;
  font-weight: bold;
  font-size: 13px;
  display: block;
  margin-bottom: 5px;
}

.nx-head {
  font-size: 18px;
  line-height: 1.3;
  margin: 5px 0;
}

.nx-src {
  font-size: 12px;
  letter-spacing: 1px;
  border-bottom: 1px solid #000;
  display: inline-block;
  margin-top: 5px;
}

/* DIVIDER */
.nx-divider {
  height: 1px;
  background: #aaa;
  margin: 15px 0;
}

/* IMAGE CARD */
.nx-card {
  margin-top: 10px;
}

.nx-img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

/* LIVE */
.nx-live-dot {
  width: 10px;
  height: 10px;
  background: red;
  border-radius: 50%;
  display: inline-block;
  margin-right: 6px;
}

.nx-live-text {
  color: red;
  font-weight: bold;
  margin-right: 10px;
}

/* RED CATEGORY */
.red {
  color: #c40000;
}

.explore-btn {
  font-family: "Playfair", serif;
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: none; /* removes underline */
  color: black;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 2px solid black; /* custom underline */
  padding-bottom: 2px;
  margin-left: 30%;
  transition: all 0.3s ease;
}

/* Remove underline effect on hover/touch */
.explore-btn:hover,
.explore-btn:focus,
.explore-btn:active {
  border-bottom: none;
}

/* Optional arrow animation */
.explore-btn span {
  transition: transform 0.3s ease;
}

.explore-btn:hover span {
  transform: translateX(5px);
}

.scx-wrapper {
  max-width: 650px;
  margin: auto;
  /* background: #e6e6e6; */
  padding: 20px;
  font-family: "Playfair", serif;
  
}

.scx-heading {
  color: #b30000;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 900;
  margin-left: -259px;
}

.scx-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px 40px;
}

.scx-card {
  display: flex;
  flex-direction: column;
}

.scx-img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.scx-title {
  font-size: 20px;
  line-height: 1.3;
  font-family: "Playfair", serif;
  margin-bottom: 8px;
  font-weight: 500;
}

.scx-author {
  font-size: 12px;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  display: inline-block;
  letter-spacing: 1px;
}
.adver{
  margin-left: 250px;
}

 /* ── Section Header ── */
    .section-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      width: 100%;
      padding: 0 48px 28px 48px;
    }
 
    .section-title {
       font-family: "Playfair", serif;
      font-style: italic;
      font-size: 1.85rem;
      font-weight: 700;
      letter-spacing: -0.01em;
      line-height: 1;
      color:#b30000;
      margin-left: 5%;
    }
 
   .see-more {
     
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      
      text-decoration: none;
      border-bottom: 1.5px solid #444;
      padding-bottom: 1px;
      transition: color 0.2s, border-color 0.2s;
    }
  
    .section-header .see-more:hover { color: var(--accent); border-color: var(--accent); }
 
    /* ── Carousel Wrapper ── */
    .carousel-wrapper {
      width: 100%;
      overflow:hidden;
     
      display: flex;
      justify-content: center;
    }
 
    /* ── Cards Track ── */
    .cards-track {
      display: flex;
      align-items: center;
      gap: 0;
      position: relative;
    }
 
    /* ── Individual Card ── */
    .card {
      position: relative;
      width: var(--card-w);
      height: var(--card-h);
      border-radius: var(--card-radius);
      overflow: hidden;
      flex-shrink: 0;
      cursor: pointer;
      transition: transform 0.4s cubic-bezier(0.22, 0.8, 0.4, 1),
                  box-shadow 0.4s ease,
                  z-index 0s;
      box-shadow: 0 6px 28px rgba(0,0,0,0.18);
    }
 
    /* Side cards overlap the center */
    .card:not(.card--active) {
      margin-left: calc(-1 * var(--overlap));
    }
    .card:first-child {
      margin-left: 0;
    }
 
    /* Z-index stacking: center card on top */
    .card:nth-child(1) { z-index: 2; transform: rotate(-2deg) translateY(6px) scale(0.93); }
    .card:nth-child(2) { z-index: 3; transform: rotate(-1deg) translateY(2px) scale(0.96); }
    .card:nth-child(3) { z-index: 5; transform: rotate(0deg) translateY(-8px) scale(1.06); } /* active */
    .card:nth-child(4) { z-index: 3; transform: rotate(1deg) translateY(2px) scale(0.96); }
    .card:nth-child(5) { z-index: 2; transform: rotate(2deg) translateY(6px) scale(0.93); }
 
    .card:hover:not(.card--active) {
      z-index: 4;
      transform: rotate(0deg) translateY(-4px) scale(1.0);
      box-shadow: 0 14px 40px rgba(0,0,0,0.28);
    }
 
    /* ── Active Card ── */
    .card--active {
      box-shadow: 0 20px 60px rgba(0,0,0,0.38);
    }
 
    /* ── Card Image ── */
    .card__image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.5s ease;
    }
    .card:hover .card__image { transform: scale(1.04); }
 
    /* ── Card Overlay gradient ── */
    .card__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        transparent 35%,
        rgba(0,0,0,0.18) 55%,
        rgba(0,0,0,0.72) 100%
      );
      pointer-events: none;
    }
 
    /* Active card overlay: dark blue tint at top */
    .card--active .card__overlay {
      background: linear-gradient(
        160deg,
        rgba(14, 50, 90, 0.55) 0%,
        transparent 45%,
        rgba(0,0,0,0.0) 55%,
        rgba(0,0,0,0.75) 100%
      );
    }
 
    /* ── Card Caption ── */
    .card__caption {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 18px 16px 20px;
    }
 
    .card__caption-text {
    
      font-size: 0.95rem;
      font-weight: 400;
      line-height: 1.42;
      color: var(--text-white);
      text-shadow: 0 1px 4px rgba(0,0,0,0.5);
    }
 
    .card__caption-text em {
      font-style: italic;
    }
 
    /* ── Active caption is bigger ── */
    .card--active .card__caption {
      padding: 22px 20px 24px;
    }
    .card--active .card__caption-text {
      font-size: 1.08rem;
      line-height: 1.45;
    }
 
    /* Partially visible cards at edges */
    .card--partial {
      clip-path: none;
    }

    .envx-wrap {
  max-width: 1300px;
  margin: auto;
  padding: 10px;
   font-family: "Playfair", serif;
  
}

.envx-heading {
  color: #b30000;
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 900
}

/* GRID */
.envx-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 30px;
}

/* LEFT TEXT */
.envx-text-block {
  margin-bottom: 140px;
}

.envx-cat {
  color: #c40000;
  font-size: 13px;
  font-weight: bold;
}

.envx-title {
  font-size: 20px;
  margin: 5px 0;
  line-height: 1.3;
  font-family: "Merriweather", serif;

}

.envx-desc {
  color: #333;
  font-size: 15px;
  font-family: "Merriweather", serif;

}

.envx-author {
  font-size: 12px;
  text-transform: uppercase;
  border-bottom: 1px solid #000;
  display: inline-block;
  margin-top: 5px;
}

.envx-divider {
  height: 1px;
  background: #ccc;
  margin: 20px 0;
}

/* CENTER IMAGES */
.envx-center {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.envx-image-block {
  width: 100%;
}

.envx-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* RIGHT AD */
.envx-ad {
 
  height: 100%;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fv-wrap {
 background-color: #E6E6E6;
  margin: auto;
  padding: 40px;
  
}

/* HEADER */
.fv-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.fv-title {
  color: #b30000;
  font-size: 28px;
  font-family: "Playfair", serif;
}

.fv-tabs span {
  margin-left: 20px;
  font-size: 14px;
  cursor: pointer;
}

/* GRID */
.fv-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 25px;
  margin-top: 20px;
}

/* MAIN VIDEO */
.fv-main-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.fv-main-title {
  font-size: 28px;
  margin-top: 15px;
  line-height: 1.3;
   font-family: "Merriweather", serif;
}

/* SIDE LIST */
.fv-side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.fv-item {
  display: flex;
  gap: 15px;
  border-bottom: 1px solid #eee;
  padding-bottom: 15px;
}

.fv-thumb {
  position: relative;
  width: 120px;
  height: 80px;
  flex-shrink: 0;
}

.fv-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.fv-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 18px;
  background: rgba(0,0,0,0.6);
  border-radius: 50%;
  padding: 5px 8px;
}

.fv-text {
  font-size: 16px;
  line-height: 1.4;
   font-family: "Merriweather", serif;
}

.fs-wrap {

  margin: auto;
  padding: 40px;
  
}

.fs-main-title {
  font-family: "Playfair", serif;

  color: #b30000;
  font-size: 28px;
  margin-bottom: 20px;
}

/* GRID */
.fs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* COLUMN */
.fs-col {
  border-right: 1px solid #ddd;
  padding-right: 20px;
}

.fs-col:last-child {
  border-right: none;
}

/* HEADER */
.fs-head {
  font-size: 20px;
  color: #b30000;
  margin-bottom: 15px;
}

/* ITEM */
.fs-item {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.fs-item img {
  width: 80px;
  height: 60px;
  object-fit: cover;
}

/* TEXT */
.fs-tag {
  font-size: 12px;
  color: #c40000;
  font-weight: bold;
}

.fs-text {
  font-size: 17px;
  line-height: 1.3;
  margin-top: 5px;
  font-family: "Merriweather", serif;
}
.footer {
  background: #f5f5f5;
  padding: 40px 60px 20px;
  font-family: Arial, sans-serif;
}

/* 6 columns */
.footer-top {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 30px;
}

.col h4 {
  font-size: 15px;
  margin-bottom: 10px;
  border-bottom: 2px solid #000;
  padding-bottom: 5px;
}

.col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.col ul li {
  margin: 6px 0;
}

.col ul li a {
  text-decoration: none;
  color: #000;
  font-size: 13px;
}

.col ul li a:hover {
  color: #c00;
}

/* bottom section */
.footer-bottom {
  margin-top: 30px;
  border-top: 1px solid #ccc;
  padding-top: 15px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

/* social */
.social {
  display: flex;
  gap: 10px;
}

.social span {
  width: 28px;
  height: 28px;
  background: #ddd;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* terms */
.terms {
  font-size: 12px;
}

/* back to top */
.back-top {
  font-size: 12px;
  cursor: pointer;
}
.areap{
  font-size: 12px;
}

.detail-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  padding: 30px 60px;
  
}

/* LEFT */
.detail-title {
  font-size: 36px;
  margin: 10px 0;
  font-family: "Merriweather", serif;
  font-weight: 700;
}

.detail-breadcrumb{
  font-size: 14px;
  color: rgb(139, 137, 137);
   font-family: "Oswald", sans-serif;
   font-weight: 400;
}

.detail-subtitle {
  font-size: 18px;
  color: #333;
  margin-bottom: 15px;
  font-family: "Merriweather", serif;
}

.detail-meta {
  font-size: 13px;
  color: #777;
  margin-bottom: 15px;
}

.detail-actions button {
  padding: 8px 12px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}

.detail-image img {
  width: 100%;
  margin-top: 20px;
}

.detail-content {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
}

/* RIGHT */
.detail-right {
  position: sticky;
  top: 20px; /* sticky */
  height: fit-content;
}

.detail-ad img {
  width: 100%;
  margin-bottom: 20px;
}

.detail-popular h3 {
  border-top: 2px solid #000;
  padding-top: 10px;
   font-family: "Playfair", serif;
   font-size: 23px;
   font-weight: 800;
}

.detail-popular-item {
  display: flex;
  gap: 10px;
  margin: 15px 0;
  font-family: "Merriweather", serif;
}

.detail-popular-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
}

.detail-popular-item p {
  font-size: 16px;
  font-family: "Merriweather", serif;
  margin-top: 0px;
}
.adv{
  margin-left: 15%;
  margin-top: 12px;
}
.last-pars{
  margin-left: 4%;
  font-size: 16px;
  font-family: "Merriweather", serif;
}

.detail-subscribe-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f3f3f3;
  padding: 40px;
  margin-top: 40px;
  gap: 20px;
  font-family: "Merriweather", serif;
}

/* LEFT CONTENT */
.detail-subscribe-content {
  max-width: 700px;
}

.detail-subscribe-content h2 {
  font-size: 26px;
  margin-bottom: 15px;
}

.detail-subscribe-content p {
  font-size: 16px;
  margin-bottom: 12px;
  line-height: 1.5;
}

.detail-subscribe-content a {
  color: #c00;
  text-decoration: none;
}

.detail-subscribe-content a:hover {
  text-decoration: underline;
}

.detail-login-text {
  margin-top: 10px;
}

/* BUTTON */
.detail-subscribe-btn {
  background: #c40018;
  color: #fff;
  border: none;
  padding: 12px 18px;
  font-weight: bold;
  cursor: pointer;
  margin: 15px 0;
}

/* bottom text */
.detail-learn-more {
  font-size: 14px;
  color: #000;
}

/* RIGHT LOGO */
.detail-subscribe-logo {
  width: 80px;
  height: 80px;
  background: #000;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
}

/* MAIN WRAPPER */
.wrapperX {
    display: flex;
    max-width: 1200px;
    margin: 20px auto;
     font-family: "Merriweather", serif;
}

/* LEFT RED PANEL */
.promoBoxZ {
    width: 180px;              /* narrower like a vertical bar */
    background: #c40018;
    color: #fff;
    padding: 25px 18px;
    position: relative;

    /* Rounded TOP only */
  /* Optional: make it tall like a bar */
    min-height: 500px;
}

.promoCloseBtn {
    position: absolute;
    right: 15px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
}

.promoHeading {
    font-size: 26px;
    font-weight: bold;
    margin: 20px 0;
    line-height: 1.2;
}

.promoText {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.promoBtn {
    background: #fff;
    color: #c40018;
    border: none;
    padding: 10px 18px;
    font-weight: bold;
    cursor: pointer;
}

/* ARTICLE AREA */
.articleZone {
    flex: 1;
    background: #fff;
    padding: 25px;
    margin: 6px;
    border-left: 2px solid #292929;
}

/* DATE */
.metaLine {
    color: #c40018;
    font-weight: bold;
    margin-bottom: 10px;
}

/* TITLE */
.newsTitleX {
    font-size: 23px;
    font-weight: bold;
    margin-bottom: 15px;
}

/* PARAGRAPH */
.newsParaX {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 18px;
    color: #222;
}

/* DIVIDER */
.sepLineX {
    border-top: 1px solid #ccc;
    margin: 20px 0;
}

/* BOTTOM AD SECTION */
.adSectionWrap {
    background: #e9e9e9;
    padding: 30px;
    text-align: center;
}

.adLabelTxt {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.adCardBox {
    width: 320px;
    height: 180px;
    background: red;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: bold;
}


/* WRAPPER */
.newsShellX {
    max-width: 1200px;
    margin: 30px auto;
}

/* TITLE */
.sponTitleX {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: "Merriweather", serif;
}

/* 3 COL GRID */
.gridThreeX {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* 2 COL GRID */
.gridTwoX {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 25px;
}

/* CARD */
.cardUnitX {
    background: #fff;
    /* border: 1px solid #ddd; */
    overflow: hidden;
    transition: 0.3s;
    cursor: pointer;
}

.cardUnitX:hover {
    transform: translateY(-5px);
}

/* IMAGE */
.thumbWrapX img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* TEXT */
.textWrapX {
    padding: 12px;
}

.headLineX {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
    font-family: "Merriweather", serif;
}

.metaInfoX {
    font-size: 14px;
    color: #777;
}
.det-final-part-container {
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}

.det-final-part-title {
  text-align: center;
  font-size: 30px;
  color: #b30000;
  margin-bottom: 30px;
  position: relative;
  font-family: "Merriweather", serif;
}

.det-final-part-title::before,
.det-final-part-title::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 34%;
  height: 1px;
  background: #ccc;
}

.det-final-part-title::before {
  left: 0;
}

.det-final-part-title::after {
  right: 0;
}

.det-final-part-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.det-final-part-card {
  cursor: pointer;
}

.det-final-part-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.det-final-part-card p {
  font-size: 18px;
  line-height: 1.4;
  margin-top: 10px;
  font-family: "Merriweather", serif;
}
.news-feature-block-container {
  /* max-width: 1100px; */
 
  background: #fff;
  padding: 10px;
}

/* Date */
.news-feature-block-date {
  color: #b30000;
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 10px;
}

/* Title */
.news-feature-block-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.3;
  font-family: "Merriweather", serif;
}

/* Image Grid */
.news-feature-block-images {
  display: grid;
  /* grid-template-columns: 2fr 1fr;
  grid-template-rows: 200px 200px; */
  gap: 5px;
}

.news-feature-block-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}



/* Bottom Content */
.news-feature-block-content {
  border-top: 1px solid #ddd;
  margin-top: 15px;
  padding-top: 15px;
}

.news-feature-block-content h2 {
  font-size: 18px;
  margin-bottom: 10px;
  
}

.news-feature-block-content p {
  font-size: 18px;
  color: #333;
}



.category-and-set-container {
  max-width: 1300px;
  margin: auto;
  padding: 20px;
  background: #fff;
}

/* HEADER */
.category-and-set-header {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 15px;
}

.category-and-set-header h2 {
  color: #b30000;
  font-size: 25px;
  margin: 0 15px;
   font-family: "Merriweather", serif;
}

.category-and-set-line {
  flex: 1;
  height: 1px;
  background: #ccc;
}

.category-and-set-dropdown {
  position: absolute;
  right: 0;
  font-size: 16px;
   font-family: "Merriweather", serif;
}

/* MENU */
.category-and-set-menu {
  font-size: 11px;
  margin-bottom: 20px;
  font-family: "Oswald", sans-serif;

}

.category-and-set-menu a {
  text-decoration: none;
  color: #000;
  font-family: "Oswald", sans-serif;

}

.category-and-set-menu a.active {
  color: #b30000;
  font-weight: bold;
}

/* GRID */
.category-and-set-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 25px;
  
}
.category-and-set-center{
  border-left: 1px solid gray;
  padding: 10px;
  border-right: 1px solid gray;
}

/* LEFT */
.category-and-set-left img {
  width: 100%;
  /* height: 220px; */
  object-fit: cover;
}

.category-and-set-left p {
  font-size: 15px;
  margin-top: 10px;
}

/* CENTER */
.category-and-set-center h1 {
  font-size: 30px;
  font-family: "Merriweather", serif;
  margin-bottom: 10px;
  letter-spacing: -0.1px;
}

.category-and-set-subtext {
  font-size: 12px;
  margin-bottom: 10px;
  font-family: "Merriweather", serif;
}

.category-and-set-author {
  font-size: 10px;
  font-weight: bold;
  display: block;
  font-family: "Playfair", serif;
  margin-bottom: 10px;
}

.category-and-set-center img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

/* RIGHT */
.category-and-set-side-item {
  border-bottom: 1px solid #ddd;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.category-and-set-side-item .tag {
  color: #b30000;
  font-size: 10px;
  font-weight: bold;
}

.category-and-set-side-item p {
  font-size: 13px;
  margin: 5px 0;
}

.category-and-set-side-item .source {
  font-size: 10px;
  color: #555;
}
/* .cate-sec-grow-container {
  width: 420px;
  margin: 0 auto;
  font-family: Georgia, "Times New Roman", serif;
} */

.cate-sec-grow-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}

/* Fixed image box */
.cate-sec-grow-img-wrap {
  width: 110px;
  height: 85px;
  flex-shrink: 0;
  overflow: hidden;
  background: #eee;
}

.cate-sec-grow-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Content */
.cate-sec-grow-content {
  flex: 1;
}

/* Tag */
.cate-sec-grow-tag {
  display: block;
  color: #c62828;
  font-size: 12px;
  font-weight: 700;
 letter-spacing: -0.5px;
  margin-bottom: 6px;
  font-family: "Merriweather", serif;
}

/* Title aligned properly */
.cate-sec-grow-title {
  font-size: 13px;
  line-height: 1.4;
  margin: 0;
  color: #000;
  font-weight: 500;
  font-family: "Merriweather", serif;
}

/* Hover */
.cate-sec-grow-title:hover {
  text-decoration: underline;
  cursor: pointer;
}

.wrap-main {
  width: 92%;
  margin: 30px auto;
  background: #fff;
  padding: 20px;
  border: 1px solid #ddd;
}

.title-head {
  text-align: center;
  color: #b30000;
  font-size: 23px;
  font-weight: 900;
  margin-bottom: 25px;
  font-family: "Merriweather", serif;
}

/* ROW */
.row-news {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 25px;
}

/* COLUMN BASE */
.col {
  display: flex;
  flex-direction: column;
}

/* ADD VERTICAL DIVIDERS */
.col:not(:last-child) {
  border-right: 1px solid #ddd;
  padding-right: 20px;
}

/* IMAGES */
.img-main {
  width: 100%;
  height: 170px;
  object-fit: cover;
  margin-bottom: 10px;
}

.img-small {
  width: 100%;
  height: 140px;
  object-fit: cover;
  margin-bottom: 10px;
}

/* TEXT */
.headline {
  font-size: 20px;
  line-height: 1.4;
  margin: 8px 0;
}

.source {
  font-size: 10px;
  color: #444;
  text-transform: uppercase;
}

/* TAG */
.tag {
  color: #c40000;
  font-weight: bold;
  font-size: 13px;
  margin: 10px 0 5px;
}

/* DIVIDER (middle column only) */
.divider {
  border-top: 1px solid #ccc;
  margin: 15px 0;
}

/* FOOTER */
.see-more-f{
  text-align: center;
  margin-top: 25px;
  font-weight: 600;
  font-size: 10px;
  cursor: pointer;
  font-family: "Oswald", sans-serif;
}
.menu-icon {
  font-size: 26px;
  cursor: pointer;
}

/* Menu */
.menu {
  display: none;
  position: absolute;
  top: 60px;
  left: 0;
  width: 96%;
  height: 90vh;
  background: #f5f5f5;
  padding: 20px;
  
}

.menu.active {
  display: block;
}

/* Close button */
.menu-close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 26px;
  cursor: pointer;
}



/* Container */
.menu-hindu-items-container {
  background: #f5f5f5;
  padding: 20px;
}

/* Top */
.menu-hindu-items-top {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 20px;
}

.menu-hindu-items-close {
  font-size: 22px;
  cursor: pointer;
}

.menu-hindu-items-search {
  font-size: 16px;
}

/* Grid Layout */
.menu-hindu-items-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 30px;
}

/* Columns */
.menu-hindu-items-col p {
  margin: 8px 0;
  cursor: pointer;
}

.menu-hindu-items-live {
  color: red;
  font-weight: bold;
  font-size: 14px;
  font-family: "Oswald", sans-serif;
}

/* Right Side */
.menu-hindu-items-side {
  border-left: 1px solid #ccc;
  padding-left: 20px;
}

.menu-hindu-items-side p {
  margin: 10px 0;
  cursor: pointer;
}

/* Bottom */
.menu-hindu-items-bottom {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.menu-hindu-items-icons span {
  margin-right: 10px;
  cursor: pointer;
}

.menu-hindu-items-link {
  color: red;
  margin-left: auto;
}