/* ===== The Prime Heritage - Blog Styles ===== */

:root {
  --primary: #f87171;
  --primary-dark: #f87171;
  --primary-light: #fef2f2;
  --white: #ffffff;
  --dark: #1a1a2e;
  --muted: #6b7280;
  --bg: #fffbfb;
  --border: #f1e7e7;
  --shadow-sm: 0 2px 10px rgba(250, 157, 157, 0.08);
  --shadow-md: 0 6px 24px rgba(250, 157, 157, 0.15);
  --shadow-lg: 0 12px 40px rgba(250, 157, 157, 0.22);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height: 1.7;
  margin: 0;
  animation: fadeInPage 0.6s ease;
}

@keyframes fadeInPage {
  from { opacity: 0; }
  to   { opacity: 1; }
}

h1, h2, h3, h4, h5, h6,
.heading-serif {
  font-family: 'Playfair Display', serif;
  color: var(--dark);
  font-weight: 700;
  letter-spacing: -0.01em;
}

a { text-decoration: none; transition: all 0.3s ease; }
img { max-width: 100%; display: block; }

.text-primary-rose { color: var(--primary) !important; }
.bg-primary-rose   { background: var(--primary) !important; color: #fff; }
.bg-primary-light  { background: var(--primary-light) !important; }

/* ===== HEADER ===== */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  border-bottom: 1px solid var(--border);
}

.brand-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.brand-logo .brand-prime { color: var(--primary); }
.brand-logo .brand-heritage { color: var(--dark); margin-left: 4px; }

.nav-link-custom {
  position: relative;
  color: var(--dark) !important;
  font-weight: 500;
  font-size: 0.95rem;
  margin: 0 14px;
  padding: 6px 0 !important;
}
.nav-link-custom::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.nav-link-custom:hover,
.nav-link-custom.active { color: var(--primary) !important; }
.nav-link-custom:hover::after,
.nav-link-custom.active::after { width: 100%; }

.icon-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 0.9rem;
}
.icon-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  transform: translateY(-2px);
}

.navbar-toggler {
  border: none;
  padding: 4px 8px;
}
.navbar-toggler:focus { box-shadow: none; }

/* ===== HERO SLIDER ===== */
.hero-slider-section { width: 100%; }
.hs-widget { width: 100%; }

.hs-slider {
    position: relative;
    width: 100%;
    height: clamp(460px, 82vh, 820px);
    background: #14101a;
    overflow: hidden;
}

.hs-viewport { overflow: hidden; height: 100%; }

.hs-track {
    display: flex;
    height: 100%;
    transition: transform .6s cubic-bezier(.45,0,.2,1);
}

.hs-slide {
    position: relative;
    min-width: 100%;
    height: 100%;
    overflow: hidden;
}

.hs-fg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    pointer-events: none;
    transform-origin: center;
}

  .category-badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: flex-start;
}

.hs-slide.active .hs-fg {
    animation: hsKenburns 9s ease-out forwards;
}

@keyframes hsKenburns {
    from { transform: scale(1); }
    to   { transform: scale(1.12); }
}

.hs-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
        rgba(18,10,12,.9) 0%,
        rgba(18,10,12,.78) 32%,
        rgba(18,10,12,.35) 56%,
        rgba(18,10,12,0) 78%);
}

.hs-content {
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: min(54%, 500px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    padding: 44px clamp(32px, 7vw, 110px);
    z-index: 3;
}

.hs-tag {
    align-self: flex-start;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: #fff;
    background: var(--primary);
    padding: 6px 14px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 6px 16px -4px rgba(248,113,113,.8);
}

.hs-title {
    color: #fff;
    font-size: clamp(1.5rem, 3.4vw, 2.35rem);
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0;
}

.hs-excerpt {
    color: rgba(255,255,255,.82);
    font-size: clamp(.9rem, 1.5vw, 1.02rem);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

.hs-readmore {
    align-self: flex-start;
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    background: var(--primary);
    color: #fff;
    font-weight: 600;
    font-size: .95rem;
    padding: 13px 24px;
    border-radius: 12px;
    transition: background .2s ease, transform .2s ease;
    box-shadow: 0 12px 26px -10px rgba(248,113,113,.9);
}

.hs-readmore svg {
    width: 16px; height: 16px;
    stroke: currentColor; stroke-width: 2.4;
    fill: none; stroke-linecap: round; stroke-linejoin: round;
    transition: transform .2s;
}

.hs-readmore:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    color: #fff;
}

.hs-readmore:hover svg { transform: translateX(3px); }

.hs-slide .hs-content > * { opacity: 0; transform: translateY(16px); }
.hs-slide.active .hs-content > * { animation: hsRise .6s ease forwards; }
.hs-slide.active .hs-content > *:nth-child(1) { animation-delay: .15s; }
.hs-slide.active .hs-content > *:nth-child(2) { animation-delay: .28s; }
.hs-slide.active .hs-content > *:nth-child(3) { animation-delay: .40s; }
.hs-slide.active .hs-content > *:nth-child(4) { animation-delay: .52s; }
@keyframes hsRise { to { opacity: 1; transform: none; } }

.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.25);
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(6px);
    color: #fff;
    cursor: pointer;
    display: grid;
    place-items: center;
    z-index: 10;
    transition: all .2s ease;
}

.hs-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-50%) scale(1.08);
}

.hs-arrow svg {
    width: 20px; height: 20px;
    stroke: currentColor; stroke-width: 2.2;
    fill: none; stroke-linecap: round; stroke-linejoin: round;
}

.hs-prev { left: 20px; }
.hs-next { right: 20px; }

.hs-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.hs-dot {
    width: 9px; height: 9px;
    border-radius: 50%;
    border: none;
    padding: 0;
    cursor: pointer;
    background: rgba(255,255,255,.45);
    transition: all .3s ease;
}

.hs-dot.active {
    background: #fff;
    width: 28px;
    border-radius: 5px;
}

.hs-progress {
    position: absolute;
    top: 0; left: 0;
    height: 4px;
    width: 0%;
    background: var(--primary);
    z-index: 6;
    box-shadow: 0 0 12px var(--primary);
}

@media (max-width: 640px) {
    .hs-slider { height: clamp(340px, 56vh, 460px); }
    .hs-content { width: 84%; padding: 22px 20px; gap: 11px; }
    .hs-title { font-size: clamp(1.25rem, 6vw, 1.7rem); }
    .hs-excerpt { font-size: .88rem; }
    .hs-readmore { padding: 11px 20px; font-size: .9rem; }
    .hs-tag { font-size: .66rem; padding: 5px 12px; }
    .hs-prev { left: 10px; }
    .hs-next { right: 10px; }
}

@media (max-width: 380px) {
    .hs-slider { height: clamp(300px, 52vh, 380px); }
}

/* ===== SECTION HEADINGS ===== */
.section-heading {
  font-size: 1.8rem;
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  padding-bottom: 12px;
}
.section-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 3px;
}

/* ===== HORIZONTAL POST CARD ===== */
.post-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
  margin-bottom: 22px;
  display: flex;
  gap: 18px;
  transition: all 0.3s ease;
}
.post-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.post-card-img {
  flex: 0 0 260px;
  width: 260px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
}
.post-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.post-card:hover .post-card-img img { transform: scale(1.05); }

.post-card-body { flex: 1; display: flex; flex-direction: column; }
.post-card-body h3 {
  font-size: 1.35rem;
  margin: 12px 0 8px;
  line-height: 1.3;
}
.post-card-body h3 a { color: var(--dark); }
.post-card-body h3 a:hover { color: var(--primary); }
.post-card-body .excerpt {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.post-meta {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 12px;
}
.post-meta span { margin-right: 14px; }
.post-meta i { color: var(--primary); margin-right: 5px; }

.read-more {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: auto;
  align-self: flex-start;
}
.read-more:hover { color: var(--primary-dark); letter-spacing: 0.3px; }

/* ===== PAGINATION ===== */
.custom-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 30px;
}
.custom-pagination a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  color: var(--dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
}
.custom-pagination a:hover,
.custom-pagination a.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===== SIDEBAR WIDGETS ===== */
.widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.widget-title {
  font-size: 1.2rem;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
  position: relative;
}
.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}

.sidebar-post {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.sidebar-post:last-child { border-bottom: none; }
.sidebar-post-img {
  flex: 0 0 70px;
  width: 70px;
  height: 70px;
  border-radius: 10px;
  overflow: hidden;
}
.sidebar-post-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.sidebar-post:hover .sidebar-post-img img { transform: scale(1.08); }
.sidebar-post-body h6 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 0 6px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.sidebar-post-body h6 a { color: var(--dark); }
.sidebar-post-body h6 a:hover { color: var(--primary); }
.sidebar-post-body small { color: var(--muted); font-size: 0.78rem; }
.sidebar-post-body small i { color: var(--primary); margin-right: 4px; }

.about-widget { text-align: center; }
.about-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  border: 4px solid var(--primary-light);
}
.about-widget h4 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.about-widget p {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 16px;
}
.about-social { display: flex; justify-content: center; gap: 10px; }
.about-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about-social a:hover { background: var(--primary); color: #fff; transform: translateY(-3px); }

.category-list { list-style: none; padding: 0; margin: 0; }
.category-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.category-list li:last-child { border-bottom: none; }
.category-list li a {
  color: var(--dark);
  font-weight: 500;
  font-size: 0.95rem;
  flex: 1;
}
.category-list li a:hover { color: var(--primary); padding-left: 5px; }
.category-count {
  background: var(--primary-light);
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

/* ===== YOU MAY HAVE MISSED ===== */
.missed-section {
  background: var(--primary-light);
  padding: 70px 0;
  margin-top: 60px;
}
.missed-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid var(--border);
}
.missed-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.missed-card-img {
  height: 180px;
  overflow: hidden;
}
.missed-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.missed-card:hover .missed-card-img img { transform: scale(1.08); }
.missed-card-body { padding: 18px; }
.missed-card-body h5 {
  font-size: 1.05rem;
  margin: 12px 0 10px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.missed-card-body h5 a { color: var(--dark); }
.missed-card-body h5 a:hover { color: var(--primary); }
.missed-card-body small { color: var(--muted); font-size: 0.82rem; }
.missed-card-body small i { color: var(--primary); margin-right: 4px; }

/* ===== SEARCH MODAL ===== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(20, 20, 30, 0.85);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 80px;
}
.search-overlay.active { display: flex; }
.search-box {
  background: #fff;
  width: 90%;
  max-width: 700px;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  animation: slideDown 0.4s ease;
  max-height: 80vh;
  overflow-y: auto;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.search-close {
  position: absolute;
  top: 16px;
  right: 18px;
  background: var(--primary-light);
  color: var(--primary-dark);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.search-close:hover { background: var(--primary); color: #fff; transform: rotate(90deg); }
.search-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--primary-light);
  font-size: 1.4rem;
  padding: 14px 0;
  outline: none;
  font-family: 'Playfair Display', serif;
  margin-top: 8px;
  color: var(--dark);
}
.search-input:focus { border-color: var(--primary); }
.search-input::placeholder { color: #c9b6b6; }
.search-suggestions { margin-top: 24px; }
.search-suggestion {
  display: flex;
  gap: 14px;
  padding: 12px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  align-items: center;
}
.search-suggestion:hover { background: var(--primary-light); }
.search-suggestion img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}
.search-suggestion h6 { margin: 0 0 4px; font-size: 0.95rem; font-family: 'Inter', sans-serif; font-weight: 600; }
.search-suggestion p { margin: 0; font-size: 0.82rem; color: var(--muted); display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.search-empty { text-align: center; color: var(--muted); padding: 30px 0; }

/* ===== SINGLE BLOG POST ===== */
.single-header {
  text-align: center;
  padding: 50px 0 30px;
}
.single-header .category-badge { margin-bottom: 18px; }
.single-header h1 {
  font-size: 2.6rem;
  margin: 0 auto 18px;
  line-height: 1.2;
  max-width: 850px;
}
.single-header .post-meta { justify-content: center; display: flex; gap: 18px; }

.single-hero {
  width: 100%;
  max-height: 450px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 40px;
}

/* Sticky Sidebar */
.sticky-sidebar {
    position: sticky;
    top: 90px;
}

/* About Widget */
.about-widget {
    padding: 28px 24px;
}

.about-logo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-light);
    padding: 4px;
    background: #fff;
}

.about-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.about-text {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.about-social {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.about-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-light);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.about-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

/* Category List */
.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px dashed var(--border);
}

.category-list li:last-child { border-bottom: none; }

.category-list a {
    color: var(--dark);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.single-content {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333;
}
.single-content p { margin-bottom: 8px; }
.single-content h2, .single-content h3 {
  margin: 32px 0 16px;
}
.single-content h2 { font-size: 1.7rem; }
.single-content h3 { font-size: 1.35rem; }
.single-content blockquote {
  border-left: 4px solid var(--primary);
  background: var(--primary-light);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
  font-style: italic;
  color: var(--dark);
}
.single-content img { border-radius: 12px; margin: 24px 0; }

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.tag-list span.tag-label { font-weight: 600; margin-right: 6px; align-self: center; }
.tag-list a {
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 500;
}
.tag-list a:hover { background: var(--primary); color: #fff; }

/* Star rating */
.rating-widget {
  background: var(--primary-light);
  border-radius: 12px;
  padding: 28px;
  text-align: center;
  margin: 30px 0;
}
.rating-widget h4 { margin-bottom: 14px; font-size: 1.3rem; }
.stars { display: inline-flex; gap: 6px; margin-bottom: 14px; }
.star {
  font-size: 2rem;
  color: #e3c8c8;
  cursor: pointer;
  transition: all 0.25s ease;
}
.star:hover, .star.active {
  color: var(--primary);
  transform: scale(1.15);
  text-shadow: 0 0 12px rgba(250, 157, 157, 0.6);
}
.rating-info { color: var(--muted); font-size: 0.9rem; margin-bottom: 14px; }
.rating-info strong { color: var(--dark); }

/* Related posts */
.related-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: all 0.3s ease;
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.related-card-img { height: 160px; overflow: hidden; }
.related-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.related-card:hover .related-card-img img { transform: scale(1.08); }
.related-card-body { padding: 16px; }
.related-card-body h5 {
  font-size: 1rem;
  margin: 10px 0 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.related-card-body h5 a { color: var(--dark); }
.related-card-body h5 a:hover { color: var(--primary); }
.related-card-body small { color: var(--muted); font-size: 0.8rem; }

/* ===== CATEGORY BANNER ===== */
.category-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 70px 0 60px;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  overflow: hidden;
}
.category-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}
.category-banner h1 {
  color: #fff;
  font-size: 3rem;
  margin-bottom: 14px;
  position: relative;
}
.category-banner .breadcrumb-custom {
  position: relative;
  font-size: 0.95rem;
  opacity: 0.95;
}
.category-banner .breadcrumb-custom a { color: #fff; opacity: 0.9; }
.category-banner .breadcrumb-custom a:hover { opacity: 1; text-decoration: underline; }
.category-banner .breadcrumb-custom .sep { margin: 0 10px; opacity: 0.7; }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--dark);
  color: #c5c5d2;
  padding: 60px 0 0;
  margin-top: 60px;
}
.site-footer .brand-logo .brand-heritage { color: #fff; }
.footer-tagline { color: #9ea0b3; font-size: 0.92rem; margin: 14px 0 18px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-social a:hover { background: var(--primary); transform: translateY(-3px); }

.footer-title {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #9ea0b3; font-size: 0.92rem; }
.footer-links a:hover { color: var(--primary); padding-left: 5px; }

.footer-post { display: flex; gap: 12px; margin-bottom: 14px; }
.footer-post-body h6 {
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0 0 4px;
  line-height: 1.35;
}
.footer-post-body h6 a { color: #e5e7ed; }
.footer-post-body h6 a:hover { color: var(--primary); }
.footer-post-body small { color: #7d8095; font-size: 0.78rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
  margin-top: 40px;
  font-size: 0.88rem;
  color: #9ea0b3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .nav-link-custom { margin: 6px 0; }
  .hero-content { padding: 32px 26px; }
  .hero-content h2 { font-size: 1.7rem; }
  .hero-slide .hero-img-wrap, .hero-slide .hero-img-wrap img { min-height: 260px; height: 260px; }
  .single-header h1 { font-size: 2rem; }
  .category-banner h1 { font-size: 2.2rem; }
  .hero-carousel .carousel-control-prev { left: 6px; }
  .hero-carousel .carousel-control-next { right: 6px; }
}
@media (max-width: 767px) {
  .post-card { flex-direction: column; }
  .post-card-img { width: 100%; flex: 0 0 auto; height: 200px; }
  .section-heading { font-size: 1.5rem; }
  .single-header h1 { font-size: 1.6rem; }
  .icon-btn { width: 36px; height: 36px; margin-left: 4px; }
  .hero-content h2 { font-size: 1.4rem; }
}

