
    body {
      font-family: 'Source Serif 4', Georgia, serif;
      background: #f9f7f4;
      color: #1a1a1a;
    }

    /* ── NAVBAR ── */
    .navbar-custom {
      background: #fff;
      border-bottom: 1px solid #e8e3dc;
    }
    .navbar-brand {
      font-family: 'Roboto Slab', serif;
      font-size: 22px;
      color: #1a1a1a !important;
      font-weight: 700;
    }
    .navbar-nav .nav-link {
      font-size: 14px;
      color: #555 !important;
      letter-spacing: .3px;
    }
    .navbar-nav .nav-link:hover { color: #0073aa !important; }

    /* ── BREADCRUMB ── */
    .breadcrumb-wrap {
      background: #fff;
      border-bottom: 1px solid #e8e3dc;
      padding: 10px 0;
    }
    .breadcrumb-item, .breadcrumb-item a {
      font-size: 13px;
      color: #888;
      text-decoration: none;
    }
    .breadcrumb-item.active { color: #333; }
    .breadcrumb-item + .breadcrumb-item::before { color: #bbb; }

    /* ── LAYOUT ── */
    .main-wrap { padding: 40px 0 60px; }
    .post-col { background: #fff; border-radius: 4px; padding: 40px 44px 48px; border: 1px solid #e8e3dc; margin-bottom: 40px; }

    /* ── META ── */
    .post-category {
      display: inline-block;
      background: #0073aa;
      color: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 2px;
      text-decoration: none;
      margin-bottom: 14px;
    }
    .post-title {
      font-family: 'Roboto Slab', serif;
      font-size: 34px;
      font-weight: 700;
      line-height: 1.28;
      color: #1a1a1a;
      margin-bottom: 16px;
    }
    .post-meta {
      font-size: 13px;
      color: #888;
      display: flex;
      flex-wrap: wrap;
      gap: 6px 16px;
      align-items: center;
      margin-bottom: 24px;
      padding-bottom: 20px;
      border-bottom: 1px solid #e8e3dc;
    }
    .post-meta strong { color: #444; }
    .post-meta .dot { color: #ccc; }

    /* ── FEATURED IMAGE ── */
    .featured-img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      border-radius: 4px;
      margin-bottom: 32px;
    }

    /* ── CONTENT ── */

    .content-section {
      margin-bottom: 2.5rem;
    }

    .post-content p {
      font-size: 17px;
      line-height: 1.9;
      color: #2c2c2c;
      margin-bottom: 1.4rem;
    }
    .post-content h3 {
      font-family: 'Roboto Slab', serif;
      font-size: 24px;
      font-weight: 700;
      color: #1a1a1a;
      margin: 2.2rem 0 1rem;
    }
    .post-blockquote {
      border-left: 4px solid #0073aa;
      padding: 14px 24px;
      margin: 2rem 0;
      background: #f0f7fc;
      border-radius: 0 4px 4px 0;
    }
    .post-blockquote p {
      font-size: 18px !important;
      font-style: italic;
      color: #444 !important;
      margin: 0 !important;
    }

    /* ── SLIDER ── */
    .gallery-slider {
      position: relative;
      margin: 2.5rem 0;
      border-radius: 4px;
      overflow: hidden;
      background: #000;
    }
    .slider-track {
      display: flex;
      transition: transform .45s cubic-bezier(.4,0,.2,1);
      will-change: transform;
    }
    .slide {
      min-width: 100%;
      flex: 0 0 100%;
    }
    .slide img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      display: block;
    }
    .slide-caption {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,.65));
      color: #fff;
      font-size: 13px;
      padding: 28px 18px 12px;
    }
    .slider-btn {
      position: absolute;
      top: 50%; transform: translateY(-50%);
      background: rgba(255,255,255,.9);
      border: none;
      width: 42px; height: 42px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      font-size: 20px;
      color: #222;
      z-index: 10;
      transition: background .2s;
    }
    .slider-btn:hover { background: #fff; }
    .slider-btn.prev { left: 14px; }
    .slider-btn.next { right: 14px; }
    .slider-counter {
      position: absolute;
      top: 12px; right: 14px;
      background: rgba(0,0,0,.45);
      color: #fff;
      font-size: 12px;
      padding: 3px 10px;
      border-radius: 20px;
    }
    .slider-dots {
      position: absolute;
      bottom: 42px; left: 50%;
      transform: translateX(-50%);
      display: flex; gap: 6px;
    }
    .dot {
      width: 8px; height: 8px;
      border-radius: 50%;
      background: rgba(255,255,255,.45);
      cursor: pointer;
      transition: background .2s, transform .2s;
      border: none;
      padding: 0;
    }
    .dot.active {
      background: #fff;
      transform: scale(1.2);
    }

    /* ── TAGS ── */
    .post-tags {
      margin: 2.5rem 0 1.5rem;
      display: flex; flex-wrap: wrap; gap: 8px; align-items: center;
    }
    .post-tags .label { font-size: 13px; color: #888; }
    .tag {
      font-size: 12px;
      border: 1px solid #d0cbc4;
      border-radius: 2px;
      padding: 4px 12px;
      color: #555;
      text-decoration: none;
      transition: background .2s;
    }
    .tag:hover { background: #f0f0ee; color: #333; }

    /* ── SHARE ── */
    .post-share {
      display: flex; gap: 8px; align-items: center; flex-wrap: wrap;
      padding: 18px 0;
      border-top: 1px solid #e8e3dc;
      border-bottom: 1px solid #e8e3dc;
      margin-bottom: 2rem;
    }
    .post-share .label { font-size: 13px; color: #888; }
    .share-btn {
      font-size: 12px;
      padding: 6px 16px;
      border-radius: 2px;
      border: none;
      cursor: pointer;
      font-weight: 600;
      color: #fff;
    }
    .share-fb   { background: #1877f2; }
    .share-tw   { background: #1da1f2; }
    .share-wa   { background: #25d366; }
    .share-link { background: #555; }

    /* ── AUTHOR BOX ── */
    .author-box {
      display: flex; gap: 18px;
      padding: 24px;
      border: 1px solid #e8e3dc;
      border-radius: 4px;
      background: #faf8f5;
      margin-bottom: 2.5rem;
    }
    .author-avatar {
      width: 70px; height: 70px;
      border-radius: 50%;
      object-fit: cover;
      flex-shrink: 0;
    }
    .author-name {
      font-family: 'Roboto Slab', serif;
      font-size: 17px;
      font-weight: 700;
      margin-bottom: 4px;
      color: #1a1a1a;
    }
    .author-bio { font-size: 14px; color: #666; line-height: 1.65; }

    /* ── RELATED POSTS ── */
    .related-title {
      font-family: 'Roboto Slab', serif;
      font-size: 22px;
      font-weight: 700;
      margin-bottom: 1.2rem;
      padding-bottom: 10px;
      border-bottom: 2px solid #0073aa;
    }
    .related-card { border: 1px solid #e8e3dc; border-radius: 4px; overflow: hidden; background: #fff; }
    .related-card img { width: 100%; height: 160px; object-fit: cover; }
    .related-card-body { padding: 14px 16px; }
    .related-cat { font-size: 11px; color: #0073aa; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; }
    .related-card-title {
      font-family: 'Roboto Slab', serif;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.4;
      color: #1a1a1a;
      margin: 4px 0 8px;
    }
    .related-date { font-size: 12px; color: #999; }

    /* ── COMMENTS ── */
    .comments-section { margin-top: 2.5rem; }
    .comments-title {
      font-family: 'Roboto Slab', serif;
      font-size: 22px; font-weight: 700;
      margin-bottom: 1.5rem;
      padding-bottom: 10px;
      border-bottom: 1px solid #e8e3dc;
    }
    .comment-item { display: flex; gap: 14px; margin-bottom: 24px; }
    .c-avatar {
      width: 46px; height: 46px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 16px; font-weight: 700; color: #fff;
    }
    .c-bubble { flex: 1; }
    .c-header { display: flex; gap: 10px; align-items: baseline; flex-wrap: wrap; margin-bottom: 6px; }
    .c-name { font-size: 14px; font-weight: 700; color: #1a1a1a; }
    .c-date { font-size: 12px; color: #999; }
    .c-text { font-size: 14px; color: #444; line-height: 1.7; }

    /* ── COMMENT FORM ── */
    .comment-form-wrap {
      margin-top: 2rem;
      padding: 24px;
      border: 1px solid #e8e3dc;
      border-radius: 4px;
      background: #faf8f5;
    }
    .comment-form-wrap h4 {
      font-family: 'Roboto Slab', serif;
      font-size: 18px; font-weight: 700;
      margin-bottom: 16px;
    }
    .comment-form-wrap .form-control {
      font-size: 14px;
      border-color: #d0cbc4;
      border-radius: 2px;
    }
    .btn-submit {
      background: #0073aa;
      color: #fff;
      border: none;
      padding: 10px 28px;
      font-size: 14px;
      font-weight: 700;
      border-radius: 2px;
      cursor: pointer;
      transition: background .2s;
    }
    .btn-submit:hover { background: #005a87; }

    /* ── SIDEBAR ── */
    .sidebar-widget {
      background: #fff;
      border: 1px solid #e8e3dc;
      border-radius: 4px;
      padding: 22px 22px 24px;
      margin-bottom: 24px;
    }
    .widget-title {
      font-family: 'Roboto Slab ', serif;
      font-size: 17px; font-weight: 700;
      margin-bottom: 14px;
      padding-bottom: 10px;
      border-bottom: 2px solid #0073aa;
      color: #1a1a1a;
    }
    .recent-item { display: flex; gap: 10px; margin-bottom: 14px; align-items: flex-start; }
    .recent-item img { width: 64px; height: 52px; object-fit: cover; border-radius: 2px; flex-shrink: 0; }
    .recent-item-title { font-size: 13px; font-weight: 600; color: #222; line-height: 1.4; margin-bottom: 3px; }
    .recent-item-date { font-size: 11px; color: #999; }
    .tag-cloud { display: flex; flex-wrap: wrap; gap: 6px; }
    .tag-cloud a {
      font-size: 12px;
      border: 1px solid #d0cbc4;
      border-radius: 2px;
      padding: 3px 10px;
      color: #555;
      text-decoration: none;
    }
    .tag-cloud a:hover { background: #f0f0ee; }
    .cat-item { display: flex; justify-content: space-between; font-size: 14px; padding: 7px 0; border-bottom: 1px solid #f0ece6; color: #444; }
    .cat-count { background: #f0f0ee; border-radius: 10px; padding: 1px 8px; font-size: 12px; color: #888; }
  
     :root {
        --color-navy: #3b4a7a;
        --color-pink: #e91e63;
    }

    /* Header Dropdown Fix */
    #header {
        overflow: visible !important;
    }

    #header .navbar-collapse {
        overflow: visible !important;
    }

    #header .dropdown-menu {
        z-index: 10000 !important;
    }

    .about-hero {
        background-color: var(--color-navy);
        color: white;
        padding: 60px 0;
        margin-top: -20px;
        margin-bottom: 40px;
    }

    .about-hero h1 {
        font-family: 'Roboto Slab', sans-serif;
        font-size: 4rem;
        color: white;
        font-weight: 700;
        line-height: 1.2;
        margin-bottom: 15px;
    }

    .about-hero p {
        font-family: 'DM Sans', sans-serif;
        font-size: 2rem;
        opacity: 0.85;
    }
