 *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
      /* overflow-x: hidden; */
    }

    :root {
      --black: #111111;
      --white: #ffffff;
      --accent-blue: #1a5fb4;
      --gray-light: #f5f5f5;
      --gray-mid: #e0e0e0;
      --gray-text: #555555;
      --breaking-red: #c0392b;
      --font-blackletter: 'UnifrakturMaguntia', cursive;
      --font-serif: 'EB Garamond', Georgia, serif;
      --font-sans: 'Oswald', sans-serif;
      --font-serif: "Merriweather", serif;
      /* --font-serif: "Playfair Display", serif; */
      --font-nav: "Libre Franklin", sans-serif;
    }

    body {
      font-family: var(--font-serif);
      background: var(--white);
      color: black;
    }

    .sticky {
      position: sticky;
      z-index: 12;
      top: 0;
      width: 100%;
      background-color: white;
    }

    /* ── TOP META BAR ── */
    .meta-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 32px;
      border-bottom: 1px solid var(--gray-mid);
    }

    .meta-left {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .meta-date {
      font-family: var(--font-sans);
      font-size: 11px;
      color: gray;
      font-weight: 400;
      letter-spacing: 0.02em;
    }

    .meta-paper {
      font-family: var(--font-sans);
      font-size: 11px;
      font-weight: 600;
      color: black;
      letter-spacing: 0.04em;
      color: rgb(107, 107, 107);
      cursor: pointer;
    }

    .meta-paper:hover {
      text-decoration: underline;
    }

    /* ── MASTHEAD / LOGO PLACEHOLDER ── */
    .masthead {
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 10px 0 6px;
    }

    .logo-placeholder {
      width: 100%;
      height: 100%;
    }

    .logo-placeholder:hover {
      border-color: #888;
      background: #f0f0f0;
    }

    .logo-placeholder img {
      width: 100%;
      height: 105px;
      stroke: #aaaaaa;
    }

    .logo-placeholder span {
      font-family: var(--font-sans);
      font-size: 11px;
      font-weight: 400;
      color: #aaaaaa;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    /* ── META RIGHT (login | lang | search) ── */
    .meta-right {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 10px;
    }

    .meta-login {
      font-family: var(--font-sans);
      font-size: 13px;
      font-weight: 500;

      color: rgb(0, 0, 0);
      cursor: pointer;
      text-transform: uppercase;
    }

    .meta-login:hover {
      text-decoration: underline;
    }


    .meta-lang {
      display: flex;
      align-items: center;
      gap: 4px;
      font-family: var(--font-sans);
      font-size: 13px;
      color: rgb(31, 31, 31);
      cursor: pointer;
    }

    .meta-lang svg {
      width: 14px;
      height: 14px;
      color: rgb(38, 38, 38);
    }

    .meta-search {
      background: none;
      border: none;
      cursor: pointer;
      padding: 2px;
      display: flex;
      align-items: center;
    }

    .meta-search svg {
      width: 25px;
      height: 25px;
      stroke: rgb(64, 63, 63);
    }

    /* ── TOP ROW layout ── */
    .top-row {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      padding: 10px 85px;
      border-bottom: 0.1px solid rgb(237, 236, 236);

    }

    .top-row .masthead {
      grid-column: 2;
    }

    /* ── NAV ── */
    .nav-bar {
      border-bottom: 0.1px solid rgb(237, 236, 236);
      overflow: hidden;
    }

    .nav-list {
      display: flex;
      list-style: none;
      padding: 2px 48px 2px 48px;
      gap: 0;
      align-items: center;
    }

    .nav-item a {
      display: block;
      font-family: var(--font-sans);
      font-size: 12.4px;
      font-weight: 500;
      letter-spacing: 0.03em;
      text-transform: uppercase;
      color: rgb(0, 0, 0);
      text-decoration: none;
      padding: 13px 12px;
      position: relative;
      transition: color 0.15s;
      overflow-x: hidden;
      align-items: center;
      font-family: var(--font-nav);
    }

    .nav-item a::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 6px;
      right: 6px;
      height: 2px;
      background: black;
      transform: scaleX(0);
      transition: transform 0.2s ease;
    }

    .nav-item a:hover::after,
    .nav-item.active a::after {
      transform: scaleX(1);
    }

    /* .nav-item.active a {
      border-bottom: 3px solid black;
    } */

    /* ── BREAKING NEWS TICKER ── */
    .ticker-bar {
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--white);
      border-bottom: 1px solid var(--gray-mid);
      height: 38px;
      padding: 0px 75px;
    }

    .ticker-label {
      display: flex;
      align-items: center;
      background: black;
      color: var(--white);
      font-family: var(--font-nav);
      font-size: 11.2px;
      text-transform: uppercase;
      padding: 12px 8px;
      white-space: nowrap;
      z-index: 2;
      flex-shrink: 0;
      height: 20px;
      font-weight: bold;
    }

    .ticker-track-wrap {
      flex: 1;
      overflow: hidden;
      position: relative;
      display: flex;
      align-items: center;
    }

    .ticker-track-wrap::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 30px;
      background: linear-gradient(to right, var(--white), transparent);
      z-index: 1;
    }

    .ticker-track {
      display: flex;
      align-items: center;
      white-space: nowrap;
      animation: ticker-scroll 30s linear infinite;
    }

    .ticker-track:hover {
      animation-play-state: paused;
    }

    @keyframes ticker-scroll {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .ticker-item {
      display: inline-flex;
      align-items: center;
      font-family: var(--font-nav);
      font-size: 14px;
      color: black;
      padding: 25px 15px;
      gap: 10px;
    }

    .ticker-item::after {
      content: '·';
      color: var(--gray-text);
      font-size: 25px;
    }

    .ticker-item a {
      color: inherit;
      text-decoration: none;
    }

    .ticker-item a:hover {
      text-decoration: underline;
    }

    /*  */
    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0px;
      padding: 0px;
    }

    .all-content {
      font-family: 'EB Garamond', Georgia, serif;
      background: #ffffff;
      color: #111111;
      padding: 32px 75px;
    }

    /* ── SECTION WRAPPER ── */
    .section1-wrapper {

      position: relative;
    }

    /* ── SECTION HEADING ── */
    .section1-heading {
      /*  font-family: var(--font-nav); */
      font-family: var(--font-nav);
      font-size: 22px;
      font-weight: 900;
      color: #111111;
      padding-bottom: 8px;
      margin-bottom: 0px;
      border-bottom: 4px solid #111111;
      display: inline-flex;
      margin-right: 100px;
    }

    .section1-heading-divider {
      border: none;
      border-top: 4px solid #e8e7e7;
      margin-top: -3px;
      margin-bottom: 22px;
    }


    /* ── LAYOUT GRID ── */
    .section1-grid {
      display: grid;
      grid-template-columns: 2.2fr 1px 1fr;
      gap: 0 25px;
      align-items: start;
    }

    /* ── VERTICAL DIVIDER ── */
    .section1-divider-vertical {
      background: #dddddd;
      width: 1px;
      align-self: stretch;
      min-height: 100%;
    }

    /* ── FEATURED (LEFT) ── */
    .section1-featured {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .section1-featured-img-wrap {
      width: 100%;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #e8e8e8;
    }

    .section1-featured-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.4s ease;
      border-radius: 8px 8px;
    }

    .section1-featured-img-wrap:hover .section1-featured-img {
      transform: scale(1.03);
    }

    /* Placeholder when no image */
    .section1-img-placeholder {
      width: 100%;
      height: 100%;
      background: #e0e0e0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 8px;
      color: #aaaaaa;
    }

    .section1-img-placeholder svg {
      width: 36px;
      height: 36px;
      stroke: #bbbbbb;
    }

    .section1-img-placeholder span {
      font-family: var(--font-nav);
      font-size: 11px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .section1-featured-title {
      font-family: var(--font-nav);
      font-size: 28px;
      font-weight: 900;
      color: #111111;
      line-height: 1.3;
      cursor: pointer;
      transition: color 0.15s;
      letter-spacing: -0.3px;
    }

    .section1-featured-title:hover {
      color: #1a5fb4;
    }

    .section1-featured-date {
      font-family: var(--font-nav);
      font-size: 12px;
      font-weight: 400;
      color: #888888;
      letter-spacing: 0.04em;
    }

    /* ── SIDEBAR STORIES (RIGHT) ── */
    .section1-sidebar {
      display: flex;
      flex-direction: column;
    }

    .section1-story-item {
      padding: 30px 0;
      border-bottom: 1px solid #dddddd;
      cursor: pointer;
    }

    .section1-story-item:first-child {
      padding-top: 0;
    }

    .section1-story-item:last-child {
      border-bottom: none;
    }

    .section1-story-title {
      font-family: var(--font-nav);
      font-size: 15px;
      font-weight: 600;
      color: #2e2e2e;
      line-height: 1.4;
      margin-bottom: 5px;
      transition: color 0.15s;
    }

    .section1-story-item:hover .section1-story-title {
      text-decoration: underline;
    }

    .section1-story-date {
      font-family: var(--font-nav);
      font-size: 11px;
      font-weight: 400;
      color: #999999;
      letter-spacing: 0.04em;
    }

    /* ── FLOATING SOCIAL ICONS ── */
    .section1-social-float {
      position: fixed;
      right: 20px;
      top: 53%;
      transform: translateY(-50%);
      display: flex;
      flex-direction: column;
      gap: 6px;
      z-index: 100;
    }

    .section1-social-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #111111;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
      text-decoration: none;
    }

    .section1-social-btn:hover {
      transform: scale(1.12);
    }

    .section1-social-btn.section1-fb:hover {
      background: #1877f2;
    }

    .section1-social-btn.section1-ig:hover {
      background: white;
    }

    .section1-social-btn.section1-x:hover {
      background: #000000;
    }

    .section1-social-btn.section1-yt:hover {
      background: #ff0000;
    }

    .section1-social-btn.section1-li:hover {
      background: #0a66c2;
    }

    .section1-social-btn svg {
      width: 18px;
      height: 18px;
      fill: #ffffff;
    }

    .section1-ig {
      color: #fff;
      /* makes the icon white */
    }

    .section1-ig svg {
      width: 24px;
      height: 24px;
    }

    /* section 2 */
    /* ─── Grid Container ─────────────────────────────── */
    .section2-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      padding-top: 30px;
      margin: 0 auto;
    }

    /* ─── Card ───────────────────────────────────────── */
    .section2-card {
      background: #ffffff;

      overflow: hidden;


      cursor: pointer;
    }



    /* ─── Thumbnail ──────────────────────────────────── */
    .section2-card-thumbnail {
      width: 100%;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      position: relative;
    }

    .section2-card-thumbnail img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      border-radius: 10px 10px 10px 10px;
      transition: transform 0.35s ease;
    }

    .section2-card:hover .section2-card-thumbnail img {
      transform: scale(1.05);
      border-radius: 10px 10px 10px 10px;
    }

    /* ─── Body ───────────────────────────────────────── */
    .section2-card-body {
      padding: 14px 12px 16px;
    }

    /* ─── Title ──────────────────────────────────────── */
    .section2-card-title {

      font-size: 15.5px;
      font-weight: 600;
      color: #1a1a1a;
      line-height: 1.4;
      margin-bottom: 10px;
      display: -webkit-box;
      /* -webkit-line-clamp: 3; */
      -webkit-box-orient: vertical;
      overflow: hidden;
      font-family: var(--font-nav);

    }

    /* ─── Meta row ───────────────────────────────────── */
    .section2-card-meta {
      display: flex;
      align-items: center;
      gap: 6px;
      flex-wrap: wrap;
      font-family: var(--font-nav);
    }

    .section2-card-author {
      font-size: 10.5px;
      font-weight: 500;
      color: #a1a0a0;
      white-space: nowrap;
      font-family: var(--font-nav);
    }

    .section2-card-dot {
      font-size: 15px;
      color: #5b5b5b;
    }

    .section2-card-date {
      font-size: 11px;
      color: #888;
      white-space: nowrap;
    }

  

    /* section 3 */
    /* ── Outer wrapper ─────────────────────────────── */
    .section3-wrapper {
      max-width: 1150px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 350px;
      gap: 36px;
      align-items: start;
      padding-top: 40px;
    }

    /* ══════════════════════════════════════════════
       LEFT — TRENDING NEWS
    ══════════════════════════════════════════════ */
    .section3-heading {
      font-family: var(--font-nav);
      font-size: 20px;
      font-weight: 700;
      padding-bottom: 8px;

      display: inline-flex;

      border-bottom: 4px solid #e8e7e7;
      border-radius: 2px 2px 2px 2px;
      margin-top: -7px;

      position: relative;
      /* 👈 required */
      z-index: 0;



    }

    .section3-heading-divider {
      border: none;
      width: 3%;
      border-bottom: 5px solid #1a1a1a;
      margin-top: -4px;
      position: relative;
      /* 👈 required */
      z-index: 10;
      border-radius: 2px 2px 2px 2px;


    }

    .section3-featured-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin-bottom: 22px;
      padding-top: 15px;
    }

    .section3-featured-card {
      cursor: pointer;
    }

    .section3-featured-thumb {
      width: 100%;
      aspect-ratio: 4/3;
      overflow: hidden;
      border-radius: 4px;
      margin-bottom: 10px;
    }

    .section3-featured-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.35s ease;
    }

    .section3-featured-card:hover .section3-featured-thumb img {
      transform: scale(1.04);
    }

    .section3-featured-title {
      font-family: var(--font-nav);
      font-size: 16px;
      font-weight: 900;
      line-height: 1.4;
      color: #111;
      margin-bottom: 6px;
    }

    .section3-featured-date {
      font-size: 13.5px;
      color: #888;
      font-family: var(--font-nav);
    }

    .section3-small-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 20px;
      margin-bottom: 20px;
    }

    .section3-small-card {
      display: flex;
      gap: 14px;
      align-items: flex-start;
      cursor: pointer;
    }

    .section3-small-thumb {
      width: 80px;
      min-width: 80px;
      height: 60px;
      border-radius: 10px;
      overflow: hidden;
    }

    .section3-small-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .section3-small-card:hover .section3-small-thumb img {
      transform: scale(1.06);
    }

    .section3-small-title {
      font-size: 13.5px;
      font-weight: 600;
      color: #111;
      line-height: 1.4;
      margin-bottom: 5px;
      display: -webkit-box;
      /* -webkit-line-clamp: 2; */
      -webkit-box-orient: vertical;
      overflow: hidden;
      font-family: var(--font-nav);
    }

    .section3-small-meta {
      font-size: 11.5px;
      color: #464646;
      font-family: var(--font-nav);
    }

    .section3-see-more {
      text-align: right;
      padding-top: 10px;
      font-family: var(--font-nav);

    }

    .section3-see-more a {
      font-size: 14px;
      font-weight: 600;
      color: #000000;
      text-decoration: none;
    }

    .section3-see-more a:hover {
      color: #e63a2e;
    }

    /* ══════════════════════════════════════════════
       RIGHT — SUBSCRIPTION CAROUSEL
    ══════════════════════════════════════════════ */
    .section3-right {
      position: sticky;
      top: 20px;
      margin-top: 60px;
    }

    .section3-sub-heading {
      font-family: var(--font-nav);
      font-size: 18px;
      font-weight: 700;
      padding-bottom: 8px;
      border-bottom: 3px solid #1a1a1a;
      display: inline-block;
      margin-bottom: 20px;
      /*  */
      display: inline-flex;

      border-bottom: 4px solid #e8e7e7;
      border-radius: 2px 2px 2px 2px;
      margin-top: -7px;

      position: relative;
      /* 👈 required */
      z-index: 0;
      width: 100%;

    }

    .section3-sub-heading-divider {
      border: none;
      width: 20%;
      border-bottom: 5px solid #1a1a1a;
      margin-top: -24px;
      position: relative;
      /* 👈 required */
      margin-bottom: 10px;
      z-index: 10;
      border-radius: 2px 2px 2px 2px;


    }

    /* ── Carousel row: [<] [card] [>] ─────────── */
    .section3-carousel-row {
      display: flex;
      align-items: center;
      gap: 0;
      margin-bottom: 0px;

    }

    .section3-carousel-arrow {
      flex-shrink: 0;
      background: none;
      border: 0px solid#2563eb;
      stroke-width: 1;

      font-size: 60px;
      line-height: 1;
      cursor: pointer;
      color: #2563eb;
      ;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: border-color 0.2s, color 0.2s;
      user-select: none;
    }

    .section3-carousel-arrow:hover {
      border-color: #1a1a1a;
      color: #1a1a1a;
    }

    /* ── Viewport clips overflow ──────────────── */
    .section3-carousel-viewport {
      flex: 1;
      overflow: hidden;
      margin: 0 10px;
      margin-top: 15px;
    }

    /* ── Track slides horizontally ────────────── */
    .section3-carousel-track {
      display: flex;
      transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    .section3-carousel-slide {
      min-width: 100%;
      flex-shrink: 0;
    }

    /* ── Dark plan card ───────────────────────── */
    .section3-plan-card {
      background: transparent;
      color: #fff;

      padding: 0px 0px;
      text-align: center;
    }

    .section3-plan-card img {
      width: 250px;
      height: 250px;
      object-fit: contain;
    }


    /* ── Perks ────────────────────────────────── */
    .section3-perks {
      list-style: none;
      margin-bottom: 14px;
      display: flex;
      flex-direction: column;
      gap: 9px;
      /* min-height: 60px; */
    }

    .section3-perk {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 13px;
      color: #333;
      line-height: 1.45;
    }

    .section3-perk-check {
      color: #2a9d4e;
      font-size: 13px;
      flex-shrink: 0;
      margin-top: 2px;
    }

    /* ── CTA ──────────────────────────────────── */
    .section3-sub-cta {
      display: block;
      width: 100%;
      background: #1a1a1a;
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.3px;
      text-transform: uppercase;
      text-align: center;
      padding: 13px;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      margin-bottom: 14px;
      transition: background 0.2s;
      text-decoration: none;
    }

    .section3-sub-cta:hover {
      background: #e63a2e;
    }

    /* ── Dots ─────────────────────────────────── */
    .section3-dots {
      display: flex;
      justify-content: center;
      gap: 6px;
    }

    .section3-dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #a3c0fe;
      font-size: 0px;
      border: none;
      padding: 0;
      cursor: pointer;
      transition: background 0.2s, transform 0.2s;
    }

    .section3-dot.section3-dot--active {
      background: #2563eb;
      ;
      transform: scale(1.25);
    }

  
    /* section 4 */
    /* ─── Outer Wrapper ───────────────────────────────── */
    .section4-wrapper {
      max-width: 1150px;
      margin: 0 auto;
      margin-top: 50px;
    }

    /* ─── Header Row ──────────────────────────────────── */
    .section4-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 15px;
      border-radius: 10px 10px 10px 10px;
    }

    .section4-title {
      font-family: var(--font-nav);
      font-size: 22px;
      font-weight: 700;
      color: #000000;
    }

    .section4-header-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section4-see-more {
      font-size: 13.5px;
      font-weight: 600;
      color: #1a1a1a;
      text-decoration: none;
      letter-spacing: 0.2px;
      transition: color 0.2s;
      font-family: var(--font-nav);
    }

    .section4-see-more:hover {
      color: #e63a2e;
    }

    /* ─── Arrow Buttons ───────────────────────────────── */
    .section4-arrow {
      background: none;
      border: 0px solid #ccc;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      font-size: 30px;
      cursor: pointer;
      color: black;
      display: inline-flex;
      align-items: center;
      justify-content: right;
      transition: border-color 0.2s, color 0.2s, background 0.2s;
      flex-shrink: 0;
    }

  

    /* ─── Divider ─────────────────────────────────────── */
    .section4-divider {
      border: none;
      border-top: 5px solid #000000;
      margin-bottom: 15px;
      padding-top: 10px;
    }

    /* ─── Slider Container ────────────────────────────── */
    .section4-slider-outer {
      overflow: hidden;
      position: relative;
    }

    .section4-slider-track {
      display: flex;
      gap: 20px;
      transition: transform 0.4s ease;
    }

    /* ─── Card ────────────────────────────────────────── */
    .section4-card {
      flex: 0 0 calc(25% - 15px);
      min-width: 0;
      cursor: pointer;
    }

    /* ─── Thumbnail ───────────────────────────────────── */
    .section4-card-thumb {
      width: 100%;
      aspect-ratio: 4 / 3;
      border-radius: 6px;
      overflow: hidden;
      margin-bottom: 10px;
      position: relative;
    }

    .section4-arrow--prev {
      color: gray;
    }

    .section4-card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.35s ease;
    }

    .section4-card:hover .section4-card-thumb img {
      transform: scale(1.05);
    }

    /* ─── Category + Date ─────────────────────────────── */
    .section4-card-meta {
      font-size: 11.5px;
      font-weight: 500;
      color: #5e5d5d;
      letter-spacing: 0.4px;

      margin-bottom: 6px;
      font-family: var(--font-nav);
    }

    .section4-card-meta span {
      color: #bbb;
      font-weight: 400;
      margin: 0 4px;
    }

    /* ─── Title ───────────────────────────────────────── */
    .section4-card-title {
      font-family: var(--font-nav);
      font-size: 15.6px;
      font-weight: 700;
      color: #292929;
      line-height: 1.45;
      display: -webkit-box;
      /* -webkit-line-clamp: 3; */
      -webkit-box-orient: vertical;
      overflow: hidden;
      transition: color 0.2s;
    }

    .section4-card:hover .section4-card-title {
      color: #e63a2e;
    }


    /*  */
    /* ─── Wrapper ─────────────────────────────────────── */
    .section5-wrapper {
      max-width: 1150px;
      margin: 0 auto;

      background-color: #f6f6f6;
      /* border: 1.5px solid rgb(242, 242, 242); */
      border-radius: 10px;
    }

    /* ─── Header Row ──────────────────────────────────── */
    .section5-header {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: space-between;
      margin-bottom: 0px;
      padding: 18px 20px;
      background-color: white;
      border: 1px solid rgb(235, 235, 235);
    }

    .section5-title {
      font-family: var(--font-nav);
      font-size: 20px;
      font-weight: 700;
      color: #1a1a1a;
      margin-right: 6px;
      white-space: nowrap;
    }

    .section5-see-more {
      font-size: 13.8px;
      font-weight: 600;
      color: #1a1a1a;
      text-decoration: none;
      white-space: nowrap;
      margin-right: 4px;
      transition: color 0.2s;
      font-family: var(--font-nav);
    }

    .section5-see-more:hover {
      color: #e63a2e;
    }

    /* ─── Tab List ────────────────────────────────────── */
    .section5-tabs {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 5px;
      list-style: none;
    }

    .section5-tab {
      font-size: 13.8px;
      font-weight: 500;
      color: #3b3b3b;
      padding: 7px 11px;
      border-radius: 5px;
      cursor: pointer;
      border: 1px solid transparent;
      transition: background 0.18s, color 0.18s, border-color 0.18s;
      white-space: nowrap;
      user-select: none;
      background-color: #f6f6f6;
      font-family: var(--font-nav);
    }

    .section5-tab:hover {
      background: #f0f0f0;
      color:white;
    }

    .section5-tab--active {
      background: black;
      color: #ffffff;
      border-color: #1a1a1a;
    }

    .section5-tab--active:hover {
      background: #333;
    }

    /* ─── Divider ─────────────────────────────────────── */
    .section5-divider {
      border: none;
      border-top: 0px solid #1a1a1a;
      margin-bottom: 10px;
    }

    /* ─── Grid ────────────────────────────────────────── */
    .section5-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px 25px;
      /* min-height: 40px; */
      padding: 0px 15px;
      border: 0.1px solid rgb(230, 227, 227);
      border-radius: 5px;

    }

    /* ─── Empty State ─────────────────────────────────── */
    .section5-empty {
      display: none;
      grid-column: 1 / -1;
      text-align: center;
      padding: 40px 0 20px;
      color: #bbb;
      font-size: 14px;
      font-style: italic;
    }

    .section5-empty--visible {
      display: block;
    }

    /* ─── Card ────────────────────────────────────────── */
    .section5-card {
      cursor: pointer;
      display: block;
    }

    .section5-card--hidden {
      display: none;
    }

    /* ─── Thumbnail ───────────────────────────────────── */
    .section5-card-thumb {
      width: 100%;
      aspect-ratio: 16 / 10;
      border-radius: 5px;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .section5-card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.35s ease;
    }

    .section5-card:hover .section5-card-thumb img {
      transform: scale(1.05);
    }

    /* ─── Card Title ──────────────────────────────────── */
    .section5-card-title {
      font-family: var(--font-nav);
      font-size: 14.5px;
      font-weight: 700;
      line-height: 1.45;
      color: #111;
      margin-bottom: 8px;
      display: -webkit-box;
      /* -webkit-line-clamp: 3; */
      -webkit-box-orient: vertical;
      overflow: hidden;
      transition: color 0.2s;
    }

    .section5-card:hover .section5-card-title {
      color: #e63a2e;
    }

    /* ─── Card Meta ───────────────────────────────────── */
    .section5-card-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: #999;
      font-family: var(--font-nav);
    }

    .section5-card-date {
      color: #575757;
      font-family: var(--font-nav);
    }

    .section5-card-sep {
      width: 1px;
      height: 12px;
      background: #ddd;
      display: inline-block;
    }

    .section5-card-tag {
      font-size: 11.5px;
      font-weight: 600;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 0.3px;
    }
    .section5-card {
    padding: 20px 0px;
}

    /* ─── Responsive ──────────────────────────────────── */
    @media (max-width: 780px) {
      .section5-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 480px) {
      .section5-grid {
        grid-template-columns: 1fr;
      }

      .section5-header {
        gap: 8px;
      }
    }

    /* section 6 */
    .section6-wrapper {
      max-width: 1150px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 48px;
      padding-top: 50px;
    }

    .section6-block {
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    /* ── Header ── */
    .section6-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 4px solid #1a1a1a;
      padding-bottom: 15px;
      border-radius: 3px 3px 3px 3px;
    }

    .section6-title {
      font-family: var(--font-nav);
      font-size: 23px;
      font-weight: 900;
      letter-spacing: -0.3px;
      color: #1a1a1a;
    }

    .section6-header-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .section6-see-more {
      font-size: 14px;
      font-weight: 700;
      color: black;
      text-decoration: none;
      letter-spacing: 0.2px;
      transition: color 0.2s;
      font-family: var(--font-nav);
    }

    .section6-see-more:hover {
      color: #000;
    }

    .section6-nav-btn {
      width: 30px;
      height: 30px;
      border: 0px solid #ccc;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }

    .section6-nav-btn:hover {
      border-color: #1a1a1a;
      background: #1a1a1a;
    }

    .section6-nav-btn:hover svg {
      stroke: #fff;
    }

    .section6-nav-btn.section6-disabled {
      opacity: 0.35;
      cursor: not-allowed;
      pointer-events: none;
    }

    .section6-nav-btn svg {
      width: 20px;
      height: 20px;
      stroke: #000000;
      stroke-width: 1;
      fill: none;
      transition: stroke 0.2s;
    }

    /* ── Carousel viewport ── */
    .section6-carousel-viewport {
      overflow: hidden;
      width: 100%;
    }

    .section6-grid {
      display: flex;
      gap: 18px;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    /* ── Card ── */
    .section6-card {
      display: flex;
      flex-direction: column;
      gap: 9px;
      cursor: pointer;
      flex: 0 0 calc(25% - 14px);
      min-width: 0;
    }

    .section6-card-img-wrap {
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border-radius: 4px;
      background: #e0e0e0;
    }

    .section6-card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.35s ease;
    }

    .section6-card:hover .section6-card-img {
      transform: scale(1.04);
    }

    /* ── Card Meta ── */
    .section6-card-meta {
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-nav);
    }

    .section6-card-category {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.8px;
      text-transform: uppercase;
      color: #666;
      font-family: var(--font-nav);
    }

    .section6-card-dot {
      width: 3px;
      height: 3px;
      border-radius: 50%;
      background: #6e6d6d;
      flex-shrink: 0;
    }

    .section6-card-date {
      font-size: 12px;
      color: #656565;
    }

    .section6-card-headline {
      font-size: 16px;
      font-weight: 600;
      line-height: 1.4;
      color: #1a1a1a;
      transition: color 0.2s;
      font-family: var(--font-nav);
    }

    .section6-card-headline.section6-link-blue {
      color: #1a6aab;
    }

    .section6-card:hover .section6-card-headline {
      color: #444;
    }

    .section6-card:hover .section6-card-headline.section6-link-blue {
      color: #0d4f8a;
    }

    /* ── Dot indicators ── */
    .section6-dots {
      display: flex;
      justify-content: center;
      gap: 6px;
      margin-top: 4px;
    }

    .section6-dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #ccc;
      transition: background 0.25s, transform 0.25s;
      cursor: pointer;
    }

    .section6-dot.section6-dot-active {
      background: #1a1a1a;
      transform: scale(1.3);
    }

    /* section8 */
    /* ── Page wrapper ── */
    .section8-wrapper {
      max-width: 750px;
      
      display: flex;
      margin-left: 50px;
      gap: 25px;
      padding-top: 30px;

    }

    /* ── Sport Box ── */
    .section8-box {
      flex: 1;
      border: 1px solid #ddd;
      border-radius:10px;
      background: #fff;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    /* ── Box Header ── */
    .section8-box-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 12px;
      border-bottom: 1px solid #e8e8e8;
      flex-shrink: 0;
    }

    .section8-box-title {
    display: inline-block;
    font-size: 18px;
    font-weight: 900;
    color: #111;
    margin-bottom: -3px;
    position: relative;
    z-index: 1;
    letter-spacing: 0.01em;
    letter-spacing: 0.2px;
    display: inline-block;
    padding-bottom: 6px;
    border-bottom: 1.5px solid #111;
    margin-bottom: -6px;
    font-family: var(--font-nav);
    }

    .section8-header-right {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .section8-see-more {
     font-size: 14px;
    font-weight: 700;
    color: black;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: color 0.2s;
    font-family: var(--font-nav);
    }

    .section8-see-more:hover {
      color: #000;
    }

    .section8-scroll-btn {
      width: 20px;
      height: 20px;
      border: none;
      background: transparent;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      color: rgb(84, 83, 83);
      transition: color 0.2s;
      font-size: 12px;
    }

    .section8-scroll-btn:hover {
      color: #1a1a1a;
    }

    .section8-scroll-btn.section8-disabled {
      
      cursor: not-allowed;
      pointer-events: none;
    }

    .section8-scroll-btn svg {
      width: 14px;
      height: 14px;
     
    }

    /* ── Body: list + scrollbar side by side ── */
    .section8-body {
      display: flex;
      flex-direction: row;
      overflow: hidden;
      flex: 1;
    }

    /* ── Scrollable list area ── */
    .section8-list-viewport {
      flex: 1;
      overflow: hidden;
      position: relative;
    }

    .section8-list {
      display: flex;
      flex-direction: column;
      transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      will-change: transform;
    }

    /* ── Individual list item ── */
    .section8-item {
      display: flex;
      align-items: center;
      gap: 15px;
      padding: 15px 15px;
     
      cursor: pointer;
      transition: background 0.15s;
    }

    .section8-item:last-child {
      border-bottom: none;
    }

    .section8-item:hover {
      background: #fafafa;
    }

    .section8-item-img-wrap {
      flex-shrink: 0;
      width: 90px;
      height: 70px;
      border-radius: 8px;
      overflow: hidden;
      background: #e0e0e0;
    }

    .section8-item-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
    }

    .section8-item:hover .section8-item-img {
      transform: scale(1.05);
    }

    .section8-item-content {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 4px;
    }

    .section8-item-headline {
      font-size: 14px;
      font-weight: 600;
      line-height: 1.4;
      color: #1a1a1a;
      overflow: hidden;
      display: -webkit-box;
      /* -webkit-line-clamp: 2; */
      -webkit-box-orient: vertical;
       font-family: var(--font-nav);
    }

    .section8-item:hover .section8-item-headline {
      color: #444;
    }

    .section8-item-byline {
      font-size: 11.8px;
      color: #2b2b2b;
       font-family: var(--font-nav);
    }

    /* ── Custom scrollbar track (right strip) ── */
    .section8-scrollbar-track {
      width: 8px;
      background: #f0f0f0;
      flex-shrink: 0;
      position: relative;
      border-left: 1px solid #e8e8e8;
    }

    .section8-scrollbar-thumb {
      position: absolute;
      left: 1px;
      right: 1px;
      border-radius: 4px;
      background: #bbb;
      transition: top 0.35s cubic-bezier(0.4, 0, 0.2, 1), height 0.35s;
      cursor: pointer;
    }

    .section8-scrollbar-thumb:hover {
      background: #999;
    }

    /* section9 */
    .section9-wrapper {
      max-width: 1150px;
      margin: 0 auto;
      padding-top: 60px;
    }

    .section9-block {
      margin-bottom: 36px;
    }

    .section9-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-bottom: 4px solid #1a1a1a;
      padding-bottom: 6px;
      margin-bottom: 25px;
    }

    .section9-title {
      font-family: var(--font-nav);
    font-size: 23px;
    font-weight: 900;
    letter-spacing: -0.3px;
    color: #1a1a1a;
    padding-bottom: 10px;
    }

    .section9-see-more-group {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .section9-see-more-link {
      font-size: 14px;
    font-weight: 700;
    color: black;
    text-decoration: none;
    letter-spacing: 0.2px;
    transition: color 0.2s;
    font-family: var(--font-nav);
    }

    .section9-see-more-link:hover {
      color: #1a1a1a;
    }

    .section9-nav-buttons {
      display: flex;
      gap: 4px;
    }

    .section9-nav-btn {
      width: 26px;
      height: 26px;
      border: 1px solid #ccc;
      border-radius: 4px;
      background: #fff;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      color: #555;
      transition: background 0.15s;
    }

    .section9-nav-btn:hover {
      background: #f0f0f0;
    }

    .section9-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }

    .section9-card {
      display: flex;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
    }

    .section9-img-wrap {
      width: 100%;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border-radius: 4px;
      background: #e0e0e0;
    }

    .section9-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.2s ease;
    }

    .section9-card:hover .section9-img-wrap img {
      transform: scale(1.03);
    }

    .section9-meta {
      font-size: 11.5px;
    font-weight: 700;
    
   
    color: #888787;
    font-family: var(--font-nav);
    }

    .section9-card-title {
     font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    transition: color 0.2s;
    font-family: var(--font-nav);
    }

    .section9-card:hover .section9-card-title {
      text-decoration: underline;
    }

  
    .section10-wrapper {
      display: flex;
      gap: 32px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 24px 16px;
      font-family: var(--font-nav);
    }

    /* LEFT COLUMN - Technology */
    .section10-left {
      flex: 1;
      min-width: 0;
    }

    .section10-left-heading-wrapper {
      border-bottom: 4px solid #ddd;
      margin-bottom: 40px;
      border-radius: 2px;
    }

    .section10-left-heading {
      font-size: 23px;
      font-weight: 900;
      letter-spacing: 0.2px;
      display: inline-block;
      padding-bottom: 15px;
      border-bottom: 4px solid black;
      margin-bottom: -4px;
      font-family: var(--font-nav);
      border-radius: 2px;
    }

    .section10-article-list {
      display: flex;
      flex-direction: column;
      gap: 50px;
      padding: 0px 10px;
    }

    .section10-article-item {
      display: flex;
      gap: 12px;
      align-items: flex-start;

    }

    .section10-article-item:hover {
      background-color: #f6f6f6;
      ;
      padding: 20px;
    }

    .section10-article-thumb {
      width: 70px;
      height: 55px;
      object-fit: cover;
      flex-shrink: 0;
      background: #ddd;
    }

    .section10-article-thumb-placeholder {
      width: 100px;
      height: 100px;
      flex-shrink: 0;
      background: #f0f0f0;

    }

    .section10-article-thumb-placeholder img {
      width: 100%;
      height: 100%;
      border-radius: 10px;
      object-fit: cover;
    }

    .section10-article-meta {
      flex: 1;
      min-width: 0;
    }

    .section10-article-date {
      font-size: 11.5px;
      color: #888;
      margin-bottom: 10px;
    }

    .section10-article-title {
      font-size: 17px;
      font-weight: 900;
      line-height: 1.4;
      color: #111;
      text-decoration: none;
    }

    .section10-article-title:hover {
      text-decoration: underline;
    }

    .section10-see-more {
      display: block;
      text-align: right;
      font-size: 14px;
      color: #000000;
      margin-top: 16px;
      font-weight: 600;
      text-decoration: none;
    }

    .section10-see-more:hover {
      text-decoration: underline;
    }

    /* RIGHT COLUMN - Page 1 */
    .section10-right {
      flex: 1.1;
      min-width: 0;
      font-family: var(--font-nav);
    }

    .section10-right-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      border-bottom: 4px solid #ddd;
      border-radius: 2px;
      margin-bottom: 16px;
    }

    .section10-right-heading {
      font-size: 20px;
      font-weight: 700;
      display: inline-block;
      padding-bottom: 10px;
      border-bottom: 4px solid black;
      margin-bottom: -3px;
      font-family: var(--font-nav);
      border-radius: 2px;
    }

    .section10-right-see-more {
      font-size: 13px;
      font-weight: 900;
      color: #000000;
      text-decoration: none;
      padding-bottom: 15px;
    }

    .section10-right-see-more:hover {
      text-decoration: underline;
    }

    .section10-featured-img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
      background: #e0c0d0;
    }

    .section10-featured-img-placeholder {
      width: 100%;
      height: 300px;
      background: #f0f0f0;
      border: 1px solid #ddd;
      object-fit: cover;
      border-radius: 20px;

    }

    .section10-featured-img-placeholder img {
      width: 100%;
      height: 100%;
      border-radius: 20px;
      object-fit: cover;

    }

    .section10-featured-title {
      font-size: 20px;
      font-weight: 700;
      line-height: 1.35;
      margin: 12px 0 4px;
      color: #111;
      text-decoration: none;
      display: block;
    }

    .section10-featured-title:hover {
      text-decoration: underline;
    }

    .section10-featured-date {
      font-size: 13px;
      color: #888;
      margin-bottom: 14px;
    }

    .section10-small-list {
      display: flex;
      flex-direction: column;
      gap: 0;
      border-top: 0px solid #e5e5e5;
    }

    .section10-small-item {
      display: flex;
      gap: 12px;
      align-items: center;
      padding: 10px 0;
      border-bottom: 0px solid #e5e5e5;
      text-decoration: none;
      color: inherit;
    }

    .section10-small-item:hover .section10-small-title {
      text-decoration: underline;
    }

    .section10-small-thumb-placeholder {
      width: 80px;
      height: 58px;
      flex-shrink: 0;
      background: #f0f0f0;
      border: 1px solid #ddd;
    }

    .section10-small-thumb {
      width: 90px;
      height: 60px;
      flex-shrink: 0;
      object-fit: cover;
    }

    .section10-small-thumb img {
      width: 100%;
      height: 100%;
      border-radius: 5px;
    }

    .section10-small-meta {
      flex: 1;
      min-width: 0;
    }

    .section10-small-title {
      font-size: 14.5px;
      font-weight: 600;
      line-height: 1.4;
      color: #111;
      margin-bottom: 4px;
    }

    .section10-small-byline {
      font-size: 11px;
      color: #757474;
    }

    .section11-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 20px 16px;
    }

    /* ── SHARED HEADING STYLE ── */
    .section11-heading-wrapper {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      border-bottom: 4px solid black;
      margin-bottom: 14px;
    }

    .section11-heading-wrapper-vid {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      border-bottom: 4px solid #ddd;
      margin-bottom: 14px;
    }

    .section11-heading {
      font-size: 23px;
      font-weight: 900;
      letter-spacing: 0.2px;
      display: inline-block;
      padding-bottom: 20px;

      margin-bottom: -4px;
      font-family: var(--font-nav);
      border-radius: 2px;
    }

    .section11-heading-vid {
      font-size: 23px;
      font-weight: 900;
      letter-spacing: 0.2px;
      display: inline-block;
      padding-bottom: 15px;
      border-bottom: 4px solid black;
      margin-bottom: -4px;
      font-family: var(--font-nav);
      border-radius: 2px;
    }

    .section11-heading-controls {
      display: flex;
      align-items: center;
      gap: 6px;
      padding-bottom: 10px;
    }

    .section11-see-more {
      font-size: 14px;
      font-weight: 700;
      color: black;
      text-decoration: none;
      letter-spacing: 0.2px;
      transition: color 0.2s;
      font-family: var(--font-nav);
    }

    .section11-see-more:hover {
      text-decoration: underline;
    }

    .section11-nav-btn {
      width: 30px;
      height: 30px;
      border: 0px solid #ccc;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
      font-size: 30px;
      color: #b7b6b6;
    }



    /* ── ENTERTAINMENT CARDS ── */
    .section11-entertainment-block {
      margin-bottom: 70px;
    }

    .section11-cards-row {
      display: flex;
      gap: 15px;
    }

    .section11-card {
      flex: 1;
      min-width: 0;
    }

    .section11-card-img-wrap {
      width: 100%;
      aspect-ratio: 4/3;
      background: #f0f0f0;

      margin-bottom: 12px;
      overflow: hidden;
      border-radius: 5px;
    }

    .section11-card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .section11-card-category {
      font-size: 11px;
      color: #878686;

      letter-spacing: 0.3px;
      margin-bottom: 3px;
      display: flex;
      align-items: center;
      gap: 6px;
      font-family: var(--font-nav);
      font-weight: 900;
    }

    .section11-card-category span {
      font-size: 11px;
      color: #676767;
      font-weight: 500;

    }

    .section11-card-title {
      font-size: 16px;
      font-weight: 600;
      line-height: 1.4;
      color: #1a1a1a;
      transition: color 0.2s;
      font-family: var(--font-nav);
      text-decoration: none;
    }

    .section11-card-title:hover {
      text-decoration: none;
    }



    /* ── VIDEOS SECTION ── */
    .section11-videos-block {
      margin-bottom: 28px;
    }

    .section11-video-row {
      display: flex;
      gap: 10px;
    }

    .section11-video-card {
      flex: 1;
      min-width: 0;
    }

    .section11-video-thumb {
      width: 100%;
      aspect-ratio: 16/9;
      background: #f0f0f0;

      margin-bottom: 6px;
      overflow: hidden;
      border-radius: 10px;
    }

    .section11-video-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .section11-video-title {
      font-size: 16px;
      font-weight: 600;
      line-height: 1.4;
      color: #1a1a1a;
      transition: color 0.2s;
      font-family: var(--font-nav);
      text-decoration: none;
    }

    .section11-video-title:hover {
      text-decoration: underline;
      color: #007aff;
      ;
    }

   /* ══════════════════════════════════════════════
       GRID WRAPPER
       Row 1: [State Editions heading] [empty] [Advertise heading]
       Row 2: [State tabs]             [News]  [Ad card]
       All columns share the same grid column tracks → perfect alignment
    ══════════════════════════════════════════════ */
    .section11-bottom-row-wrapper {
      display: grid;
      grid-template-columns: 200px 560px 300px;
      grid-template-rows: auto auto;
      max-width: 1200px;
      margin: 24px auto;
      background: #fff;
    }
 
    /* ── ROW 1 CELLS ── */
 
    /* Cell [1,1] — "State Editions" heading */
    .section11-bottom-row-heading-state {
      grid-column: 1;
      grid-row: 1;
      border-bottom: 4px solid  lab(96.1596% -.0823438 -1.13575);
      padding-bottom: 0;
    }
 
    /* Cell [1,2] — empty center of heading row: gray line passes through */
    .section11-bottom-row-heading-gap {
      grid-column: 2;
      grid-row: 1;
      border-bottom: 4px solid lab(96.1596% -.0823438 -1.13575);
      padding-top: 30.5px;
    }
 
    /* Cell [1,3] — "Advertise" heading */
    .section11-bottom-row-heading-ad {
      grid-column: 3;
      grid-row: 1;
      border-bottom: 0px solid lab(96.1596% -.0823438 -1.13575);
    }
 
    /* Shared heading text style:
       thick black border only under the text itself,
       margin-bottom: -1px overlaps the gray cell border */
    .section11-bottom-row-heading-text {
      display: inline-block;
      font-size: 15px;
      font-weight: 700;
      color: #111;
      padding-bottom: 7px;
      border-bottom: 3px solid #111;
      margin-bottom: -1px;
      letter-spacing: 0.01em;
    }
 
    /* ── ROW 2 CELLS ── */
 
    /* Cell [2,1] — State tabs */
    .section11-bottom-row-left {
      grid-column: 1;
      grid-row: 2;
      padding-top: 30px;
    }
 
    .section11-bottom-row-state-list {
      list-style: none;
   
    }
 
    .section11-bottom-row-state-item {
      margin-bottom: 4px;
    }
 
    .section11-bottom-row-state-item a {
      display: block;
      padding: 10px 14px;
      font-size: 14px;
      text-decoration: none;
      color: #222;
      background: #f0f0f0;
      transition: background 0.15s;
    }
 
    .section11-bottom-row-state-item a:hover {
      background: #e0e0e0;
    }
 
    .section11-bottom-row-state-item.section11-bottom-row-state-active a {
      background: #111;
      color: #fff;
      font-weight: 600;
    }
 
    /* Cell [2,2] — News feed */
    .section11-bottom-row-center {
      grid-column: 2;
      grid-row: 2;
      padding: 10px 24px 0;
    }
 
    .section11-bottom-row-headline-title {
      font-size: 17px;
      font-weight: 700;
      color: #111;
      line-height: 1.4;
      margin-bottom: 4px;
    }
 
    .section11-bottom-row-headline-date {
      font-size: 12px;
      color: #888;
      margin-bottom: 14px;
      display: block;
    }
 
    .section11-bottom-row-news-list {
      list-style: none;
    }
 
    .section11-bottom-row-news-item {
      margin-bottom: 10px;
    }
 
    .section11-bottom-row-news-item a {
      font-size: 13.5px;
      color: #222;
      text-decoration: none;
      line-height: 1.5;
      display: block;
    }
 
    .section11-bottom-row-news-item a:hover {
      color: #c0392b;
      text-decoration: underline;
    }
 
    /* Cell [2,3] — Ad card */
    .section11-bottom-row-right {
      grid-column: 3;
      grid-row: 2;
      padding-top: 10px;
    }
 
   
 
    .section11-bottom-row-ad-url {
      font-size: 12px;
      color: #999;
      letter-spacing: 0.04em;
    }
    /* ── FOOTER WRAPPER ── */
    .footer {
      background-color: #000;
      color: #fff;
      padding: 0;
      padding-top: 10px;

      font-family: var(--font-nav);
    }

    /* ── TOP BAR: Brand + Social ── */
    .footer-top-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0px 30px;
      border-bottom: 0.1px solid #252525;
      margin: 30px 130px;
      font-family: var(--font-nav);
      padding: 6px 0px 35px;

    }

    .footer-brand-name {
      font-size: 22px;
      font-weight: 900;
      color: #fff;
      letter-spacing: 1px;
      text-transform: uppercase;
      font-family: var(--font-nav);

    }

    .footer-brand-tagline {
      font-size: 13px;
      color: #aaa;
      margin-top: 8px;
      letter-spacing: 0.3px;
      font-weight: 900;

    }

    .footer-social-links {
      display: flex;
      gap: 16px;
      align-items: center;
    }

    .footer-social-link {
      color: #ffffff;
      text-decoration: none;
      font-size: 30px;
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      transition: color 0.2s;
      background-color: black;
      border: 1px solid rgb(36, 36, 36);
    }

    .footer-social-link:hover {
      color: #fff;
    }

    .footer-social-link svg {
      width: 20px;
      height: 20px;
      fill: currentColor;
    }

    /* ── MAIN NAV COLUMNS ── */
    .footer-nav {
      display: flex;
      gap: 0;
      padding: 28px 30px 30px;
      border-bottom: 0.1px solid #1a1a1a;
      padding: 10px 130px 30px
    }

    .footer-nav-column {
      flex: 1;
    }

    .footer-nav-heading {
      font-size: 14.5px;
      font-weight: 700;

      text-transform: uppercase;
      color: white;
      margin-bottom: 0px;
    }

    .footer-nav-list {
      list-style: none;
      padding-top: 20px;
    }

    .footer-nav-item {
      margin-bottom: 10px;
    }

    .footer-nav-link {
      font-size: 13.5px;
      color: #afacac;
      text-decoration: none;
      text-transform: uppercase;

      transition: color 0.2s;
    }

    .footer-nav-link:hover {
      color: #fff;
    }

    /* ── BOTTOM BAR ── */
    .footer-bottom-bar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 30px;
      padding: 20px 150px 60px;
      font-size: 9px;
    }

    .footer-bottom-links {
      display: flex;
      gap: 18px;
      align-items: center;
    }

    .footer-bottom-link {
      font-size: 13px;
      color: lab(65.9269% -.832707 -8.17473);
      text-decoration: none;
      font-weight: 500;
      transition: color 0.2s;
    }

    .footer-bottom-link:hover {
      color: #fff;
    }

    .footer-copyright {
      font-size: 12px;
      color: lab(65.9269% -.832707 -8.17473);
      text-decoration: none;
      font-weight: 500;

    }

   

    .footer-title {
      display: inline-block;
      /* border-bottom: 1px solid #2e2e2e; */
      padding-bottom: 4px;
      /* space between text and line */
    }

    .footer-title {
      position: relative;
      display: inline-block;
    }

    .footer-title::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 100%;
      height: 1px;
      background-color: #2e2e2e;
    }

    /* section11 */
    /* ── Outer wrapper: 3 columns, no border ── */
    .section11-bottom-row-wrapper {
     
      align-items: flex-start;
      max-width: 1200px;
      margin: 24px auto;
      background: #fff;
      gap: 0px;
      padding-top: 10px
    }

    /* ════════════════════════
       SHARED HEADING STYLE
       thick black line only under text, thin gray line full-width
    ════════════════════════ */
    .section11-bottom-row-heading-container {
      position: relative;
      margin-bottom: 12px;
    }

    /* Full-width thin gray line */
    .section11-bottom-row-heading-container::after {
      content: '';
      display: block;
      width: 100%;
      height: 1px;
      background: #f8f8f8;
      border-radius: 2px;
    }

    /* The heading text with thick black underline only under itself */
    .section11-bottom-row-heading-text {
      display: inline-block;
      font-size: 19px;
    font-weight: 900;
      color: #111;
     
     
      margin-bottom: -3px;
      position: relative;
      z-index: 1;
      letter-spacing: 0.01em;
     /*  */
   
    letter-spacing: 0.2px;
    display: inline-block;
    padding-bottom: 10px;
     border-bottom: 4px solid #111;
    margin-bottom: -6px;
    font-family: var(--font-nav);
   
    }
      .section11-bottom-row-heading-text-right {
      display: inline-block;
      font-size: 23px;
    font-weight: 900;
      color: #111;
     
     
   
      position: relative;
      z-index: 1;
      letter-spacing: 0.01em;
     /*  */
   
    letter-spacing: 0.2px;
    display: inline-block;
    padding-bottom: -40px;
     border-bottom: 2px solid #111;
    margin-bottom: -50px;
    font-family: var(--font-nav);
    padding-bottom: 5px;
    margin-left: 20px;
   
    }


    /* ════════════════════════
       LEFT PANEL – State Editions
    ════════════════════════ */
    .section11-bottom-row-left {
      width: 240px;
      min-width: 220px;
      flex-shrink: 0;
    }

    .section11-bottom-row-state-list {
      list-style: none;
    }

    .section11-bottom-row-state-item {
      margin-bottom: 8px;
    }

    .section11-bottom-row-state-item a {
      display: block;
      padding: 10px 20px;
      font-size: 14px;
      text-decoration: none;
      color: #222;
      background: #f0f0f0;
      transition: background 0.15s;
      font-family: var(--font-nav);
      font-weight: 900;
      border-radius: 5px;
    }

    .section11-bottom-row-state-item a:hover {
      background: #e0e0e0;
    }

    .section11-bottom-row-state-item.section11-bottom-row-state-active a {
      background: black;
      color: #fff;
      font-weight: 600;
      border-radius: 5px;
       font-family: var(--font-nav);
    }

    /* ════════════════════════
       MIDDLE PANEL – News Feed
    ════════════════════════ */
    .section11-bottom-row-center {
      flex: 1;
      padding: 30px 0px 30px 67px;
    }

    .section11-bottom-row-headline-title {
      font-size: 17px;
      font-weight: 700;
      color: #111;
      line-height: 1.4;
      margin-bottom: 4px;
        font-family: var(--font-nav);
    }

    .section11-bottom-row-headline-date {
      font-size: 12px;
      color: #1b1a1a;
      margin-bottom: 16px;
      display: block;
        font-family: var(--font-nav);
    }

    .section11-bottom-row-news-list {
      list-style: none;
    }

    .section11-bottom-row-news-item {
      margin-bottom: 10px;
    }

    .section11-bottom-row-news-item a {
      font-size: 14px;
      color: #000000;
      text-decoration: none;
      line-height: 1.5;
      display: block;
        font-family: var(--font-nav);
        font-weight: 900;
    }

    .section11-bottom-row-news-item a:hover {
      color: #b5451b;
      text-decoration: underline;
    }

    /* ════════════════════════
       RIGHT PANEL – Advertise
    ════════════════════════ */
    .section11-bottom-row-right {
      width: 350px;
      min-width: 280px;
      flex-shrink: 0;
      padding-top: 60px;
      padding-left: 70px;
    
    }
  .section11-bottom-row-right img{
           width: 100%;
           height: 100%;
  }
    

    .section11-bottom-row-ad-url {
      font-size: 12.5px;
      color: #999;
      letter-spacing: 0.04em;
    }
/* category */
 /* ── SECTION WRAPPER ── */
    .cat-section {
      max-width: 1260px;
      margin: 0 auto;
      padding: 30px 16px 200px;
    
    }

    /* ── SECTION HEADING ── */
    .cat-heading {
      font-family: var(--font-nav);
    font-size: 25px;
    font-weight: 900;
    color: #111111;
    padding-bottom: 15px;
    margin-bottom: 0px;
  text-transform: uppercase;
    display: inline-flex;
    margin-right: 100px;
    letter-spacing: -1px;
    }

    /* ── GRID ── */
    .cat-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
    }

    /* ── CARD ── */
    .cat-card {
     
      border: 1px solid #e5e5e5;
      display: flex;
      flex-direction: column;
      cursor: pointer;
    
      border-radius: 10px ;
    }

   

    /* ── CARD IMAGE WRAPPER ── */
    .cat-card-image-wrap {
      width: 100%;
      aspect-ratio: 16 / 9;
      overflow: hidden;
      background: #ddd;
        border-radius: 10px ;
    }

    .cat-card-image {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s ease;
      border-radius: 10px ;
    }

    .cat-card:hover .cat-card-image {
      transform: scale(1.03);
    }

    /* Placeholder when no image */
    .cat-card-image-placeholder {
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, #ccc 0%, #bbb 100%);
    }

    /* ── CARD BODY ── */
    .cat-card-body {
      padding: 10px 20px 15px;
      display: flex;
      flex-direction: column;
      gap: 5px;
    }

    /* ── CARD TITLE ── */
    .cat-card-title {
      font-size: 15px;
      font-weight: 700;
      color: #111;
      line-height: 1.4;
        font-family: var(--font-nav);
    }

    /* ── CARD META ── */
    .cat-card-meta {
      font-size: 11.5px;
      color: #888;
      padding-top: 5px;
      font-family: var(--font-nav);
    }

    .cat-card-meta-author {
      font-weight: 400;
      color: #666;
    }

    /* detail */
      /* ── PAGE WRAPPER ── */
    .detail-page {
    
      padding: 20px 16px 20px;
    }

    /* ── TWO-COLUMN LAYOUT ── */
    .detail-layout {
      display: flex;
      gap: 45px;
       max-width: 1250px;
      margin: 0 auto;
      align-items: flex-start;
    }

    /* ── MAIN CONTENT (LEFT) ── */
    .detail-main {
      flex: 0.99;
      min-width: 0;
    }

    /* ── SIDEBAR (RIGHT) ── */
    .detail-sidebar {
      width: 390px;
      flex-shrink: 0;
    }

    /* ── DATE ── */
    .detail-date {
      font-size: 13.5px;
      color: #888;
      margin-bottom: 20px;
       font-family: var(--font-nav);
    }

    /* ── ARTICLE TITLE ── */
    .detail-title {
      font-size: 32px;
      font-weight: 900;
      line-height: 1.30;
      color: #111;
      margin-bottom: 30px;
      font-family: var(--font-nav);
    }

    /* ── BYLINE ── */
    .detail-byline {
      font-size: 13px;
      color: #686868;
      margin-bottom: 25px;
      border-top: 1px solid rgb(241, 241, 241);
      border-bottom: 1px solid rgb(244, 244, 244);
      padding: 20px 0px;
       font-family: var(--font-nav);
    }

    /* ── FEATURED IMAGE ── */
    .detail-featured-image-wrap {
      width: 100%;
      height: 100%;
      margin-bottom: 25px;
      background: #ddd;
      overflow: hidden;
      border-radius: 12px;
    }

    .detail-featured-image {
      width: 100%;
      height: 500px;
     
      object-fit: cover;
    
    }

    /* ── ARTICLE BODY ── */
    .detail-body {
      line-height: 1.75;
      color: #222;
    }

    .detail-paragraph {
      font-size: 16px;
      color: #222;
      margin-bottom: 14px;
      line-height: 1.75;
       font-family: var(--font-nav);
    }

    /* ── SIDEBAR: SECTION TITLE ── */
    .detail-sidebar-section-title {
   
    font-size: 19px;
    font-weight: 900;
    color: #111;
   
    letter-spacing: 0.2px;
  
    padding-bottom: 5px;
    border-bottom: 4px solid lab(94.38% -0.12 -1.69);
    margin-bottom: -4px;
    font-family: var(--font-nav);
    background-color:lab(98.2596% -.247031 -.706708);
    max-width: 100%;
    padding: 15px 15px 15px;
    z-index: 0;
    
    
   /* position: absolute; */
    }
        .section1-heading-divider1 {
      border: none;
      border-bottom: 4px solid #000000;
      margin-top: 0px;
      margin-bottom: 0px;
      max-width: 20%;
      z-index: 10;
      
     position: relative;
    }

    /* ── SIDEBAR: NEWS LIST ── */
    .detail-sidebar-news-list {
      list-style: none;
      margin-bottom: 24px;
      margin-top: 5px;
    }

    .detail-sidebar-news-item {
      display: flex;
      gap: 10px;
      align-items:flex-end;
      padding: 15px 10px;
    
      cursor: pointer;
    }

    .detail-sidebar-news-item:last-child {
      border-bottom: none;
    }

    .detail-sidebar-news-thumb-wrap {
      width: 80px;
      height: 65px;
      flex-shrink: 0;
      overflow: hidden;
      background: #ddd;
      border-radius: 10px;
    }

    .detail-sidebar-news-thumb {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s;
    }

    .detail-sidebar-news-item:hover .detail-sidebar-news-thumb {
      transform: scale(1.05);
    }

    .detail-sidebar-news-info {
      flex: 1;
      min-width: 0;
    }

    .detail-sidebar-news-title {
      font-size: 13.9px;
      font-weight: 800;
      color: #111;
      line-height: 1.35;
      margin-bottom: 5px;
      font-family: var(--font-nav);
    }

    .detail-sidebar-news-item:hover .detail-sidebar-news-title {
      color: #c0392b;
    }

    .detail-sidebar-news-date {
      font-size: 11px;
      color: #8f8e8e;
       font-family: var(--font-nav);
       font-weight: 700;
    }

    /* ── ADVERTISEMENT BOX ── */
    .detail-ad-box {
      background:black;
      color: #000000;
      padding: 30px 14px;
      text-align: center;
      margin-bottom: 24px;
    }

    .detail-ad-label {
      font-size: 18px;
      font-weight: 900;
      letter-spacing: -1px;
     
      color: #ffffff;
      margin-bottom: 8px;
      font-family: var(--font-nav);
    }

    .detail-ad-text {
      font-size: 13.5px;
         color: #eae7e7;
      margin-bottom: 14px;
      line-height: 1.5;
      font-family: var(--font-nav);
        font-weight: 900;
    }

    .detail-ad-btn {
      display: inline-block;
      padding: 7px 22px;
      border: 1px solid #fff;
      color: black;
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      letter-spacing: 0.5px;
      cursor: pointer;
      background: transparent;
      transition: background 0.2s, color 0.2s;
         font-family: var(--font-nav);
         background-color: white;
    }

    .detail-ad-btn:hover {
      background: #fff;
      color: #111;
    }

    /* ── RESPONSIVE ── */
    @media (max-width: 680px) {
      .detail-layout {
        flex-direction: column;
      }

      .detail-sidebar {
        width: 100%;
      }

      .detail-title {
        font-size: 20px;
      }
    }
    /*  */
     /* ══════════════════════════════════
       MAIN LAYOUT: content + sidebar
    ══════════════════════════════════ */
    .detail2-layout {
      max-width: 1230px;
      margin: 0 auto;
      display: flex;
      gap: 32px;
      align-items: flex-start;
    }

    .detail2-main {
      flex: 1;
      min-width: 0;
    }

    .detail2-sidebar {
      width: 400px;
      flex-shrink: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    /* ══════════════════════════════════
       REACTION BAR (Likes / Dislikes / Bookmark / Comments)
    ══════════════════════════════════ */
    .detail2-reaction-bar {
      display: flex;
      align-items: center;
      gap: 30px;
      padding: 25px 0 ;
      border-top: 1px solid #e5e5e5;
      border-bottom: 1px solid #e5e5e5;
      margin-bottom: 22px;
       font-family: var(--font-nav);
    }

    .detail2-reaction-btn {
      display: flex;
      align-items: center;
      gap: 12px;
      background: none;
      border: none;
      cursor: pointer;
       font-size: 13.5px;
      color:  lab(35.6337% -1.58697 -10.8425);
      padding: 0;
      transition: color 0.2s;
      font-family: inherit;
      font-weight: 600;
    }
    .detail2-reaction-btn:hover { color: #2f22de; }

    .detail2-reaction-btn svg {
      width: 20px;
      height: 20px;
   
      stroke: currentColor;
      stroke-width: 1.8;
       font-weight: 900;
    }
    
    .detail2-reaction-btn1 svg {
       width: 20px;
      height: 20px;
     fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
       font-weight: 900;
    }
      .detail2-reaction-btn1 {
      display: flex;
      align-items: center;
      gap: 5px;
      background: none;
      border: none;
      cursor: pointer;
      font-size: 13.5px;
         color: lab(35.6337% -1.58697 -10.8425);
      padding: 0;
      transition: color 0.2s;
      font-family: inherit;
       font-weight: 600;
    }
    .detail2-reaction-btn1:hover { color: #1a1a1a; }

    /* ══════════════════════════════════
       LEAVE A COMMENT
    ══════════════════════════════════ */
    .detail2-comment-section {
      margin-bottom: 26px;
    }

    .detail2-comment-title {
      font-size: 20px;
      font-weight: 900;
      color: #1a1a1a;
      margin-bottom: 20px;
        font-family: var(--font-nav);
    }

    .detail2-comment-textarea {
      width: 100%;
      min-height: 120px;
      border: 1px solid #d5d5d5;
      border-radius: 10px;
      padding: 10px 12px;
      font-family: inherit;
      font-size: 15.5px;
      color: #1b1a1a;
      resize: vertical;
      outline: none;
      transition: border-color 0.2s;
      background: #fff;
        font-family: var(--font-nav);
    }
    .detail2-comment-textarea::placeholder { color: #aaa; }
    .detail2-comment-textarea:focus { border-color: #888; }

    .detail2-comment-submit {
      margin-top: 10px;
      padding: 12px 35px;
      background:lab(65.32% 7.26 -48.32);
      color: #fff;
      border: none;
      border-radius: 10px;
      font-size: 13px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      transition: background 0.2s;
    }
    .detail2-comment-submit:hover { background: #2563eb; }

    /* ══════════════════════════════════
       SHARE THIS ARTICLE
    ══════════════════════════════════ */
    .detail2-share-section {
      margin-bottom: 20px;
    }

    .detail2-share-title {
      font-size: 14px;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 10px;
    }

    .detail2-share-buttons {
      display: flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
    }

    .detail2-share-btn {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 7px 20px;
      border-radius: 4px;
      font-size: 13px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      border: 1px solid #ddd;
      background:#f5f5f5;
      color: #cfcece;
      text-decoration: none;
      transition: opacity 0.2s;
        border-radius:10px;
         font-family: var(--font-nav);
    }
    .detail2-share-btn1:hover { opacity: 0.85; }
        .detail2-share-btn1 {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 7px 20px;
      border-radius: 4px;
      font-size: 13px;
      font-weight: 600;
      font-family: inherit;
      cursor: pointer;
      border: 1px solid #ddd;
      background:#f5f5f5;
      color: #cfcece;
      text-decoration: none;
      transition: opacity 0.2s;
        border-radius:10px;
         font-family: var(--font-nav);
    }

    .detail2-share-btn svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: white;
    
    }
      .detail2-share-btn1 svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      color: rgb(0, 0, 0);
    
    }

    /* Copy Link */
    .detail2-btn-copylink {
      border-color: #ffffff;
      color: #333;
      
    }

    /* X (Twitter) */
    .detail2-btn-x {
      background: #000;
      color: #fff;
      border-color: #202020;
    }

    /* WhatsApp */
    .detail2-btn-whatsapp {
      background: #25d366;
      color: #fff;
      border-color: #25d366;
    }

    /* Share */
    .detail2-btn-share {
      background:lab(35.6337% -1.58697 -10.8425);
      color: rgb(250, 248, 248);
      border-color:rgb(130, 128, 128);
    }

    /* ══════════════════════════════════
       RELATED NEWS
    ══════════════════════════════════ */
    .detail2-related-outer {
      max-width: 1250px;
      margin: 0px auto 32px;
      border-top: 1px solid #ddd;
      padding-top: 30px;
      padding-bottom: 50px;
    }

    /* .detail2-related-section {
      no border here — moved to outer
    } */

    .detail2-related-title {
     font-family: var(--font-nav);
    font-size: 22px;
    font-weight: 900;
    color: #111111;
    padding-bottom: 8px;
    margin-bottom: 0px;
    border-bottom: 4px solid #e2dede;
    /* display: inline-flex; */
   max-width: 100%;
    }
    .section1-heading-divider1 {
    border: none;
    border-bottom: 4px solid #000000;
    margin-top: -3px;
    margin-bottom: 25px;
    max-width: 20%;
    z-index: 10;
    position: relative;
}

    .detail2-related-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 25px;
    }

    .detail2-related-card {
      display: flex;
      flex-direction: column;
      gap: 0;
      cursor: pointer;
      border: 1px solid #e5e5e5;
      border-radius: 3px;
      overflow: hidden;
      transition: box-shadow 0.2s;
    }
    .detail2-related-card:hover {
      box-shadow: 0 2px 10px rgba(0,0,0,0.09);
    }

    .detail2-related-img-wrap {
      width: 100%;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: #e0e0e0;
      flex-shrink: 0;
    }

    .detail2-related-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.32s ease;
    }
    .detail2-related-card:hover .detail2-related-img { transform: scale(1.04); }

    .detail2-related-card-body {
      padding: 10px 18px 12px;
      display: flex;
      flex-direction: column;
      gap: 6px;
    }

    .detail2-related-headline {
      font-size: 16px;
      font-weight: 900;
      line-height: 1.4;
      color: #000000;
      transition: color 0.2s;
          font-family: var(--font-nav);
      
    }
    .detail2-related-card:hover .detail2-related-headline { color: #444; }

    .detail2-related-date {
      font-size: 14px;
      color: #999;
          font-family: var(--font-nav);
          padding-top: 5px;
    }

    /* ══════════════════════════════════
       SIDEBAR — small news items
    ══════════════════════════════════ */
    .detail2-sidebar-item {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 10px 0;
      border-bottom: 1px solid #f0f0f0;
      cursor: pointer;
    }
    .detail2-sidebar-item:first-child { padding-top: 0; }

    .detail2-sidebar-img-wrap {
      flex-shrink: 0;
      width: 58px;
      height: 44px;
      border-radius: 3px;
      overflow: hidden;
      background: #e0e0e0;
    }

    .detail2-sidebar-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s;
    }
    .detail2-sidebar-item:hover .detail2-sidebar-img { transform: scale(1.05); }

    .detail2-sidebar-content {
      flex: 1;
      min-width: 0;
    }

    .detail2-sidebar-headline {
      font-size: 12px;
      font-weight: 600;
      line-height: 1.4;
      color: #1a1a1a;
      margin-bottom: 3px;
    }
    .detail2-sidebar-item:hover .detail2-sidebar-headline { color: #444; }

    .detail2-sidebar-date {
      font-size: 11px;
      color: #999;
    }

    /* ══════════════════════════════════
       SIDEBAR — Stay Updated
    ══════════════════════════════════ */
    .detail2-stay-updated {
      border: 1px solid #e5e5e5;
      border-radius: 4px;
      padding: 30px 25px;
      margin-top: 35px;
    }

    .detail2-stay-title {
      font-size: 18px;
      font-weight: 900;
      color: #1a1a1a;
      margin-bottom: 10px;
         font-family: var(--font-nav);
    }

    .detail2-stay-desc {
      font-size: 14px;
      color: #6f6f6f;
      font-weight: 500;
      line-height: 1.4;
      margin-bottom: 20px;
       font-family: var(--font-nav);
    }

    .detail2-stay-input {
      width: 100%;
      border: 1px solid #d5d5d5;
      border-radius: 4px;
      padding: 7px 10px;
      font-size: 15px;
      font-family: inherit;
      color: #000000;
      outline: none;
      margin-bottom: 15px;
      transition: border-color 0.2s;
       font-family: var(--font-nav);
       font-weight: 500;
    }
    .detail2-stay-input::placeholder { color: #bbb; }
    .detail2-stay-input:focus { border-color: #888; }

    .detail2-stay-submit {
      width: 100%;
      background: #1a1a1a;
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 12px;
      font-size: 15px;
      font-weight: 800;
      font-family: inherit;
      cursor: pointer;
      transition: background 0.2s;
      font-family: var(--font-nav);
    }
    .detail2-stay-submit:hover { background: #333; }
    .meta-left {
  display: flex;
  
  gap: 12px;
}

.side-menu{
  display: none;
}
.menu-toggle{
  display: none;
}
.meta-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

