/* ===== BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Rajdhani, 'system-ui' -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
}
html {
    height: 100%;
    margin: 0;
    padding: 0;
}
body {
  margin: 0;
  margin: 0;
 /* font-family: Inter, Helvetica, Arial, sans-serif;*/
  font-family: inherit;
  height: 100%;
  min-height: 100vh;
  display: flex;
  overflow: auto;
  flex-direction: column;
}     
.main-content { /* Add this class to your main content wrapper */
    flex: 1 0 auto;
    padding-bottom: 40px;
}
.page-content { 
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}
/* ===== TOP BAR ===== */
.header-top {
  background: #ff1a1a;
  color: #fff;
  font-size: 14px;
}
.header-top-inner {
  max-width: 1280px;
  margin: auto;
  padding: 9px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.promo-text {
  color: #fff;
  text-decoration: none;
  font-weight: 50; /* Adjusted for a bold but not overwhelming look */
  font-family: inherit; /* Still using Impact or similar */
  font-size: 16px;
}
.top-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.top-date {
  font-family: inherit;
  font-weight: 50;
  color: #fff;
}
.top-socials {
  display: flex;
  justify-content: flex-start; /* Aligns icons to the left */
  gap: 12px; /* Space between icons */
}
.top-socials a {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}
/* ===== MAIN NAV ===== */
.header-main {
  background: #1f3347;
  height: 56px;
  position: relative;
  top: 0;
  z-index: 999;
}
.header-main-inner {
  max-width: 1280px;
  margin: auto;
  padding: 5px 16px;
  display: flex;
  align-items: center;       /* Already good - keeps logo/nav/actions aligned */
  gap: 20px;
  height: 100%; 
  overflow: hidden;  /* Hides any overflow from skews */             /* ← Added: ensures full height usage */
}
/* Hamburger */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  visibility: hidden; /* Hidden by default, shown on mobile via media query */
}
.hamburger span {
  display: block;
  width: 24px;
  height: 4px;
  background: #fff;
  margin: 4px 0;
}
/* Logo with angled edges */
/* Logo with angled edges */
.logo-wrap {
  position: relative;
  background: #ff1a1a; /* Red background */
  padding: 0 17px;
  margin-right: 12px;
  height: 63px; /* Adjust height */
  display: flex;
  align-items: center;
  top: -2px;
  z-index: 6; /* Ensure it sits above everything */
}
.logo-wrap::before,
.logo-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  width: 25px;
  height: 100%;
  background: #ff1a1a;
}
.logo-wrap::before {
  left: -12px;
  transform: skewX(-20deg);
}
.logo-wrap::after {
  right: -12px;
  transform: skewX(-20deg);
}
.logo img {
  width: 104px;
  height: 44px;
  display: block;
}
/* Categories */
.category-nav {
  flex: 1;
  height: 100%;              /* ← Key: fill the full 56px height */
  display: flex;             /* ← Changed to flex for better control */
  align-items: center;       /* ← Vertically centers the ul inside nav */
}
.category-list {
  display: flex;
  align-items: center;       /* Vertically centers all li items */
  gap: 14px;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;              /* ← Added: stretch to full height */
}
.category-list li {
  display: flex;
  align-items: center;       /* Ensures link + slash are vertically centered together */
  height: 100%;              /* ← Added: each li fills the available height */
  margin: 0;                 /* Reset any default margins */
}
.category-list a {
  color: #fff;
  text-decoration: none;
  font-family: inherit;
  font-weight: 700;          /* Changed from 50 (invalid) → 500 is normal, use 700 for bold */
  height: 100%;              /* ← Added: link fills li height */
  display: flex;             /* ← Added: flex for perfect internal centering */
  align-items: center;       /* ← Centers text vertically inside the link */
  line-height: 1;            /* ← Removes extra vertical space from text */
  padding: 0 2px;  
  margin-right: 8px;          /* Tiny padding → improves click area without shifting */
  font-size: 25px;
}
.category-list span {
  color: rgba(255, 255, 255, 0.6);
  display: flex;             /* ← Added: better slash alignment */
  align-items: center;
  margin-left: 0;            /* Remove extra space if needed */
}
/* Actions - Already well-centered, minor polish */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 100%;              /* Optional: helps balance */
}
.subscribe-btn {
  background: #1f2a3f;
  border: none;              /* Fixed: was invalid 'border: 1px;' */
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  font-family: inherit;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  font-size: 16px;       /* Prevents text wrapping */
}
.subscribe-btn:hover {
  background: #ff0000;       /* As you had - but maybe #e60000 for softer red? */
}
.subscribe-btn svg {
  width: 20px;
  height: 20px;
}
/* Optional - for search & dark mode icons (if they look off) */
.icon-btn {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
}
/* ===== MOBILE SIDEBAR ===== */
.mobile-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 85%;
  max-width: 320px;
  height: 100%;
  background: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  z-index: 9999;
}
.mobile-sidebar.active {
  transform: translateX(0);
}
.mobile-sidebar-inner {
  padding: 16px;
}
.sidebar-close {
  background: none;
  border: none;
  font-size: 20px;
  margin-bottom: 16px;
  cursor: pointer;
}
.mobile-search input {
  width: 80%;
  padding: 10px;
  border: 1px solid #ddd;
  margin-bottom: 20px;
}
.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu li {
  border-bottom: 1px solid #eee;
}
.mobile-menu a {
  display: block;
  padding: 12px 0;
  color: #000;
  font-weight: 700;
  text-decoration: none;
}
.mobile-subscribe {
  margin-top: 20px;
  width: 100%;
  padding: 12px;
  background: #1f3347;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-weight: 700;
}
/* ===========================
   PAGE LAYOUT
   =========================== */
.editorial-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: flex-start;
    gap: 30px;
    justify-content: flex-start; /* Native flex alignment is best for performance */
}
.editorial-featured {
  flex: 0 1 560px;      /* was 560px */
  max-width: 100%;
  transform: translateX(-20px);
}
/* Left column (card) */
.fashion-card {
    width: 560px;
    position: relative;
    position: relative;
    /*font-family: Inter, Helvetica, Arial, sans-serif;*/
    font-family: inherit;
    margin-bottom: 30px;
}
.fashion-image {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
}
.fashion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}
/* ===========================
   CONTENT SECTION
   =========================== */
.fashion-content {
    background: #ffffff;
    border-radius: 8px;
    padding: 45px;
    position: relative;
    margin-top: -160px; /* ← KEY: overlaps image */
    margin-left: 54px;
    margin-right: 0px;
    box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}
/* Category */
.fashion-category {
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: #0f1e33;
    display: block;
    margin-bottom: 16px;
}
/* Title */
.fashion-title {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.15;
    color: #0f1e33;
    margin: 0 0 18px;
}
/* Red accent */
.fashion-divider {
    display: block;
    width: 56px;
    height: 3px;
    background: #ff1a1a;
    margin-bottom: 16px;
}
.fashion-description {
    font-size: 16px;
    line-height: 1.55;
    color: #1d3233;
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
/* ===== COLUMN 2: STACKED SMALL CARDS ===== */
/* COLUMN CONTAINER */
.news-column {
  display: flex;
  flex-direction: column;
  gap: 55px;
  background: #ffffff;    /* increase this value */
}
/* CARD */
.news-card {
  display: flex;
  flex-direction: column;
}
/* IMAGE */
.news-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.news-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* META ROW */
.news-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 10px;
}
/* CATEGORY LABEL */
.news-category {
  background-color: #e10600;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  border-radius: 2px;
}
/* Optional category modifiers (future-proofing) */
.news-category.fashion {}
.news-category.politics {}
/* SEPARATOR */
.news-separator {
  color: #999999;
  font-size: 12px;
  font-weight: 500;
}
/* DATE */
.news-date {
  color: #777777;
  font-size: 13px;
  font-weight: 500;
}
/* HEADLINE */
.news-title {
  /*font-family: Inter, Helvetica, Arial, sans-serif;*/
  font-family: inherit;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.7;
  color: #0b1c2d;
  margin: 0;
}
.editorial-sidebar {
    flex: 0 0 300px;
    background: #f8f9fa;
    border-radius: 10px;
    padding: 1px;
}
/* ===== SIDEBAR CONTENT (AS PER IMAGE) ===== */
.sidebar-title {
    font-size: 18px;
    font-weight: 800;
    color: #0f1e33;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #ff1a1a;
}
.whats-hot-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.whats-hot-list li {
    margin-bottom: 1px;
    padding-bottom: 1px;
    border-bottom: 1px solid #e5e7eb;
    counter-increment: hot-item;
    position: relative;
    padding-left: 30px;
}
.whats-hot-list li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.whats-hot-list li::before {
    content: counter(hot-item);
    position: absolute;
    left: 0;
    top: 0;
    width: 24px;
    height: 24px;
    background: #ff1a1a;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}
.whats-hot-title {
    font-size: 15px;
    font-weight: 700;
    color: #0f1e33;
    margin-bottom: 5px;
    line-height: 1.3;
}
.sidebar-ad {
    margin: 10px 0;
    text-align: center;
}
.ad-label {
    display: block;
    font-size: 11px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.ad-content {
    background: #f0f0f0;
    border-radius: 8px;
    padding: 30px 20px;
    color: #6b7280;
    font-size: 14px;
}
.ad-wrapper {
  width: 300px;              /* exact sidebar ad width */
  margin: 20px auto;
  font-family: inherit;
  position: sticky;
  top: 120px;
}
.ad-labl {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-bottom: 8px;
}
.ad-box {
  width: 100%;
  height: 460px;             /* matches image height */
  overflow: hidden;
  background: #000;
}
.ad-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* =========================================================
   HORIZONTAL NEWS ROW (5 CARDS)
   Namespace-safe: .news-row-horizontal
   ========================================================= */
/* ROW CONTAINER */
.news-row-horizontal {
  display: flex;
  margin-top: 20px;
  gap: 28px;
  background: #ffffff;
}
/* INDIVIDUAL CARD */
.news-row-horizontal .row-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  /*font-family: Inter, Helvetica, Arial, sans-serif;*/
  font-family: inherit;
}
/* IMAGE WRAPPER */
.news-row-horizontal .row-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
}
/* IMAGE */
.news-row-horizontal .row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* META ROW */
.news-row-horizontal .row-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 10px;
}
/* CATEGORY LABEL */
.news-row-horizontal .row-category {
  background-color: #e10600;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  border-radius: 2px;
}
.hero-image-box {
  max-width: 920px;     /* wide article image */
  margin: 40px auto;
  font-family: inherit;
}
.hero-image {
  width: 100%;
  height: 520px;        /* matches wide landscape ratio */
  object-fit: cover;
  display: block;
}
.hero-caption {
  margin-top: 10px;     /* very tight like reference */
  font-size: 12px;
  color: #1f3347;
  line-height: 1.4;
  position: relative;
  padding-top: 10px;
}
/* thin red divider above caption */
.hero-caption::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 1.5px;
  background-color: #ff1a1a;
}
/* SEPARATOR */
.news-row-horizontal .row-separator {
  color: #999999;
  font-size: 12px;
  font-weight: 500;
}
/* DATE */
.news-row-horizontal .row-date {
  color: #777777;
  font-size: 12px;
  font-weight: 500;
}
/* TITLE */
.news-row-horizontal .row-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #0b1c2d;
  margin: 0;
}
.news-row-horizont {
  display: flex;
  margin-top: 20px;
  gap: 28px;
  background: #ffffff;
}
/* INDIVIDUAL CARD */
.news-row-horizont .row-card {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  font-family: inherit;
  /*font-family: Inter, Helvetica, Arial, sans-serif;*/
}
.page-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
}
.content-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  position: relative; /* important */
}
/* Sticky Share Bar */
.share-bar {
  position: sticky;
  top: 120px;
  width: 54px;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 0;
}
/* SHARE text */
.share-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  color: #111;
  margin-bottom: 8px;
}
.share-label i {
  font-size: 14px;
  margin-bottom: 4px;
}
/* Icons */
.share-bar a {
  width: 38px;
  height: 38px;
  margin: 6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111;
  text-decoration: none;
  font-size: 16px;
}
/* IMAGE WRAPPER */
.news-row-horizont .row-image {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 4px;
}
/* IMAGE */
.news-row-horizont .row-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.quote-wrapper {
  max-width: 900px;
  margin: 5px 0 14px;
  text-align: center;
  font-family: inherit;
}
.quote-mark {
  display: block;
  font-size: 64px;
  font-weight: 700;
  color: #ff1a1a; /* red quote */
  line-height: 1;
  margin-bottom: 10px;
}
.quote-text {
  font-size: 22px;
  font-weight: 700;
  color: #1f3347; /* bold blue */
  line-height: 1.4;
  margin: 0;
}
.quote-author {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  color: #1f3347;
  position: relative;
  padding-top: 10px;
}
.quote-author::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 30px;
  height: 2px;
  background-color: #ff1a1a;
  transform: translateX(-50%);
}
/* META ROW */
.news-row-horizont .row-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 10px;
}
/* CATEGORY LABEL */
.news-row-horizont .row-category {
  background-color: #e10600;
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 8px;
  border-radius: 2px;
}
/* SEPARATOR */
.news-row-horizont .row-separator {
  color: #999999;
  font-size: 12px;
  font-weight: 500;
}
/* DATE */
.news-row-horizont .row-date {
  color: #777777;
  font-size: 12px;
  font-weight: 500;
}
/* TITLE */
.news-row-horizont .row-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: #0b1c2d;
  margin: 0;
}
/* ================================
   ADVERTISEMENT BANNER
   ================================ */
/* Top label */
.ad-label-top {
  text-align: center;
  font-size: 13px;
  color: #777;
  margin-bottom: 8px;
  font-family: Inter, Helvetica, Arial, sans-serif;
}
/* Banner container */
.promo-ad {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 0 20px;
  overflow: hidden;
  background: #ffffff;
}
/* Background image */
.promo-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Main Container */
.news-section {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      background-color: rgb(255, 255, 255);
      color: white;
      font-family: Arial, sans-serif;
      padding: 10px 20px;
      position: relative;
      border-radius: 5px;
      overflow: hidden;
}
    /* Slanted shape styling */
    .news-banner {
      display: inline-block;
      background-color: black;
      padding: 10px 20px;
      font-size: 24px;
      font-weight: bold;
      text-transform: uppercase;
      transform: skewX(-20deg); /* Creates the slanted effect */
    }
    /* Right-side link styling */
    .explore-link {
      position: absolute;
      right: 20px;
      color: #14246d;  /* Dark blue color */
      text-decoration: none;
      font-size: 14px;
    }
.homepage-news-layout {
  display: grid;
  grid-template-columns: max-content 1fr; /* LEFT fixed, RIGHT fluid */
  gap: 24px;
  align-items: start;
}
/* Left column stacks naturally */
.homepage-left-column {
  display: flex;
  max-width: 520px; 
  flex-direction: column;
  gap: 2px;
}
/* Right column: stacked list */
.homepage-right-column {
  max-width: 520px;
}
/* News Card Container */
    .custom-news-card {
      position: relative;
      width: 100%;
      height: 400px;
      background-image: url('uploads/bz128-860x573.webp');
      background-size: cover;
      background-position: center;
      border-radius: 10px;
      overflow: hidden;
      color: white;
      font-family: inherit;
      display: flex;
      justify-content: center;
      align-items: center;
    }
    /* Category Text */
    .custom-category-text {
      position: absolute;
      top: 20px;
      left: 20px;
      font-size: 14px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: white;
      background-color: rgba(0, 0, 0, 0.5);  /* Slight background for legibility */
      padding: 5px 10px;
      border-radius: 5px;
    }
    /* News Title */
    .custom-news-title {
      position: absolute;
      bottom: 30px;
      left: 20px;
      right: 20px;
      font-size: 32px;
      font-weight: bold;
      line-height: 1.3;
      text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Drop shadow for text clarity */
      text-align: center;
      max-width: 90%;
    }
.article-intro {
  font-family: inherit;
  font-size: 22px;
  line-height: 1.65;
  color: #1a1a1a;
  margin: 30px 0;
  max-width: 760px;
}
/* Smaller News Cards */
.news-cards-container {
  display: flex;
  gap: 5px;  /* Minor space between the cards */
  justify-content: flex-start;  /* Align cards horizontally at the start */
  margin-top: 5px;
}
.news-cards {
  width: 50%;  /* Reduced width for the cards */
  display: flex;
  flex-direction: column;  /* Stack image, category, date, and title vertically */
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.news-card-image {
  width: 100%;  /* Image takes up full width of the card */
  height: 200px;  /* Fixed height for image */
  background-size: cover;
  background-position: center;
}
.news-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.card-category {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  color: #F00;  /* Red color for the category */
  margin-bottom: 5px;
}
.card-date {
  font-size: 12px;
  color: #777;  /* Light grey */
  margin-bottom: 10px;
}
.card-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  line-height: 1.4;
}
/* Container for all news articles */
.article-list {
  display: flex;
  flex-direction: column;  /* Stack the cards vertically */
  gap: 5px;
  margin-top: 1px;
}
/* Individual News Article Card */
.article-card {
  display: flex;
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  width: 618px;
  height: 150px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.article-image {
  width: 40%;  /* Image takes up 40% of the card width */
  height: 200px;  /* Fixed height for image */
  background-size: cover;
  background-position: center;
}
.article-details {
  width: 60%;  /* Content section takes the remaining 60% */
  padding: 20px;
  display: flex;
  flex-direction: column;
}
/* Category (Tag) Styling */
.article-tag {
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;  /* White text color */
  background-color: #F00;  /* Red background for category box */
  padding: 2px 10px;
  margin-bottom: 5px;
  display: inline-block;
}
/* Date Styling */
.article-date {
  font-size: 12px;
  color: #777;  /* Light grey color for date */
  margin-bottom: 10px;
}
.article-date::before {
  content: "//";  /* Add the // before the date */
  margin-right: 5px;
}
/* Title (Heading) Styling */
.article-heading {
  font-size: 18px;
  font-weight: bold;
  color: #333;  /* Dark grey color for the title */
  line-height: 1.4;
  margin-top: auto;  /* Push the title to the bottom of the card */
}
/* Newsletter Box Styling */
.newsletter-box {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  border: 1px solid #e0e0e0;
  border-radius: 20px;
  padding: 20px;
  width: 100%;
  max-width: 1300px;  /* Limit the width for large screens */
  margin: 20px auto;
}
.logo-container {
  margin-right: 20px;  /* Space between logo and content */
}
.logos {
  width: 100px;  /* Adjust the logo size */
  height: auto;
}
.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
h2 {
  font-size: 20px;
  font-weight: bold;
  color: #1f3347; /* Dark blue color */
  margin-bottom: 20px;
}
.input-container {
  width: 50%;
  margin-bottom: 15px;
}
.email-input {
  width: 100%;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 16px;
}
.terms {
  font-size: 12px;
  color: #777;
  margin-bottom: 20px;
}
.terms-checkbox {
  margin-right: 10px;
}
.sign-up-btn {
  background-color: #1f3347;
  color: white;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.section-title {
  font-family: inherit;
  font-size: 24px;
  font-weight: 800;
  color: #1f3347;      
  line-height: 1.15;
  margin: 40px 0 24px;
}
/* Container for two columns */
.custom-container {
  display: grid;
  grid-template-columns: 300px 1fr; /* Left column fixed, right column takes the rest */
  gap: 30px;
  padding: 0 20px 20px 20px;
}
/* Left Column */
.custom-left-column {
  position: sticky;
  top: 20px; /* Keeps it fixed as you scroll */
  height: 100vh;
}
/* Image Box Styling */
.custom-image-box {
  position: relative;
  width: 100%;
  height: 250px; /* Adjust height for the image box */
  overflow: hidden;
  border-radius: 10px;
}
.custom-category-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Ensure the image covers the box without stretching */
}
.custom-catogory-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-size: 32px;
  font-weight: bold;
  color: white;
}
/* Trending Section */
.custom-trending {
  margin-top: 20px;
}
.custom-section-title {
  font-size: 20px;
  font-weight: bold;
  color: #000000; /* Dark Blue */
  margin-bottom: 10px;
}
.custom-trending-list {
  list-style-type: decimal;
  padding-left: 20px;
}
.custom-trending-item {
  font-size: 15px;
  margin-bottom: 27px;
  color: #151b22;
  font-weight: bold;
}
/* Right Column */
.custom-right-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
/* Category Banner */
.custom-category-banner {
  display: flex;
  justify-content: space-between;
  background-color: #000000;
  color: white;
  padding: 10px;
  border-radius: 5px;
}
.custom-category-title {
  font-size: 18px;
  font-weight: bold;
}
.custom-view-category {
  font-size: 14px;
  color: #fff;
  text-decoration: underline;
}
/* News Grid */
.custom-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.custm-news-card {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.custom-news-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.custom-news-content {
  padding: 10px;
}
.custom-news-date {
  font-size: 12px;
  color: #777;
  margin-left: 10px;
}
.custm-news-title {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-top: 10px;
}
/* Container for social media icons */
.social-media-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  background-color: #ffffff; /* Dark Blue Background */
  border-radius: 8px;
  max-width: 100%;
}
/* Social Icon Styling */
.social-icons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.social-icons i {
  font-size: 20px;  /* Icon size */
  color: #1f3347;;
  background-color: rgb(255, 255, 255); /* Dark blue background for icons */
  border-radius: 60%; /* Circle shape */
  transition: background-color 0.3s ease;
}
.social-icons span {
  color: white;
  font-size: 14px;
  font-weight: bold;
  display: block;
}
.homepege-news-layout {
  display: grid;
  grid-template-columns: max-content 1fr; /* LEFT fixed, RIGHT fluid */
  gap: 117px;
  align-items: start;
}
/* Left column stacks naturally */
.homepege-left-column {
  display: flex;
  max-width: 520px; 
  flex-direction: column;
  gap: 2px;
}
/* Right column: stacked list */
.homepege-right-column {
  max-width: 520px;
}
.category-container {
    display: flex;
    /*background-image: url('uploads/background.webp');*/
    background-repeat: repeat;
    padding: 30px;
    justify-content: space-between;
    align-items: center;
    margin-left: -40px; /* Adjust this value to shift the container left */
}
/* Title and description */
.category-content {
    max-width: 50%;
}
.category-title {
    font-size: 2rem;
    font-weight: bold;
    color: #2C3E50;
    margin-bottom: 10px;
}
.category-description {
    font-size: 1rem;
    color: #1d3233;
    line-height: 1.6;
}
/* Author Container */
.author-container {
    display: flex;
    /*background-image: url('uploads/background.webp');*/
    background-repeat: repeat;
    padding: 30px;
    justify-content: space-between;
    align-items: center;
}
/* Author Content */
.author-content {
    max-width: 50%;
}
/* Author Title */
.author-title {
    font-size: 2rem;
    font-weight: bold;
    color: #2C3E50;
    margin-bottom: 10px;
    display: flex; /* Align the icon and text together */
    align-items: center; /* Center icon and text vertically */
    position: relative;
}
/* Red dotted underline for the title */
.author-title::after {
    content: "";
    position: absolute;
    bottom: -5px; /* Position it just below the text */
    left: 0;
    width: 100%;
    height: 2px;
    background: radial-gradient(circle, red 20%, transparent 20%) 0 50%;
    background-size: 10px 10px;
}
.image-card {
  width: 360px;               /* matches narrow editorial column */
  margin: 40px auto;
  text-align: center;
  font-family: inherit;
}
.image-card-img {
  width: 100%;
  height: 520px;              /* tall portrait like reference */
  object-fit: cover;
  display: block;
}
.image-card-caption {
  margin-top: 12px;           /* tight spacing like image */
  font-size: 12px;
  color: #1f3347;
  line-height: 1.4;
  position: relative;
  padding-top: 10px;
}
.author-box {
  max-width: 900px;
  margin: 40px auto;
  color: #1f3347;
  font-family: inherit;
}
.author-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.author-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
}
.author-meta {
  display: flex;
  flex-direction: column;
}
.author-name {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
}
.by-text {
  font-weight: 400;
}
.author-name strong {
  font-weight: 700;
  letter-spacing: 0.4px;
}
.verified {
  color: #1f3347;
  font-size: 14px;
}
.author-role {
  font-size: 13px;
  margin-top: 2px;
  opacity: 0.85;
}
.auth-description {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}
/* small red line above caption */
.image-card-caption::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 28px;
  height: 1.5px;
  background-color: #ff1a1a;
  transform: translateX(-50%);
}
/* Verified icon next to the title */
.author-title .verified-icon {
    margin-left: 8px; /* Space between title and icon */
    color: #1f3347; /* Icon color */
    font-size: 1.5rem; /* Icon size */
}
/* Author Description */
.author-description {
    font-size: 1rem;
    margin-top: 20px;
    color: #1d3233;
    line-height: 1.6;
}
/* Image Box */
.image-box {
    width: 210px;
    height: 210px;
    position: relative;
    border-radius: 50%; /* Make the image circular */
    overflow: hidden; /* Ensure the image stays inside the circle */
    display: flex;
    justify-content: center;
    align-items: center;
    border: 5px solid transparent; /* Transparent border to create space for the outerline */
    background-clip: padding-box; /* Ensures the outerline doesn't overlap the content */
}
.image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Maintain the aspect ratio and cover the area */
}
/* General Layout */
.detail-page-container {
  display: flex;
  justify-content: space-between;
  padding: 1px;
  margin-top: 20px;
  gap: 20px;
}
/* Left Column */
.left-column {
  width: 75%; /* 3/4 of the page */
  display: flex;
  flex-direction: column;
}
/* Category Banner */
.category-banner h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ff0202;
  margin-bottom: 10px;
}
/* News Title */
.news-titles {
  font-size: 2rem;
  font-weight: bold;
  color: #2C3E50;
  margin-bottom: 20px;
}
/* News Description */
.news-description {
  font-size: 1rem;
  line-height: 24px;
  color: #1a1a1a;
  margin-bottom: 20px;
}
/* Social Media Icons */
.socials-icon a {
  margin-right: 15px;
  font-size: 1rem;
  color: #2C3E50;
  text-decoration: none;
}
.socials-icon a:hover {
  color: #e74c3c; /* Hover color */
}
/* Author Info */
.author-info {
  font-size: 1rem;
  color: #7f8c8d;
  margin-top: 20px;
  margin-bottom: 20px;
}
/* Large Image Box */
.large-image-box img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 20px;
}
/* Right Column */
.right-column {
  width: 25%;
  align-self: flex-start;
  position: relative; /* 1/4 of the page */
}
/* What's Hot Banner */
.whats-hot-banner {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff0202;
  margin-bottom: 20px;
}
/* News Items in What's Hot */
.whats-hot-news .news-item {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
}
.whats-hot-news .news-item img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}
.whats-hot-news .news-item p {
  font-size: 1rem;
  color: #2C3E50;
  font-weight: bold;
}
/* Category Section */
.category-section {
  padding: 20px;
  background-color: #f4f4f4;
}
.related-news {
  max-width: 900px;
  margin: 50px 4px auto;
  font-family: inherit;
}
.related-header {
  display: inline-block;
  background: #0b0f16;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  margin-bottom: 24px;
}
.related-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.related-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.related-item img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 3px;
}
.related-content h4 {
  font-size: 20px;
  font-weight: 700;
  color: #1f3347;
  line-height: 1.3;
  margin: 0 0 6px;
}
.related-content span {
  font-size: 13px;
  color: #666;
}
.catgory-title {
  font-size: 1  rem;
  font-weight: bold;
  color: #2C3E50;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
}
/* Category Item Box */
.category-item {
  display: flex;
  align-items: center;
  background-color: #fff;
  margin-bottom: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  padding: 15px;
}
/* Category Image */
.category-image {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 15px;
}
/* Category Info */
.category-info {
  flex-grow: 1;
}
/* Category Name */
.category-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #2C3E50;
  margin-bottom: 5px;
}
/* Article Count */
.article-count {
  font-size: 1rem;
  color: #7f8c8d;
}
/* Black Banner at the Top of Category Box */
.category-item .category-name::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #2C3E50; /* Black Banner */
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.comment-box {
  max-width: 920px;
  margin: 10px 0 5px;
  font-family: inherit;
  color: #1f3347;
}
.comment-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}
.comment-title i {
  font-size: 22px;
}
.comment-note {
  font-size: 15px;
  margin-bottom: 20px;
}
.required {
  color: #ff1a1a;
}
.comment-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.comment-textarea {
  width: 100%;
  background: #f7f7f7;
  border: none;
  border-radius: 8px;
  padding: 18px;
  font-size: 16px;
  resize: vertical;
  color: #1f3347;
}
.comment-textarea::placeholder {
  color: #777;
}
.comment-fields {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.comment-fields input {
  background: #f7f7f7;
  border: none;
  border-radius: 6px;
  padding: 14px 16px;
  font-size: 15px;
  color: #1f3347;
}
.comment-fields input::placeholder {
  color: #777;
}
.comment-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
}
.comment-checkbox input {
  width: 16px;
  height: 16px;
}
.comment-btn {
  align-self: flex-start;
  background: #1f3347;
  color: #fff;
  border: none;
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
}
.comment-btn:hover {
  opacity: 0.9;
}
/* ===========================
   RIGHT CONTENT PLACEHOLDER
   =========================== */
.page-main {
    flex: 1;
}
[data-theme=dark] .footer-etemplate .elementor-shape-fill,[data-theme=dark] .header-template .elementor-shape-fill,body .elementor-shape .elementor-shape-fill {
  fill: var(--solid-white)
}
.elementor-shape .elementor-shape-fill {
  fill: #fff;
  transform: rotateY(0deg);
  transform-origin: center
}
/* Wave INSIDE footer */
.footer-wave {
    position: relative;
    line-height: 0; /* hides anti-alias seam */
    z-index: 1;
}
.footer-wave img {
    display: block;
    width: 100%;
    height: 80px;
}
.footer-wave path {
    fill: #01000cec;
}
.footer {
    background-color: #01000cec;
    color: #fff;
    padding: 40px 20px 10px; /* top spacing now belongs here */
    width: 100%;
    position: relative;
    border: none !important;
    box-shadow: none !important;
}
.footer-container {
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}
.footer-column {
    flex: 1;
    min-width: 360px;
}
.footer-column:not(:first-child) {
    padding-left: 100px;   /* adjust: 60–120px as needed */
}
.footer-logo a {
    -webkit-transition: opacity .2s var(--timing);
    transition: opacity .2s var(--timing)
}
.footer-logo img {
    width: 16%;
    max-width: 100%;
    height: auto;
}
.site-title {
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}
.social-links {
    display: flex;
    gap: 25px; /* More spacing */
    margin-top: 25px;
    width: 100px;
    height: auto;
}
.social-icon {
    color: #fff !important; /* Force white color */
    text-decoration: none;
}
.social-icon i {
    color: inherit !important; /* Inherit white color from parent */
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px; /* Much larger */
    height: 56px;
    background-color: transparent;
    border: 2px solid #666;
    border-radius: 50%;
    color: #ddd;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #999;
    color: #fff;
    transform: translateY(-2px); /* Lift effect on hover */
}
.social-link i {
    font-size: 30px; /* Much larger icon size */
}
/* Icon font simulation */
.rbi-facebook:before { content: "f"; }
.rbi-twitter:before { content: "𝕏"; }
.rbi-youtube:before { content: "▶"; }
.rbi-gnews:before { content: "G"; font-weight: bold; }
.rbi-bluesky:before { content: "B"; font-weight: bold; }
.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}
.footer-menu li {
    margin-bottom: 3px;
    padding: 6px 0;
    border-bottom: 1px solid rgb(255, 255, 255);
}
.footer-menu a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.2s ease;
    line-height: 1.3;
    display: block; 
}
.footer-menu li:last-child {
    padding-bottom: 0 !important;
    border-bottom: none;
}
.footer-menu a:hover {
    color: #fff;
    text-decoration: none;
}
.footer-menu-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.footer-bottom {
    margin-top: 30px;
    color: #777;
    font-size: 14px;
    text-align: center;
    line-height: 1.6;
}
.footer-bottom p {
    margin-bottom: 10px;
}
.legal-links {
    margin: 15px 0;
}
.legal-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}
.legal-links a:hover {
    color: #fff;
    text-decoration: underline;
}
.accept-button {
    display: inline-block;
    background-color: #555;
    color: #fff;
    padding: 8px 20px;
    border: none;
    border-radius: 3px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}
.accept-button:hover {
    background-color: #666;
}
/* ===== RESPONSIVE ===== */
/* ============================================= */
/* MOBILE HEADER - Updated layout 2025/2026 style */
/* ============================================= */
@media (max-width: 992px) {

  .header-top {
    display: none !important;
  }
  .header-main {
    height: 56px;
    background: #0f1e33;           /* or your exact dark navy color */
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 6px rgba(0,0,0,0.25);
  }
  .header-main-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 55px;
  }
  /* ============================================= */
  /* LEFT: Angled red logo - matching your desktop reference */
  /* ============================================= */
  .logo-wrap {
    position: relative;
    background: #ff1a1a;           /* exact red */
    padding: 0 30px;
    height: 56px;
    display: flex;
    align-items: center;
    margin-left: -10px;            /* lets angle protrude nicely */
    z-index: 10;
    top: 0px;
  }
  .logo-wrap::before,
  .logo-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    width: 24px;
    height: 100%;
    background: #ff1a1a;
  }
  .logo-wrap::before {
    left: -15px;
    transform: skewX(-20deg);
  }
  .logo-wrap::after {
    right: -28px;
    width: 40px;
    top: 0;
    transform: skewX(-20deg);
    background: #0f1e33;           /* creates the cut-out effect */
  }
  .logo img {
    width: 80px;                   /* balanced mobile size – adjust ±4px if needed */
    height: auto;
    max-height: 50px;
    display: block;
  }
  /* ============================================= */
  /* RIGHT: Icons container – search → moon → hamburger */
  /* ============================================= */
  .header-actions {
    display: flex;
    align-items: center;
    gap: 4px;  
    margin-left: auto;                    /* tight & modern spacing */
  }
  /* Hide subscribe button completely on mobile */
  .subscribe-btn {
    display: none !important;
  }
  /* Use CSS order to rearrange without changing HTML */
  .header-actions .icon-btn[aria-label="Search"] {
    order: 1;
  }
  .hamburger {
    order: 3;                      /* always far right */
    padding: 20px 6px;
  }
  .hamburger span {
    background-color: #ffffff;
    display: block;
    width: 24px;
    height: 2.6px;
    margin: 4.5px 0;
    border-radius: 5px;
  }
  .icon-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e0e0e0;
    background: transparent;
    border: none;
    font-size: 1.35rem;
    border-radius: 50%;
    transition: background 0.18s;
  }
  .icon-btn:hover,
  .icon-btn:focus {
    background: rgba(255,255,255,0.09);
  }
  /* Hide any other desktop-only elements */
  .category-nav,
  .desktop-menu {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .news-image {
    height: 160px;
    width: 260px;
  }
}
/* Small screen fine-tuning - UPDATED FOR EDITORIAL LAYOUT */
@media (max-width: 576px) {
  /* ================= HEADER (UNCHANGED) ================= */
  .header-main-inner {
    padding: 0 12px;
  }
  .mobile-sidebar {
    left: auto; /* Remove left positioning */
    right: 0; /* Position on the right side */
    width: 100%; /* Make it full width */
    max-width: 100%; /* Remove any max-width restriction */
    transform: translateX(100%); /* Start off-screen to the right */
  }
  .mobile-sidebar.active {
    transform: translateX(0); /* Slide in from right */
  }
  .mobile-sidebar-inner {
    padding: 16px;
    height: 100%; /* Ensure inner container takes full height */
  }
  .sidebar-close {
    background: none;
    border: none;
    font-size: 24px; /* Slightly larger for mobile */
    cursor: pointer;
    position: absolute; /* Position it at top-right */
    top: 16px;
    right: 16px;
    z-index: 10; /* Ensure it's above other content */
    margin-bottom: 0; /* Remove bottom margin since we're using absolute positioning */
  }
  .logo img {
    width: 88px;
  }
  .logo-wrap {
    padding: 0 17px;
    margin-left: 37px;
    top: 0px;
  }
  .logo-wrap::before,
  .logo-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    width: 25px;
    height: 100%;
    background: #ff1a1a;
  }
  .logo-wrap::before {
    left: -12px;
    transform: skewX(-20deg);
  }
  .logo-wrap::after {
    right: -12px;
    transform: skewX(-20deg);
  }
  .icon-btn {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
  .header-actions {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: auto;
  }
  .hamburger{
    visibility: visible;
  }
  /* ================= EDITORIAL LAYOUT MOBILE ================= */
  .page-content {
    padding: 15px;
    padding-top: 70px; /* match your mobile header height */
  }
    .editorial-layout {
        flex-direction: column; 
        gap: 20px; 
        /* Ensure the container itself doesn't have restrictive horizontal padding here */
        padding: 0; /* Changed to 0 to be truly edge-to-edge if the parent is the body/viewport */
    }
    .editorial-featured {
        /* These properties are correct for mobile flexibility */
        flex: 0 1 auto; 
        max-width: 100%; 
        will-change: transform; 
        /* The key change: Forces the card to span 100% of the VIEWPORT width */
        width: 100vw; 
        /* This transform pulls the element left by half of the viewport width */
        /* and then moves it back right by half of the element's actual width to center it within the viewport */
        position: relative; /* Needed for 'left' property to work relative to its original position */
        left: 50%; 
        transform: translateX(-50%); /* GPU accelerated centering technique */
    }
    .fashion-card {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }
    .fashion-image {
        height: 280px;
        border-radius: 8px;
    }
    .fashion-content {
        margin: -120px 20px 0;
        padding: 25px;
        width: calc(100% - 40px);
        position: relative;
    }
    .fashion-category {
        font-size: 14px;
        letter-spacing: 0.15em;
        margin-bottom: 12px;
    }
    .fashion-title {
        font-size: 24px;
        line-height: 1.2;
        margin: 0 0 15px;
    }

    .fashion-divider {
        width: 40px;
        height: 2px;
        margin-bottom: 15px;
    }
    .fashion-description {
        font-size: 14px;
        line-height: 1.5;
        -webkit-line-clamp: 3;
    }
  .news-column {
    gap: 24px;
  }
  .news-meta {
    margin-top: 10px;
    margin-bottom: 8px;
  }
  .news-category {
    font-size: 10px;
    padding: 3px 6px;
  }
  .news-separator,
  .news-date {
    font-size: 11px;
  }
  .news-title {
    font-size: 18px;
    line-height: 1.3;
  }
    /* Sidebar */
    .editorial-sidebar {
        width: 100%;
        margin-top: 20px;
    }
    .sidebar-title {
        font-size: 16px;
        margin-bottom: 15px;
    }
    .whats-hot-list li {
        margin-bottom: 15px;
        margin-top: 20px;
        padding-bottom: 15px;
        padding-left: 31px;
    }
    .whats-hot-title {
        font-size: 14px;
    }
  .news-row-horizontal {
    overflow-x: auto;
    margin-top: 20px;
    gap: 16px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
  }
  .news-row-horizontal .row-card {
    flex: 0 0 75%;
  }
  .news-row-horizontal .row-title {
    font-size: 16px;
    line-height: 1.35;
  }
.news-row-horizont {
    display: flex;
    flex-direction: column; /* Change to column layout */
    margin-top: 20px;
    gap: 16px; /* Space between items */
    padding-bottom: 8px;
    /* Removed horizontal scrolling behavior */
    overflow-x: visible; /* Make sure there's no overflow on the x-axis */
    -webkit-overflow-scrolling: touch; /* Optional for smooth scrolling on iOS */
}
.news-row-horizont .row-card {
    flex: 0 0 100%; /* Set items to take full width on mobile */
    margin-bottom: 16px; /* Optional: Add space between cards */
}
.news-row-horizont .row-title {
    font-size: 16px;
    line-height: 1.35;
}
  .hero-image-box {
    margin: 24px 12px;
  }
  .hero-image {
    height: 300px;   
  }
  .hero-caption {
    font-size: 11px;
  }
  .promo-ad {
    height: 80px;
  }
  .ad-label-top {
    font-size: 12px;
  }
  .news-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background-color: rgb(255, 255, 255);
    color: white;
    font-family: Arial, sans-serif;
    padding: 8px 16px;  /* Slightly smaller padding for mobile */
    position: relative;
    border-radius: 5px;
    overflow: hidden;
  }
  .article-intro {
    font-size: 17px;
    line-height: 1.6;
    margin: 20px 0;
    max-width: 100%;
  }
  .news-banner {
    display: inline-block;
    background-color: black;
    padding: 8px 16px; /* Smaller padding for mobile */
    font-size: 20px;  /* Reduced font size for mobile */
    font-weight: bold;
    text-transform: uppercase;
    transform: skewX(-10deg); /* Slightly less skew for a more refined look on mobile */
  }
  .explore-link {
    position: absolute;
    right: 10px;  /* Adjust the position of the link for mobile */
    color: #1f3347;  /* Keep the dark blue color */
    text-decoration: none;
    font-size: 12px; /* Reduced font size for the mobile link */
    margin-top: 0;  /* Removed margin-top for a cleaner alignment */
  }
  /* Layout for all cards in left column and right column */
  .homepage-news-layout {
    display: flex;
    flex-direction: column;  /* Stack all content vertically */
    gap: 20px;               /* Space between the stacked cards */
  }
  /* Left column content */
  .homepage-left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;               /* Add gap between the large card and smaller ones */
    width: 100%;             /* Full width for mobile */
  }
  /* Right column (now stacks below left column) */
  .homepage-right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;               /* Gap between cards in the right column */
    width: 100%;             /* Full width for mobile */
  }
      .custom-news-card {
        width: 100%;
        height: 300px;
      }
      .custom-news-title {
        font-size: 20px; /* Smaller font size for mobile */
        text-align: center; /* Center align the title for smaller screens */
        bottom: 20px;
      }
      .custom-category-text {
        font-size: 12px; /* Smaller category text */
        top: 10px; /* Adjusted spacing */
      }
  .news-cards {
    width: 70%;  /* Stack cards vertically on small screens */
  }
  .news-card-image {
    height: 112px; /* Adjust height for mobile */
  }
  .card-title {
    font-size: 15px; /* Smaller font size for mobile */
  }
  .card-category {
    font-size: 10px; /* Smaller font size for category */
  }
/* Individual News Article Card */
  .article-card {
    display: flex;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    width: 100%;            /* Full width on mobile */
    height: auto;           /* Auto height to fit content */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    flex-direction: column; /* Stack image and content vertically */
  }
  /* Article Image */
  .article-image {
    width: 100%;            /* Full width on mobile */
    height: 200px;          /* A reasonable height for mobile */
    background-size: cover;
    background-position: center;
  }
  /* Article Details */
  .article-details {
    width: 100%;            /* Full width on mobile */
    padding: 12px 15px;     /* Adjust padding for better spacing */
    display: flex;
    flex-direction: column;
  }
  /* Category (Tag) Styling */
  .article-tag {
    font-size: 12px;        /* Adjust font size for mobile */
    font-weight: bold;
    text-transform: uppercase;
    color: #fff;            /* White text color */
    background-color: #F00; /* Red background for category box */
    padding: 5px 12px;      /* Adjust padding for readability */
    margin-bottom: 8px;     /* Slightly more margin between category and date */
    display: inline-block;
  }
  .ad-wrapper {
    width: 100%;
    max-width: 280px;
  }
  .ad-box {
    height: 420px;
  }
  /* Date Styling */
  .article-date {
    font-size: 12px;        /* Adjust font size for date */
    color: #777;            /* Light grey color for date */
    margin-bottom: 12px;    /* Space below the date */
  }
  .article-date::before {
    content: "//";          /* Add the // before the date */
    margin-right: 5px;
  }
  /* Title (Heading) Styling */
  .article-heading {
    font-size: 16px;        /* Adjust title font size */
    font-weight: bold;
    color: #333;            /* Dark grey color for the title */
    line-height: 1.4;
    margin-top: auto;       /* Push the title to the bottom of the card */
  }
  .newsletter-box {
    flex-direction: column;
    padding: 15px;
  }
  .logo-container {
    margin-bottom: 15px;
  }
  .logos {
    width: 40px;
  }
  h2 {
    font-size: 18px;
    text-align: center;
  }
  .input-container {
    width: 100%;
  }
  .email-input {
    font-size: 14px;
  }
  .terms {
    font-size: 10px;
    text-align: center;
  }
  .sign-up-btn {
    width: 100%;
    font-size: 14px;
  }
/* Make left and right columns stack on small screens */
  .custom-container {
    grid-template-columns: 1fr; /* Full-width for both columns */
  }
  /* Remove sticky behavior for mobile */
  .custom-left-column {
    position: relative; /* Ensure no sticky behavior */
    height: auto; /* Allow the left column to stack normally */
  }
  /* Right Column - Make sure it doesn't scroll on mobile */
  .custom-right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    position: relative; /* Ensure no sticky behavior */
  }
  /* Adjust Image Box for mobile */
  .custom-image-box {
    height: 300px;
  }
  .custom-catogory-text {
    font-size: 24px;
    bottom: 10px;
    left: 10px;
  }
  .category-banner h2 {
  font-size: 2rem;
}
  .custom-section-title {
    font-size: 18px;
  }
  /* Adjust Trending list */
  .custom-trending-item {
    font-size: 12px;
  }
  /* Adjust News Grid */
  .custom-news-grid {
    grid-template-columns: 1fr; /* Stack news cards in one column */
  }
  .custom-news-category {
    font-size: 10px;
  }
    /* Adjust category banner on mobile */
  .custom-category-banner {
    padding: 10px;
    flex-direction: column;
    text-align: center; /* Center align the text on mobile */
  }
  .custom-view-category {
    font-size: 14px;
    color: #fff;
    text-decoration: underline;
  }
  .custom-news-image {
    height: 150px;
  }
  .custm-news-title {
    font-size: 14px;
  }
  .custom-category-title {
    font-size: 18px;
  }
  .social-media-bar {
    flex-direction: row;
    gap: 15px;
    align-items: center;
  }
  .social-icons i {
    font-size: 24px;  /* Adjust icon size for mobile */
    padding: 1px;
  }
  .social-icons span {
    font-size: 10px;  /* Smaller font size on mobile */
  }
  .homepege-news-layout {
    display: flex;
    flex-direction: column;  /* Stack all content vertically */
    gap: 20px;               /* Space between the stacked cards */
  }
  /* Left column content */
  .homepege-left-column {
    display: flex;
    flex-direction: column;
    gap: 20px;               /* Add gap between the large card and smaller ones */
    width: 100%;             /* Full width for mobile */
  }
  /* Right column (now stacks below left column) */
  .homepege-right-column {
    display: flex;
    flex-direction: column;
    gap: 20px;               /* Gap between cards in the right column */
    width: 100%;             /* Full width for mobile */
  }
.category-container {
    flex-direction: column; /* Stack content vertically on small screens */
    margin-left: 0;
    margin-top: 1px;
    padding: 10px;
    margin-bottom: 20px; /* Remove left margin adjustment for smaller screens */
}
/* Title and description */
.category-content {
    max-width: 100%; /* Make the content take full width on mobile */
    margin-top: 1px; /* Add some spacing at the top */
    text-align: center; /* Center align text on small screens */
}
.category-title {
    font-size: 1.5rem; /* Adjust font size for mobile */
    margin-bottom: 10px;
}
.category-description {
    font-size: 0.9rem; /* Adjust font size for mobile */
    color: #1d3233;
    line-height: 1.6;
}
    /* Author Container Adjustments */
    .author-container {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items on mobile */
    }
    /* Author Content Adjustments */
    .author-content {
        max-width: 100%; /* Allow full width on mobile */
        text-align: center; /* Center text */
        margin-left: 0; /* Remove left margin */
    }
    /* Author Title Adjustments */
    .author-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
  .image-card {
    width: 100%;
    max-width: 320px;
    margin: 24px auto;
  }
  .image-card__img {
    height: 420px;
  }
  .image-card__caption {
    font-size: 11px;
  }
  .quote-mark {
    font-size: 48px;
  }
  .quote-text {
    font-size: 20px;
    padding: 0 12px;
  }
  .author-box {
    padding: 20px 14px;
    margin: 28px auto;
  }
  .author-avatar {
    width: 52px;
    height: 52px;
  }
  .author-name {
    font-size: 13px;
  }
  .author-role {
    font-size: 12px;
  }
  .auth-description {
    font-size: 16px;
  }
  .quote-author {
    font-size: 13px;
  }
    /* Image Box Adjustments */
    .image-box {
        margin-top: 30px;
        width: 190px;
        height: 190px;
        margin-bottom: 1px; /* Add space below the image */
    }
  .detail-page-container {
    flex-direction: column;
  }
  .left-column {
    width: 100%;
  }
  .content-wrapper {
    flex-direction: column;
  }
  .share-bar {
    display: none;
  }
  /* Stack content normally */
  .page-wrapper {
    display: block;
  }
.category-banner h2 {
    text-align: left;
}
.news-titles {
  font-size: 1.5rem;
}
  .comment-box {
    padding: 0 14px;
    margin: 0px 1px 1px;
  }
  .comment-title {
    font-size: 20px;
  }
  .comment-textarea {
    font-size: 15px;
  }
  .comment-fields {
    grid-template-columns: 1fr;
  }
  .comment-btn {
    width: 100%;
    text-align: center;
  }
  .right-column {
    width: 100%;
    margin-top: 40px; /* Add spacing between columns */
  }
  .related-news {
    padding: 0 14px;
    margin: 32px auto;
  }
  .related-item {
    gap: 14px;
  }
  .related-item img {
    width: 90px;
    height: 70px;
  }
  .related-content h4 {
    font-size: 16px;
  }
  .related-content span {
    font-size: 12px;
  }
  .large-image-box img {
    height: 300px; /* Adjust the image height for small screens */
  }
  .whats-hot-news .news-item img {
    height: 250px;
  }
  .section-title {
    font-size: 24px;
    line-height: 1.2;
    margin: 24px 0 16px;
    text-align: left;
  }
  .category-item {
    flex-direction: row; /* Stack items vertically */
    align-items: flex-start;
    padding: 10px;
  }
  .category-image {
    margin-bottom: 2px;
    height: 50px; /* Space between image and text on mobile */
  }
  .category-name {
    font-size: 1rem; /* Smaller font size for mobile */
  }
  .article-count {
    font-size: 0.9rem; /* Smaller font size for mobile */
  }
  /* ================= FOOTER (MOBILE STYLE) ================= */
  /* Remove any gap between wave SVG and footer */
  .footer {
    margin-top: 0;
    padding-top: 0;
    background-color: #01000cec;
    box-shadow: none;
    height: auto;
    border: none;
    min-height: auto;
    padding-bottom: 26px;
  }
  .footer-wave {
    line-height: 0;
    position: relative;
    margin-bottom: -0.5px;
    z-index: 1;
  }
  .footer-wave path {
    fill: #01000cec;
  }
  .footer-wave img {
    display: block;
    width: 100%;
  }
  /* Stack footer content */
  .footer-container {
    flex-direction: column;
    gap: 25px;
    overflow: visible;
    padding: 0 15px;
  }
  /* Logo + BuzzVibe LEFT */
  .footer-column:first-child {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 0;
  }
  .footer-logo img {
    width: 40px;
    height: 50px;
    margin-bottom: 10px;
  }
  .site-title {
    font-size: 28px;
    margin-bottom: 10px;
    line-height: 1.1;
  }
  /* Social icons BELOW title */
  .social-links {
    justify-content: flex-start;
    gap: 16px;
    margin-top: 6px;
    width: 100%;
    height: auto;
  }
  .social-icon i {
    font-size: 23px;
  }
  .social-link {
    width: 44px;
    height: 44px;
  }
  .social-link i {
    font-size: 24px;
  }
  /* Categories & links FULL WIDTH */
  .footer-column {
    min-width: 100%;
    padding-left: 0 !important;
  }
  .footer-column:not(:first-child) {
    padding-left: 0;
  }
  .footer-menu {
    margin-top: -3px;
    margin-bottom: 4px;
  }
  .footer-menu li {
    padding: 6px 0;
    margin: 0;
    border-bottom: 2px solid rgba(255,255,255,0.6);
  }
  .footer-menu a {
    font-size: 14px;
    line-height: 1;
  }
  /* Small space after last item (Complaint) */
  .footer-menu:last-of-type {
    margin-bottom: 14px;
  }
  .footer-menu:last-of-type li:last-child {
    border-bottom: none;
  }
  .footer-menu-title {
    font-size: 15px;
    margin-bottom: 15px;
  }
  .footer-bottom {
    margin-top: 20px;
    font-size: 13px;
    padding: 0 10px;
  }
  .legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 10px 0;
  }
  .legal-links a {
    font-size: 12px;
  }
  .accept-button {
    padding: 6px 16px;
    font-size: 12px;
  }
}