: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: 40px;
  font-weight: bold;
  letter-spacing: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px 20px;
  /* Reserve space so logo area never collapses before image loads */
  min-height: 80px;
}
/* Ensure logo img always reserves its space (prevents CLS) */
.logo img {
  height: auto;
  aspect-ratio: 500 / 125;
  width: clamp(220px, 38vw, 500px);
  display: block;
}
.site-logo {
    font-size: 40px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    width: 100%;
    max-width: 320px;
    height: auto;
    /* Explicit aspect-ratio prevents CLS while image loads */
    aspect-ratio: 400 / 80;
}
/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 10px 20px;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #ddd;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  isolation: isolate;
  /* Reserve height so icons/fonts loading don't shift content below */
  min-height: 48px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 15px;
}

.menu-icon {
  font-size: 20px;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

.search {
  cursor: pointer;
}

.nav-links {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  overflow-x: auto;
  max-width: calc(100% - 120px);
  /* Reserve height so nav doesn't shift when links render */
  min-height: 44px;
}
.nav-links a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  padding: 0 12px;
  font-size: 14px;
  flex-shrink: 0;
}

/* Pipe separator after each link except the last */
.nav-links a:not(:last-child)::after {
  content: "|";
  margin-left: 12px;
  color: #bbb;
  font-weight: 300;
}

.nav-links a:hover {
  color: #c40018;
}

/* ── Breaking news badge ──────────────────────────────────────── */
.nav-breaking {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-right: 14px;
  margin-right: 2px;
  border-right: 1px solid #bbb;
  flex-shrink: 0;
}

.nav-breaking-icon {
  width: 28px;
  height: 28px;
  display: block;
  flex-shrink: 0;
}

.nav-breaking-text {
  font-size: 15px;
  font-weight: 800;
  color: #c40018;
  letter-spacing: 0.5px;
  font-family: "Roboto Condensed", sans-serif;
  text-transform: uppercase;
  white-space: nowrap;
}

/* Dummy content */
.content {
  height: 2000px;
  
}

/* ── Subscribe Modal ──────────────────────────────────────────── */
.modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.subscribe-logo {
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.modal-content {
  background: #fff;
  padding: 40px 36px;
  max-width: 480px;
  width: 90%;
  position: relative;
  text-align: center;
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-content .title {
  margin: 0 0 12px;
}

.modal-content .title img {
  max-width: 280px;
  height: auto;
}

.modal-content .presented {
  font-size: 13px;
  color: #555;
  margin: 0 0 20px;
}

.modal-content .headline {
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 1px;
  margin: 0 0 8px;
  color: #000;
}

.modal-content .subtext {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: #444;
  margin: 0 0 24px;
}

.subscribe-submit {
  background: #c40018;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 1px;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s;
}

.subscribe-submit:hover {
  background: #a30014;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 24px;
  cursor: pointer;
  color: #666;
  line-height: 1;
}

.close-btn:hover {
  color: #000;
}

/* 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%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.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: 250px;
  height: auto;
  object-fit: cover;
  display: block;
  border-radius: 2px;
}

.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: 51px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
}

.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;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.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;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.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: 39px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 2px;
}

.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: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* 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;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  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;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  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;
  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;

}

.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;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  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: 228px;
}

 /* ── 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: visible; /* ← was 'hidden', this was clipping border-radius & hover zoom */
      display: flex;
      justify-content: center;
      padding: 40px 0; /* ← gives vertical room for zoom + shadow on hover */
    }
 
    /* ── 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: 10;
      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: 0px;
}

.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: 8px 0;
}

/* CENTER IMAGES */
.envx-center {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.envx-image-block {
  width: 100%;
}

.envx-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* 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: auto;
  aspect-ratio: 16 / 9;
  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:30px;
  padding-bottom:0;
  margin-bottom: 0;
  
}

.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: 20px;
  align-items: start;
}

/* COLUMN */
.fs-col {
  border-right: 1px solid #ddd;
  padding-right: 20px;
  display: flex;
  flex-direction: column;
  align-self: start;
  height: fit-content;
}

.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;
  height:auto;
}

.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: linear-gradient(135deg, #001f5b, #c8102e);
  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: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

/* 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: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  margin-bottom: 10px;
}

.img-small {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  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: fixed;   /* changed from absolute → fixed */
/*  top: 0;*/
/*  left: 0;*/
/*  width: 100%;*/
/*  height: 100vh;*/
/*  background: #f5f5f5;*/
/*  padding: 20px;*/
/*  z-index: 9998;*/
/*  overflow-y: auto;*/
/*}*/

.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;*/
/*}*/
/* ═══════════════════════════════════════════════════════════════
   MEGA MENU DRAWER — Latinherald (updated)
   Replace existing .menu, .menu-close, .menu-hindu-* rules
═══════════════════════════════════════════════════════════════ */
 
.menu {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100vh;
  background: #f5f5f5;
  z-index: 9998;
  overflow-y: auto;
  animation: menuFadeIn .25s ease;
}
 
.menu.active { display: block; }
 
@keyframes menuFadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
 
/* ── Logo area ─────────────────────────────────────────────── */
.menu .logo {
  padding: 24px 40px 0;
  border-bottom: 1px solid #e0e0e0;
  padding-bottom: 20px;
}
 
/* ── Close button ──────────────────────────────────────────── */
.menu-close {
  position: absolute;
  top: 24px; right: 32px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid #ccc;
  color: #222;
  font-size: 13px;
  font-family: "Roboto Condensed", sans-serif;
  font-weight: 700;
  letter-spacing: 1.5px;
  padding: 6px 14px;
  cursor: pointer;
  border-radius: 2px;
  transition: border-color .2s, background .2s;
}
 
.menu-close:hover {
  background: #eee;
  border-color: #999;
}
 
.menu-close-label {
  font-size: 10px;
  letter-spacing: 2px;
}
 
/* ── Container ─────────────────────────────────────────────── */
.menu-hindu-items-container {
  background: #f5f5f5;
  padding: 24px 40px 50px;
}
 
/* ── Inline search ─────────────────────────────────────────── */
.menu-hindu-items-top { margin-bottom: 0; }
 
.menu-inline-search {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 2px;
  overflow: hidden;
  max-width: 420px;
}
 
.menu-inline-search input {
  flex: 1;
  background: none;
  border: none;
  outline: none;
  color: #222;
  font-size: 14px;
  font-family: "Roboto Condensed", sans-serif;
  padding: 10px 14px;
}
 
.menu-inline-search input::placeholder { color: #aaa; }
 
.menu-inline-search button {
  background: #c40018;
  border: none;
  color: #fff;
  padding: 10px 16px;
  cursor: pointer;
  font-size: 13px;
  transition: background .2s;
}
 
.menu-inline-search button:hover { background: #a30014; }
 
/* ── Divider ───────────────────────────────────────────────── */
.menu-hindu-divider {
  height: 1px;
  background: #e0e0e0;
  margin: 22px 0;
}
 
/* ── Section label ─────────────────────────────────────────── */
.menu-hindu-section-label {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #c40018;
  margin: 0 0 16px;
  text-transform: uppercase;
}
 
/* ── Body: categories + side ───────────────────────────────── */
.menu-hindu-body {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 48px;
  align-items: start;
}
 
/* ── Categories grid ───────────────────────────────────────── */
.menu-hindu-items-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 12px;
}
 
.menu-hindu-items-col p { margin: 0; }
 
.menu-hindu-items-col a {
  display: flex;
  align-items: center;
  gap: 7px;
  color: #222;
  text-decoration: none;
  font-family: "Playfair Display", serif;
  font-size: 16px;
  font-weight: 500;
  padding: 9px 0;
  border-bottom: 1px solid #e8e8e8;
  transition: color .15s, gap .15s;
}
 
.menu-hindu-items-col a:hover {
  color: #c40018;
  gap: 12px;
}
 
.menu-cat-arrow {
  color: #c40018;
  font-size: 12px;
  flex-shrink: 0;
  transition: transform .15s;
}
 
.menu-hindu-items-col a:hover .menu-cat-arrow {
  transform: translateX(3px);
}
 
/* ── Side panel ────────────────────────────────────────────── */
.menu-hindu-side {
  border-left: 2px solid #e0e0e0;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
}
 
.menu-hindu-side-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #444;
  text-decoration: none;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 14px;
  padding: 9px 0;
  border-bottom: 1px solid #eee;
  transition: color .15s;
}
 
.menu-hindu-side-link i {
  color: #c40018;
  width: 14px;
  text-align: center;
  font-size: 12px;
}
 
.menu-hindu-side-link:hover { color: #c40018; }
 
/* ── Bottom bar ────────────────────────────────────────────── */
.menu-hindu-items-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
 
.menu-hindu-follow-label {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #555;
  text-transform: uppercase;
}
 
.menu-hindu-items-icons {
  display: flex;
  gap: 8px;
}
 
.mhi {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  text-decoration: none;
  transition: transform .18s, opacity .18s;
}
 
.mhi:hover { transform: translateY(-3px); opacity: .85; }
 
.mhi-wa { background: #25d366; }
.mhi-fb { background: #1877f2; }
.mhi-ig { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.mhi-x  { background: #000; }
.mhi-yt { background: #ff0000; }
 
.menu-hindu-items-link { margin-left: auto; }
 
.menu-hindu-items-link a {
  color: #c40018;
  font-family: "Roboto Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-decoration: none;
}
 
.menu-hindu-items-link a:hover { text-decoration: underline; }
 
/* ═══════════════════════════════════════════════════════════════
   DETAIL PAGE / CATEGORY PAGE / AUTHOR PAGE / SIDEBAR STYLES
═══════════════════════════════════════════════════════════════ */

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb {
  padding: 12px 40px;
  font-size: 13px;
  color: #666;
  font-family: "Oswald", sans-serif;
}
.breadcrumb a {
  color: #666;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: #c40018;
  text-decoration: underline;
}

/* ── Detail Page Wrapper & Layout ───────────────────────────── */
.detail-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px 60px;
}
.detail-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  margin-top: 20px;
}
.detail-main {
  min-width: 0;
}

/* ── Category Tag ───────────────────────────────────────────── */
.det-category {
  margin-bottom: 10px;
}
.det-category a {
  font-size: 12px;
  font-weight: 700;
  color: #c40018;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
}
.det-category a:hover { text-decoration: underline; }

/* ── Headline ───────────────────────────────────────────────── */
.det-title {
  font-size: 36px;
  line-height: 1.2;
  margin: 8px 0 14px;
  font-family: "Merriweather", serif;
  font-weight: 700;
  letter-spacing: -0.5px;
}

/* ── Summary ────────────────────────────────────────────────── */
.det-summary {
  font-size: 18px;
  color: #444;
  line-height: 1.5;
  margin-bottom: 16px;
  font-family: "Merriweather", serif;
}

/* ── Meta Bar ───────────────────────────────────────────────── */
.det-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 12px;
  color: #666;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 10px 0;
  margin-bottom: 20px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
}
.det-author a {
  font-weight: 700;
  color: #000;
  text-decoration: none;
  font-size: 12px;
}
.det-author a:hover { color: #c40018; }
.det-sep { color: #ccc; }

/* ── Share Buttons ──────────────────────────────────────────── */
.det-share {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}
.det-share a,
.det-share button.share-copy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #333;
  font-size: 13px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.det-share a:hover,
.det-share button.share-copy:hover {
  background: #c40018;
  color: #fff;
  text-decoration: none;
}

/* ── Hero Image ─────────────────────────────────────────────── */
.det-img-wrap { margin-bottom: 24px; }
.det-hero-img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; display: block; border-radius: 4px; }
.det-img-caption { font-size: 12px; color: #777; margin-top: 6px; font-style: italic; }

/* ── Article Body ───────────────────────────────────────────── */
.det-body {
  font-size: 17px;
  line-height: 1.8;
  color: #222;
  font-family: "Merriweather", serif;
}
.det-body p { margin-bottom: 18px; }
.det-body h2, .det-body h3 { font-family: "Merriweather", serif; margin: 28px 0 12px; }
.det-body img { max-width: 100%; height: auto; }
.det-body a { color: #c40018; }

/* ── Tags ───────────────────────────────────────────────────── */
.det-tags {
  margin-top: 30px;
  padding-top: 16px;
  border-top: 1px solid #eee;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-family: "Oswald", sans-serif;
}
.det-tag {
  background: #f5f5f5;
  padding: 4px 12px;
  border-radius: 2px;
  color: #333;
  text-decoration: none;
  font-size: 12px;
  border: 1px solid #ddd;
}
.det-tag:hover { background: #c40018; color: #fff; border-color: #c40018; text-decoration: none; }

/* ── Author Box ─────────────────────────────────────────────── */
.det-author-box {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-top: 30px;
  padding: 20px;
  background: #f9f9f9;
  border-left: 4px solid #c40018;
}
.det-author-img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.det-author-info { flex: 1; }
.det-author-name { font-size: 15px; font-weight: 700; color: #000; text-decoration: none; font-family: "Oswald", sans-serif; letter-spacing: 0.5px; }
.det-author-name:hover { color: #c40018; }
.det-author-title { font-size: 12px; color: #666; margin: 3px 0; }
.det-author-bio { font-size: 13px; color: #444; line-height: 1.5; margin: 6px 0 0; }

/* ── Detail Sidebar ─────────────────────────────────────────── */
.detail-sidebar { position: sticky; top: 80px; height: fit-content; }

/* ── Sidebar Shared Styles ──────────────────────────────────── */
.sidebar-block { margin-bottom: 30px; border-top: 2px solid #000; padding-top: 12px; }
.sidebar-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; font-family: "Oswald", sans-serif; }
.sidebar-item { display: flex; gap: 10px; margin-bottom: 14px; padding-bottom: 14px; border-bottom: 1px solid #eee; }
.sidebar-item img { width: 70px; height: 52px; object-fit: cover; flex-shrink: 0; }
.sidebar-cat { display: block; font-size: 10px; font-weight: 700; color: #c40018; letter-spacing: 0.5px; font-family: "Oswald", sans-serif; margin-bottom: 3px; }
.sidebar-text { font-size: 13px; line-height: 1.4; margin: 0; font-family: "Merriweather", serif; }
.sidebar-text a { color: #000; text-decoration: none; }
.sidebar-text a:hover { color: #c40018; text-decoration: underline; }

/* Most Read */
.most-read-list { padding-left: 18px; margin: 0; }
.most-read-list li { font-size: 13px; line-height: 1.4; margin-bottom: 12px; font-family: "Merriweather", serif; padding-bottom: 12px; border-bottom: 1px solid #eee; }
.most-read-list li a { color: #000; text-decoration: none; }
.most-read-list li a:hover { color: #c40018; text-decoration: underline; }

/* Sidebar Ad */
.sidebar-ad { margin-top: 20px; }
.sidebar-ad img { width: 100%; height: auto; }

/* Sidebar category links */
.sidebar-cat-link { display: flex; justify-content: space-between; align-items: center; padding: 10px 0; border-bottom: 1px solid #eee; font-size: 13px; color: #000; text-decoration: none; font-family: "Oswald", sans-serif; }
.sidebar-cat-link:hover { color: #c40018; text-decoration: none; }
.sidebar-cat-count { font-size: 11px; color: #999; }

/* ── Related Articles ───────────────────────────────────────── */
.related-section { margin-top: 50px; border-top: 2px solid #000; padding-top: 20px; }
.related-section .scx-heading { font-size: 22px; color: #b30000; font-weight: 900; margin-bottom: 24px; margin-left: 0; font-family: "Merriweather", serif; }
.related-section .scx-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.related-section .scx-card { display: flex; flex-direction: column; }
.related-section .scx-img { width: 100%; height: auto; aspect-ratio: 16 / 9; object-fit: cover; display: block; margin-bottom: 10px; }
.related-section .scx-cat { font-size: 10px; font-weight: 700; color: #c40018; letter-spacing: 0.5px; font-family: "Oswald", sans-serif; margin-bottom: 6px; }
.related-section .scx-title { font-size: 15px; line-height: 1.3; font-family: "Merriweather", serif; margin-bottom: 8px; font-weight: 500; }
.related-section .scx-title a { color: #000; text-decoration: none; }
.related-section .scx-title a:hover { color: #c40018; text-decoration: underline; }
.related-section .scx-author { font-size: 10px; text-transform: uppercase; border-bottom: 1px solid #000; display: inline-block; letter-spacing: 1px; font-family: "Oswald", sans-serif; }

/* ── Category Page ──────────────────────────────────────────── */
.category-page { max-width: 1300px; margin: 0 auto; padding: 0 20px 60px; }
.cat-header { padding: 24px 0 16px; border-bottom: 2px solid #000; margin-bottom: 30px; }
.cat-title { font-size: 36px; font-family: "Merriweather", serif; font-weight: 700; margin: 0 0 8px; }
.cat-desc { font-size: 15px; color: #555; margin: 0; }
.cat-layout { display: grid; grid-template-columns: 1fr 300px; gap: 50px; }
.cat-main { min-width: 0; }

/* Featured */
.cat-featured { margin-bottom: 30px; padding-bottom: 30px; border-bottom: 1px solid #ddd; }
.cat-feat-img-wrap { display: block; }
.cat-feat-img { width: 100%; height: auto; display: block; border-radius: 4px; }
.cat-feat-body { margin-top: 14px; }
.cat-feat-tag { font-size: 11px; font-weight: 700; color: #c40018; letter-spacing: 1px; font-family: "Oswald", sans-serif; }
.cat-feat-title { font-size: 28px; font-family: "Merriweather", serif; font-weight: 700; margin: 8px 0; line-height: 1.2; }
.cat-feat-title a { color: #000; text-decoration: none; }
.cat-feat-title a:hover { color: #c40018; }
.cat-feat-summary { font-size: 15px; color: #444; line-height: 1.5; margin: 8px 0; font-family: "Merriweather", serif; }
.cat-feat-meta { font-size: 11px; color: #777; font-family: "Oswald", sans-serif; letter-spacing: 0.5px; }

/* Article list */
.cat-list { display: flex; flex-direction: column; }
.cat-item { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid #eee; }
.cat-item-img { flex-shrink: 0; display: block; }
.cat-item-img img { width: 200px; height: auto; aspect-ratio: 16 / 9; object-fit: cover; display: block; border-radius: 2px; }
.cat-item-body { flex: 1; }
.cat-item-tag { font-size: 10px; font-weight: 700; color: #c40018; letter-spacing: 0.8px; font-family: "Oswald", sans-serif; display: block; margin-bottom: 5px; }
.cat-item-title { font-size: 18px; font-family: "Merriweather", serif; font-weight: 500; margin: 0 0 8px; line-height: 1.3; }
.cat-item-title a { color: #000; text-decoration: none; }
.cat-item-title a:hover { color: #c40018; text-decoration: underline; }
.cat-item-summary { font-size: 13px; color: #555; line-height: 1.5; margin: 0 0 8px; font-family: "Merriweather", serif; }
.cat-item-meta { font-size: 11px; color: #888; font-family: "Oswald", sans-serif; letter-spacing: 0.5px; }

/* ── Author Page ────────────────────────────────────────────── */
.author-page { max-width: 1300px; margin: 0 auto; padding: 0 20px 60px; }
.author-header { display: flex; gap: 24px; align-items: flex-start; padding: 30px 0 24px; border-bottom: 2px solid #000; margin-bottom: 30px; }
.author-hero-img { width: 120px; height: 120px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.author-header-info { flex: 1; }
.author-name { font-size: 30px; font-family: "Merriweather", serif; font-weight: 700; margin: 0 0 6px; }
.author-title { font-size: 14px; color: #555; margin: 0 0 4px; font-family: "Oswald", sans-serif; letter-spacing: 0.5px; }
.author-location { font-size: 13px; color: #888; margin: 0 0 10px; }
.author-bio { font-size: 14px; color: #444; line-height: 1.6; margin: 0 0 12px; max-width: 600px; font-family: "Merriweather", serif; }
.author-social { display: flex; gap: 10px; margin-bottom: 10px; }
.author-social a { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: #f0f0f0; color: #333; font-size: 13px; text-decoration: none; transition: background 0.2s, color 0.2s; }
.author-social a:hover { background: #c40018; color: #fff; text-decoration: none; }
.author-stats { font-size: 12px; color: #888; font-family: "Oswald", sans-serif; margin: 0; }

/* ── Pagination ─────────────────────────────────────────────── */
.hindu-pagination { margin-top: 30px; display: flex; justify-content: center; }
.hindu-pagination nav { display: flex; gap: 6px; flex-wrap: wrap; align-items: center; }
.hindu-pagination span,
.hindu-pagination a { display: inline-flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 8px; border: 1px solid #ddd; font-size: 13px; text-decoration: none; color: #333; font-family: "Oswald", sans-serif; transition: background 0.2s, color 0.2s; }
.hindu-pagination a:hover { background: #c40018; color: #fff; border-color: #c40018; text-decoration: none; }
.hindu-pagination span[aria-current="page"] { background: #c40018; color: #fff; border-color: #c40018; }

/* ═══════════════════════════════════════════════════════════════
   STATIC PAGES — About & Privacy Policy
   ═══════════════════════════════════════════════════════════════ */
 
/* ── Wrapper ────────────────────────────────────────────────── */
.static-page-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px 80px;
}
 
/* ── Full-width main (no sidebar) ───────────────────────────── */
.static-page-main--full {
  max-width: 780px;
  margin: 0 auto;
}
 
/* ── Breadcrumb ─────────────────────────────────────────────── */
/* reuses existing .breadcrumb styles */
 
/* ── Page Header ────────────────────────────────────────────── */
.static-page-header {
  padding: 36px 0 24px;
  border-bottom: 2px solid #000;
  margin-bottom: 32px;
}
 
.static-page-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #c40018;
  font-family: "Oswald", sans-serif;
  margin-bottom: 10px;
}
 
.static-page-title {
  font-size: 40px;
  font-family: "Merriweather", serif;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.15;
  letter-spacing: -0.5px;
}
 
.static-page-lead {
  font-size: 17px;
  color: #444;
  line-height: 1.6;
  font-family: "Merriweather", serif;
  margin: 0;
}
 
.static-page-meta {
  font-size: 13px;
  color: #777;
  margin: 0;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.3px;
}
 
/* ── Hero logo (About page) ─────────────────────────────────── */
.static-page-hero {
  margin-bottom: 32px;
  padding: 32px 0;
  border-bottom: 1px solid #eee;
  text-align: center;
}
 
.static-page-logo-hero {
  max-width: 280px;
  height: auto;
  opacity: 0.9;
}
 
/* ── Body copy ──────────────────────────────────────────────── */
.static-page-body {
  font-size: 16px;
  line-height: 1.85;
  color: #222;
  font-family: "Merriweather", serif;
}
 
.static-page-body p {
  margin-bottom: 20px;
}
 
.static-page-body h2 {
  font-size: 22px;
  font-family: "Merriweather", serif;
  font-weight: 700;
  margin: 40px 0 14px;
  padding-top: 20px;
  border-top: 1px solid #eee;
  color: #111;
}
 
.static-page-body strong {
  font-weight: 700;
  color: #111;
}
 
/* ── Bulleted list ──────────────────────────────────────────── */
.static-list {
  padding-left: 22px;
  margin: 0 0 20px;
}
 
.static-list li {
  margin-bottom: 10px;
  line-height: 1.7;
}
 
/* ── Stats grid (About page) ────────────────────────────────── */
.static-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 24px 0 36px;
}
 
.static-stat-card {
  border-top: 3px solid #c40018;
  padding: 20px 16px;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
 
.static-stat-number {
  font-size: 32px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  color: #c40018;
  line-height: 1;
}
 
.static-stat-label {
  font-size: 12px;
  color: #555;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
 
/* ── Contact grid (About page) ──────────────────────────────── */
.static-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 24px 0 36px;
}
 
.static-contact-item {
  padding: 18px 20px;
  border: 1px solid #e8e8e8;
  border-left: 3px solid #c40018;
  background: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
 
.static-contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #c40018;
  font-family: "Oswald", sans-serif;
}
 
.static-contact-item a {
  font-size: 14px;
  color: #111;
  text-decoration: none;
  font-family: "Oswald", sans-serif;
}
 
.static-contact-item a:hover {
  color: #c40018;
  text-decoration: underline;
}

/* ══════════════════════════════════════════════════════════════════
   AUTHOR PAGE — Enhanced
   All new classes prefixed to avoid collision with existing styles
══════════════════════════════════════════════════════════════════ */

/* ── Hero band ──────────────────────────────────────────────────── */
.author-hero-band {
  background: #fafafa;
  border-bottom: 2px solid #000;
  padding: 30px 0 26px;
}
.author-hero-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ── Breadcrumb ─────────────────────────────────────────────────── */
.author-breadcrumb {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 1px;
  color: #888;
  margin-bottom: 18px;
}
.author-breadcrumb a {
  color: #888;
  text-decoration: none;
}
.author-breadcrumb a:hover { color: #c40018; }
.author-breadcrumb-sep { margin: 0 6px; }

/* ── Profile card ───────────────────────────────────────────────── */
.author-profile-card {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.author-avatar-wrap {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.author-avatar {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #e0e0e0;
}
.author-since-badge {
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  letter-spacing: 1px;
  color: #fff;
  background: #c40018;
  padding: 2px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* ── Profile info ───────────────────────────────────────────────── */
.author-profile-info { flex: 1; min-width: 0; }
.author-profile-top  { margin-bottom: 12px; }
.author-profile-name {
  font-size: 34px;
  font-family: "Merriweather", serif;
  font-weight: 700;
  margin: 0 0 5px;
  line-height: 1.1;
  color: #000;
}
.author-profile-designation {
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  letter-spacing: 0.8px;
  color: #c40018;
  text-transform: uppercase;
  margin: 0 0 4px;
}
.author-profile-location {
  font-size: 13px;
  color: #777;
  margin: 0;
}
.author-profile-location i { margin-right: 3px; color: #c40018; }
.author-profile-bio {
  font-family: "Merriweather", serif;
  font-size: 14px;
  color: #444;
  line-height: 1.7;
  margin: 0 0 18px;
  max-width: 640px;
}

/* ── Profile footer: stats + social ────────────────────────────── */
.author-profile-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.author-profile-meta { display: flex; gap: 10px; flex-wrap: wrap; }
.author-stat-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #555;
  background: #f0f0f0;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 4px 12px;
}
.author-stat-pill i { color: #c40018; }
.author-profile-social { display: flex; gap: 8px; }
.author-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #f0f0f0;
  color: #333;
  font-size: 13px;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  border: 1px solid #e0e0e0;
}
.author-social-btn:hover {
  background: #c40018;
  color: #fff;
  border-color: #c40018;
  text-decoration: none;
}

/* ── Filter tabs ─────────────────────────────────────────────────  */
.author-filter-bar {
  border-bottom: 1px solid #ddd;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}
.author-filter-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.author-filter-inner::-webkit-scrollbar { display: none; }
.author-filter-tab {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Oswald", sans-serif;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #555;
  text-decoration: none;
  padding: 12px 16px;
  border-bottom: 3px solid transparent;
  white-space: nowrap;
  transition: color 0.15s, border-color 0.15s;
}
.author-filter-tab:hover {
  color: #c40018;
  text-decoration: none;
  border-bottom-color: #c40018;
}
.author-filter-tab.active {
  color: #c40018;
  border-bottom-color: #c40018;
  font-weight: 700;
}
.author-filter-count {
  font-size: 10px;
  background: #eee;
  border-radius: 20px;
  padding: 1px 6px;
  color: #777;
  font-weight: 400;
}
.author-filter-tab.active .author-filter-count {
  background: #c40018;
  color: #fff;
}

/* ── Body layout (main + sidebar) ───────────────────────────────── */
.author-body-layout {
  max-width: 1300px;
  margin: 0 auto;
  padding: 30px 20px 60px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 50px;
}
.author-articles-col { min-width: 0; }

/* ── Section heading ─────────────────────────────────────────────  */
.author-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}
.author-section-heading h2 {
  font-family: "Oswald", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin: 0;
  white-space: nowrap;
  color: #000;
}
.author-section-line {
  flex: 1;
  height: 1px;
  background: #000;
}

/* ── Featured article (first item, full width) ───────────────────  */
.author-featured-article {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding-bottom: 28px;
  margin-bottom: 28px;
  border-bottom: 1px solid #ddd;
}
.author-feat-img-link { display: block; overflow: hidden; }
.author-feat-img-wrap { overflow: hidden; }
.author-feat-img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.author-feat-img-link:hover .author-feat-img { transform: scale(1.03); }
.author-feat-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.author-feat-tag {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #c40018;
  margin-bottom: 10px;
  text-decoration: none;
}
.author-feat-tag a { color: inherit; text-decoration: none; }
.author-feat-tag a:hover { text-decoration: underline; }
.author-feat-title {
  font-family: "Merriweather", serif;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 14px;
  color: #000;
}
.author-feat-title a { color: #000; text-decoration: none; }
.author-feat-title a:hover { color: #c40018; text-decoration: underline; }
.author-feat-summary {
  font-family: "Merriweather", serif;
  font-size: 14px;
  color: #444;
  line-height: 1.65;
  margin: 0 0 14px;
}
.author-feat-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #888;
}
.author-feat-readtime { display: flex; align-items: center; gap: 4px; }
.author-feat-readtime i { color: #c40018; }

/* ── Article list ────────────────────────────────────────────────  */
.author-article-list { display: flex; flex-direction: column; }
.author-article-item {
  display: flex;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid #eee;
}
.author-article-img-link { flex-shrink: 0; display: block; overflow: hidden; }
.author-article-img {
  width: 220px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 2px;
  transition: transform 0.35s ease;
}
.author-article-img-link:hover .author-article-img { transform: scale(1.04); }
.author-article-body { flex: 1; min-width: 0; }
.author-article-tag {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #c40018;
  margin-bottom: 6px;
}
.author-article-tag a { color: inherit; text-decoration: none; }
.author-article-tag a:hover { text-decoration: underline; }
.author-article-title {
  font-family: "Merriweather", serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.35;
  margin: 0 0 8px;
}
.author-article-title a { color: #000; text-decoration: none; }
.author-article-title a:hover { color: #c40018; text-decoration: underline; }
.author-article-summary {
  font-family: "Merriweather", serif;
  font-size: 13px;
  color: #555;
  line-height: 1.55;
  margin: 0 0 8px;
}
.author-article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #888;
}
.author-article-readtime { display: flex; align-items: center; gap: 4px; }
.author-article-readtime i { color: #c40018; }
.author-empty-msg {
  font-size: 15px;
  color: #888;
  padding: 30px 0;
  font-family: "Merriweather", serif;
}

/* ── Sidebar ─────────────────────────────────────────────────────  */
.author-sidebar { min-width: 0; }

/* Other authors block */
.author-sidebar-author-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  text-decoration: none;
  color: #000;
  transition: color 0.15s;
}
.author-sidebar-author-item:hover { color: #c40018; text-decoration: none; }
.author-sidebar-author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 2px solid #eee;
}
.author-sidebar-author-info { flex: 1; min-width: 0; }
.author-sidebar-author-name {
  display: block;
  font-family: "Oswald", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.author-sidebar-author-role {
  display: block;
  font-size: 11px;
  color: #888;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.author-sidebar-author-item:hover .author-sidebar-author-name { color: #c40018; }

/* ── Author link styles (used everywhere author names appear) ─── */
.author-link {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.author-link:hover {
  color: #c40018;
  border-bottom-color: #c40018;
  text-decoration: none;
}
.author-link-plain {
  color: inherit;
}
/* ── Search toggle button ─────────────────────────────────────── */
.search-toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  color: #000;
  font-weight: 500;
}
.search-toggle-btn:hover { color: #c40018; }

/* ── Search dropdown ──────────────────────────────────────────── */
.search-dropdown {
  /* Use visibility+opacity instead of display:none to avoid layout shift (CLS fix) */
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 2px solid #c40018;
  border-bottom: 1px solid #eee;
  padding: 14px 20px;
  z-index: 999;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: opacity 0.15s ease, visibility 0.15s ease;
}
.search-dropdown.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.search-dropdown-form {
  display: flex;
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  overflow: hidden;
}
.search-dropdown-form input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  padding: 10px 16px;
  font-size: 16px;
  font-family: "Merriweather", serif;
}
.search-dropdown-form button {
  background: #c40018;
  border: none;
  color: #fff;
  padding: 10px 18px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s;
}
.search-dropdown-form button:hover { background: #a30014; }

/* ── Search page ──────────────────────────────────────────────── */
.search-page {
  max-width: 1100px;
  margin: 0 auto;
  padding: 36px 24px 60px;
}
.search-header { margin-bottom: 10px; }
.search-title {
  font-family: "Merriweather", serif;
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #000;
}
.search-title em { color: #c40018; font-style: normal; }
.search-count {
  font-size: 13px;
  color: #888;
  margin: 0 0 20px;
  font-family: "Oswald", sans-serif;
  letter-spacing: 0.5px;
}
.search-form {
  display: flex;
  align-items: center;
  border: 1.5px solid #ccc;
  border-radius: 4px;
  overflow: hidden;
  max-width: 600px;
  margin-bottom: 32px;
}
.search-form input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  padding: 11px 16px;
  font-size: 15px;
  font-family: "Merriweather", serif;
}
.search-form button {
  background: #c40018;
  border: none;
  color: #fff;
  padding: 11px 18px;
  cursor: pointer;
  font-size: 15px;
  transition: background 0.2s;
}
.search-form button:hover { background: #a30014; }

.no-results {
  padding: 40px 0;
  color: #555;
  font-family: "Merriweather", serif;
  font-size: 16px;
}

/* ── Search results grid ──────────────────────────────────────── */
.cat-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.cat-item {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
  align-items: flex-start;
}
.cat-item-img {
  flex-shrink: 0;
  display: block;
  overflow: hidden;
  border-radius: 3px;
}
.cat-item-img img {
  width: 200px;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.cat-item-img:hover img { transform: scale(1.04); }
.cat-item-body { flex: 1; min-width: 0; }
.cat-item-tag {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #c40018;
  margin-bottom: 6px;
}
.cat-item-title {
  font-family: "Merriweather", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 0 8px;
}
.cat-item-title a { color: #000; text-decoration: none; }
.cat-item-title a:hover { color: #c40018; text-decoration: underline; }
.cat-item-summary {
  font-family: "Merriweather", serif;
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  margin: 0 0 10px;
}
.cat-item-meta {
  font-family: "Oswald", sans-serif;
  font-size: 11px;
  letter-spacing: 0.4px;
  color: #888;
}

/* ── Pagination ───────────────────────────────────────────────── */
.hindu-pagination {
  margin-top: 36px;
  display: flex;
  justify-content: center;
}
/* ── Detail page share buttons ───────────────────────────────── */
.detail-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin: 12px 0;
}

.detail-share-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.detail-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.detail-share-btn:hover { opacity: 0.85; }

.detail-share-whatsapp  { background: #25d366; color: #fff; }
.detail-share-facebook  { background: #1877f2; color: #fff; }
.detail-share-twitter   { background: #000;    color: #fff; }
.detail-share-copy      { background: #f1f1f1; color: #333; }

.topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 6px;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}

.topbar-social a {
  color: #444;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1;
}

.topbar-social a:hover { color: #c40018; }

.footer-copyright {
  text-align: center;
  font-size: 12px;
  color: #888;
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid #ddd;
}

.social a {
  text-decoration: none;
  color: #333;
  transition: color 0.2s;
}

.social a:hover { color: #c40018; }

.social span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #e8e8e8;
  border-radius: 50%;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.social a:hover span {
  background: #c40018;
  color: #fff;
}
.footer .site-logo {
  height: auto;
  width: clamp(180px, 30%, 300px);
  display: block;
  margin-bottom: 16px;
  /* Explicit aspect-ratio prevents layout shift when footer logo loads */
  aspect-ratio: 400 / 80;
  mix-blend-mode: multiply;