/* ══════════════════════════════════════════════════════════════════════════════
   SLAYY BY CHE — Blog & Single Post Stylesheet
   Designed to match the Slayy luxury aesthetic:
   Linen    (#F5F1EA) | Camel (#B2967D) | Espresso (#4A342A) | Cocoa (#7D5A44)
   Serif: Cormorant Garamond | Sans: Montserrat
   ══════════════════════════════════════════════════════════════════════════════ */

/* ── 1. SINGLE POST HERO ─────────────────────────────────────────────────────── */
.slayy-single-hero {
  position: relative;
  background: var(--espresso);
  color: var(--linen);
  overflow: hidden;
  padding-top: 160px;
  padding-bottom: 80px;
  min-height: 420px;
  display: flex;
  align-items: center;
}

/* ── 11. HOMEPAGE BLOG PREVIEW ─────────────────────────────────────────────── */
.home-blog {
  background: var(--linen);
  color: var(--espresso);
  padding: 100px 24px;
}

.home-blog__header {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.home-blog .section__label {
  color: var(--camel);
}

.home-blog .section__title {
  color: var(--espresso);
}

.home-blog .section__desc {
  color: var(--cocoa);
}

.home-blog__query {
  width: min(1200px, 100%);
  margin-inline: auto;
}

.home-blog__grid {
  gap: 28px;
  margin: 0;
  padding: 0;
}

.home-blog__grid > li {
  list-style: none;
}

.home-blog__card {
  height: 100%;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(178, 150, 125, 0.24);
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(74, 52, 42, 0.09);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-blog__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 22px 52px rgba(74, 52, 42, 0.14);
}

.home-blog__image {
  margin: 0;
  overflow: hidden;
}

.home-blog__image img {
  display: block;
  width: 100%;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-blog__card:hover .home-blog__image img {
  transform: scale(1.035);
}

.home-blog__body {
  padding: 26px 28px 30px;
}

.home-blog__meta {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.home-blog__meta a {
  color: var(--camel);
  text-decoration: none;
}

.home-blog__meta .wp-block-post-date {
  color: var(--cocoa);
}

.home-blog__title {
  margin: 0 0 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.65rem, 2.5vw, 2rem);
  line-height: 1.2;
}

.home-blog__title a {
  color: var(--espresso);
  text-decoration: none;
}

.home-blog__title a:hover {
  color: var(--camel);
}

.home-blog__excerpt {
  color: var(--cocoa);
  font-size: 0.95rem;
  line-height: 1.75;
}

.home-blog__excerpt .wp-block-post-excerpt__more-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--espresso);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-decoration: none;
  text-transform: uppercase;
}

.home-blog__excerpt .wp-block-post-excerpt__more-link:hover {
  color: var(--camel);
}

.home-blog__actions {
  margin-top: 44px;
}

.home-blog__actions .wp-block-button__link {
  background: var(--espresso);
  color: var(--linen);
}

.home-blog__actions .wp-block-button__link:hover {
  background: var(--camel);
  color: var(--espresso);
}

@media (max-width: 860px) {
  .home-blog {
    padding: 76px 20px;
  }

  .home-blog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .home-blog {
    padding: 64px 16px;
  }

  .home-blog__header {
    margin-bottom: 34px;
  }

  .home-blog__grid {
    grid-template-columns: 1fr;
  }

  .home-blog__body {
    padding: 22px 22px 26px;
  }
}

.slayy-single-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 25%;
  background-repeat: no-repeat;
  filter: blur(6px) brightness(0.45);
  transform: scale(1.08);
  transition: transform 1.2s ease-out;
}

.slayy-single-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 24, 16, 0.70) 0%,
    rgba(44, 24, 16, 0.88) 55%,
    rgba(44, 24, 16, 0.98) 100%
  );
  z-index: 1;
}

.slayy-single-hero__container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

/* Breadcrumbs */
.slayy-breadcrumbs {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  font-size: 0.8125rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.65);
}

.slayy-breadcrumbs__link {
  color: var(--camel);
  text-decoration: none;
  transition: color 0.2s ease;
}

.slayy-breadcrumbs__link:hover {
  color: var(--white);
}

.slayy-breadcrumbs__sep {
  opacity: 0.4;
  font-size: 0.75rem;
}

.slayy-breadcrumbs__current {
  color: rgba(245, 241, 234, 0.85);
  max-width: 280px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Badge */
.slayy-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.slayy-badge--camel {
  background: rgba(178, 150, 125, 0.22);
  color: var(--camel);
  border: 1px solid rgba(178, 150, 125, 0.45);
  backdrop-filter: blur(8px);
}

.slayy-badge--camel:hover {
  background: var(--camel);
  color: var(--espresso);
  border-color: var(--camel);
}

.slayy-single-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--linen);
  margin: 18px 0 20px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

.slayy-single-hero__divider {
  display: flex;
  justify-content: center;
  margin-bottom: 22px;
}

.slayy-single-hero__meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: rgba(245, 241, 234, 0.8);
}

.slayy-single-hero__author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 600;
}

.slayy-single-hero__author-avatar {
  color: var(--camel);
  font-size: 0.95rem;
}

.slayy-single-hero__date,
.slayy-single-hero__reading-time {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.slayy-single-hero__date svg,
.slayy-single-hero__reading-time svg {
  color: var(--camel);
  opacity: 0.9;
}

.slayy-single-hero__meta-sep {
  opacity: 0.4;
}


/* ── 2. FEATURED IMAGE FRAME ─────────────────────────────────────────────────── */
.slayy-featured-image-wrap {
  max-width: 920px;
  margin: -45px auto 48px;
  position: relative;
  z-index: 5;
  padding: 0 24px;
}

.slayy-featured-image-figure {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(44, 24, 16, 0.18);
  border: 1px solid rgba(178, 150, 125, 0.3);
  background: var(--white);
}

.slayy-featured-image {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

.slayy-featured-image__caption {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--cocoa);
  text-align: center;
  padding: 14px 20px;
  background: var(--white);
  border-top: 1px solid rgba(178, 150, 125, 0.15);
}


/* ── 3. SINGLE POST ARTICLE CONTENT ──────────────────────────────────────────── */
.single-post-article-wrap {
  position: relative;
  background: var(--linen);
  padding: 10px 0 60px;
}

.single-post-container {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 24px;
}

.single-post__content {
  color: var(--cocoa);
  font-family: 'Montserrat', sans-serif;
  font-size: 1.0625rem;
  line-height: 1.88;
}

/* First paragraph lead styling */
.single-post__content > p:first-of-type {
  font-size: 1.15rem;
  line-height: 1.9;
  color: var(--espresso);
  font-weight: 450;
  margin-bottom: 28px;
}

.single-post__content p {
  margin-bottom: 24px;
}

/* Headings */
.single-post__content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.45rem);
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.25;
  margin: 54px 0 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(178, 150, 125, 0.28);
  position: relative;
  letter-spacing: -0.01em;
}

.single-post__content h2::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 52px;
  height: 2px;
  background: var(--camel);
}

.single-post__content h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.32;
  margin: 40px 0 16px;
}

.single-post__content h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--espresso);
  margin: 28px 0 12px;
  letter-spacing: 0.5px;
}

/* Links */
.single-post__content a {
  color: var(--espresso);
  text-decoration: underline;
  text-decoration-color: var(--camel);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 4px;
  font-weight: 500;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.single-post__content a:hover {
  color: var(--camel);
  text-decoration-color: var(--espresso);
}

/* Lists */
.single-post__content ul,
.single-post__content ol {
  margin: 24px 0 32px;
  padding-left: 0;
}

.single-post__content ul li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cocoa);
}

.single-post__content ul li::before {
  content: '✦';
  position: absolute;
  left: 6px;
  top: 0;
  color: var(--camel);
  font-size: 0.85rem;
  line-height: 1.88;
}

.single-post__content ol {
  counter-reset: slayy-list-counter;
}

.single-post__content ol li {
  position: relative;
  padding-left: 36px;
  margin-bottom: 14px;
  counter-increment: slayy-list-counter;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--cocoa);
}

.single-post__content ol li::before {
  content: counter(slayy-list-counter);
  position: absolute;
  left: 0;
  top: 3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(178, 150, 125, 0.2);
  color: var(--espresso);
  font-size: 0.78rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Blockquote */
.single-post__content blockquote {
  border-left: 4px solid var(--camel);
  background: rgba(178, 150, 125, 0.08);
  border-radius: 0 16px 16px 0;
  padding: 28px 32px;
  margin: 38px 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-style: italic;
  color: var(--espresso);
  line-height: 1.6;
}

.single-post__content blockquote p {
  margin: 0;
}

/* Images in body */
.single-post__content img {
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(44, 24, 16, 0.1);
  margin: 40px auto;
  max-width: 100%;
  height: auto;
  display: block;
  border: 1px solid rgba(178, 150, 125, 0.2);
}

.single-post__content figure {
  margin: 40px auto;
  max-width: 100%;
}

.single-post__content figcaption {
  font-size: 0.85rem;
  font-style: italic;
  color: var(--cocoa);
  text-align: center;
  margin-top: 10px;
}


/* ── 4. SINGLE POST FOOTER ───────────────────────────────────────────────────── */
.slayy-single-footer {
  background: var(--linen);
  padding-bottom: 80px;
}

.slayy-single-footer__container {
  max-width: 840px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Tags */
.slayy-single-tags {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 24px;
  margin-bottom: 28px;
}

.slayy-single-tags__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--espresso);
}

.slayy-single-tags__list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.slayy-tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid rgba(178, 150, 125, 0.35);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--cocoa);
  text-decoration: none;
  transition: all 0.25s ease;
}

.slayy-tag-pill:hover {
  background: var(--camel);
  color: var(--white);
  border-color: var(--camel);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

/* Share toolbar */
.slayy-single-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid rgba(178, 150, 125, 0.25);
  border-bottom: 1px solid rgba(178, 150, 125, 0.25);
  margin-bottom: 48px;
}

.slayy-single-share__label {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--espresso);
}

.slayy-single-share__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.slayy-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 50px;
  background: var(--white);
  border: 1px solid rgba(178, 150, 125, 0.3);
  color: var(--espresso);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.slayy-share-btn:hover {
  background: var(--espresso);
  color: var(--white);
  border-color: var(--espresso);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.slayy-share-btn--copied {
  background: #2e7d32 !important;
  color: #ffffff !important;
  border-color: #2e7d32 !important;
}

/* Che' Author Box */
.slayy-author-box {
  background: var(--white);
  border: 1px solid rgba(178, 150, 125, 0.3);
  border-radius: 20px;
  padding: 36px 40px;
  margin: 48px 0;
  box-shadow: 0 10px 30px rgba(44, 24, 16, 0.06);
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 32px;
  align-items: center;
}

.slayy-author-box__avatar-wrap {
  position: relative;
  width: 100px;
  height: 100px;
}

.slayy-author-box__avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--camel);
  box-shadow: var(--shadow-sm);
  background: var(--linen);
}

.slayy-author-box__badge {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--camel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  border: 2px solid var(--white);
}

.slayy-author-box__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 6px;
}

.slayy-author-box__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 4px;
}

.slayy-author-box__title {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--cocoa);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}

.slayy-author-box__bio {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--cocoa);
  margin-bottom: 20px;
}

.slayy-author-box__action {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn--sm {
  padding: 10px 24px;
  font-size: 13px;
  letter-spacing: 0.05em;
}

.slayy-author-box__link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--espresso);
  text-decoration: none;
  transition: color 0.2s ease;
}

.slayy-author-box__link:hover {
  color: var(--camel);
}

/* Post Navigation (Prev / Next) */
.slayy-post-nav {
  margin: 48px 0;
}

.slayy-post-nav__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.slayy-post-nav__col--prev {
  text-align: left;
}

.slayy-post-nav__col--next {
  text-align: right;
}

.slayy-post-nav__card {
  display: block;
  background: var(--white);
  border: 1px solid rgba(178, 150, 125, 0.25);
  border-radius: 16px;
  padding: 22px 26px;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
}

.slayy-post-nav__card:hover {
  border-color: var(--camel);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.slayy-post-nav__direction {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 8px;
}

.slayy-post-nav__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--espresso);
  line-height: 1.35;
  margin: 0;
}

/* Related Posts */
.slayy-related-posts {
  margin: 64px 0 48px;
}

.slayy-section-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--camel);
  margin-bottom: 10px;
  text-align: center;
}

.slayy-related-posts__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 600;
  color: var(--espresso);
  text-align: center;
  margin-bottom: 36px;
}

/* Salon Booking CTA Banner */
.slayy-blog-cta {
  margin-top: 60px;
}

.slayy-blog-cta__inner {
  background: linear-gradient(135deg, var(--espresso) 0%, #2f1d15 100%);
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  color: var(--linen);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(178, 150, 125, 0.3);
}

.slayy-blog-cta__inner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 200%;
  background: radial-gradient(circle, rgba(178, 150, 125, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.slayy-blog-cta__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  margin: 0 auto;
}

.slayy-blog-cta__badge {
  display: inline-block;
  padding: 6px 18px;
  border-radius: 50px;
  background: rgba(178, 150, 125, 0.2);
  border: 1px solid rgba(178, 150, 125, 0.4);
  color: var(--camel);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.slayy-blog-cta__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--linen);
  line-height: 1.25;
  margin-bottom: 16px;
}

.slayy-blog-cta__desc {
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(245, 241, 234, 0.85);
  margin-bottom: 32px;
}

.slayy-blog-cta__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn--outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 50px;
  border: 1.5px solid rgba(245, 241, 234, 0.5);
  color: var(--linen);
  background: transparent;
  transition: all 0.35s var(--ease);
  text-decoration: none;
}

.btn--outline:hover {
  background: var(--linen);
  color: var(--espresso);
  border-color: var(--linen);
}


/* ── 5. BLOG LISTING HERO & FILTERS ─────────────────────────────────────────── */
.slayy-blog-hero {
  position: relative;
  min-height: 380px;
}

.slayy-blog-filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.slayy-filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: var(--linen);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.slayy-filter-pill:hover,
.slayy-filter-pill.is-active {
  background: var(--camel);
  color: var(--espresso);
  border-color: var(--camel);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}


/* ── 6. BLOG FEATURED POST HERO (PAGE 1) ─────────────────────────────────────── */
.slayy-featured-hero {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(178, 150, 125, 0.3);
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  margin-bottom: 64px;
  transition: all 0.4s var(--ease);
}

.slayy-featured-hero:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

.slayy-featured-hero__media-link {
  display: block;
  text-decoration: none;
  height: 100%;
}

.slayy-featured-hero__media {
  position: relative;
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  background: var(--espresso);
}

.slayy-featured-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.slayy-featured-hero:hover .slayy-featured-hero__img {
  transform: scale(1.05);
}

.slayy-featured-hero__ribbon {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--espresso);
  color: var(--camel);
  border: 1px solid rgba(178, 150, 125, 0.4);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.slayy-featured-hero__body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slayy-featured-hero__meta-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.slayy-featured-hero__dot {
  color: var(--camel);
}

.slayy-featured-hero__time {
  font-size: 0.8125rem;
  color: var(--cocoa);
  font-weight: 500;
}

.slayy-featured-hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--espresso);
  margin-bottom: 18px;
}

.slayy-featured-hero__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.slayy-featured-hero__title a:hover {
  color: var(--camel);
}

.slayy-featured-hero__excerpt {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--cocoa);
  margin-bottom: 28px;
}

.slayy-featured-hero__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 20px;
  border-top: 1px solid rgba(178, 150, 125, 0.2);
}

.slayy-featured-hero__byline {
  display: flex;
  align-items: center;
  gap: 10px;
}

.slayy-featured-hero__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--espresso);
  color: var(--camel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.slayy-featured-hero__byline-text strong {
  display: block;
  font-size: 0.875rem;
  color: var(--espresso);
}

.slayy-featured-hero__byline-text span {
  font-size: 0.75rem;
  color: var(--cocoa);
}


/* ── 7. BLOG POST CARDS GRID ─────────────────────────────────────────────────── */
.slayy-blog-grid-header {
  margin-bottom: 32px;
}

.slayy-blog-grid-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--espresso);
}

.slayy-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.slayy-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(178, 150, 125, 0.25);
  box-shadow: 0 4px 20px rgba(44, 24, 16, 0.05);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
  display: flex;
  flex-direction: column;
}

.slayy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(178, 150, 125, 0.5);
}

.slayy-card__media-link {
  display: block;
  text-decoration: none;
}

.slayy-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--espresso);
}

.slayy-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.slayy-card:hover .slayy-card__img {
  transform: scale(1.06);
}

.slayy-card__body {
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.slayy-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.slayy-card__category {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--camel);
  text-decoration: none;
  transition: color 0.2s ease;
}

.slayy-card__category:hover {
  color: var(--espresso);
}

.slayy-card__reading-time {
  font-size: 0.75rem;
  color: var(--cocoa);
  font-weight: 500;
}

.slayy-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--espresso);
  margin-bottom: 14px;
}

.slayy-card__title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.slayy-card__title a:hover {
  color: var(--camel);
}

.slayy-card__excerpt {
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--cocoa);
  margin-bottom: 24px;
  flex-grow: 1;
}

.slayy-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid rgba(178, 150, 125, 0.18);
}

.slayy-card__date {
  font-size: 0.8125rem;
  color: var(--cocoa);
}

.slayy-card__arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--espresso);
  text-decoration: none;
  transition: all 0.25s ease;
}

.slayy-card__arrow svg {
  transition: transform 0.25s ease;
}

.slayy-card__arrow:hover {
  color: var(--camel);
}

.slayy-card__arrow:hover svg {
  transform: translateX(4px);
}


/* ── 8. PAGINATION ───────────────────────────────────────────────────────────── */
.slayy-pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}

.slayy-pagination ul {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  padding: 0;
}

.slayy-pagination li a,
.slayy-pagination li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 50px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
}

.slayy-pagination li a {
  background: var(--white);
  border: 1px solid rgba(178, 150, 125, 0.35);
  color: var(--espresso);
}

.slayy-pagination li a:hover {
  background: var(--camel);
  color: var(--white);
  border-color: var(--camel);
}

.slayy-pagination li span.current {
  background: var(--espresso);
  color: var(--linen);
  border: 1px solid var(--espresso);
}

.slayy-pagination li span.dots {
  background: transparent;
  color: var(--cocoa);
}


/* ── 9. NO POSTS STATE ───────────────────────────────────────────────────────── */
.slayy-no-posts {
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(178, 150, 125, 0.25);
  border-radius: 20px;
  padding: 64px 32px;
  margin: 32px 0;
}

.slayy-no-posts__icon {
  font-size: 2rem;
  color: var(--camel);
  margin-bottom: 16px;
}

.slayy-no-posts__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: var(--espresso);
  margin-bottom: 12px;
}

.slayy-no-posts__desc {
  font-size: 1.05rem;
  color: var(--cocoa);
  max-width: 480px;
  margin: 0 auto 28px;
}


/* ── 10. RESPONSIVE BREAKPOINTS ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .slayy-blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .slayy-single-hero {
    padding-top: 130px;
    padding-bottom: 60px;
    min-height: 350px;
  }

  .slayy-single-hero__title {
    font-size: 2.2rem;
  }

  .slayy-featured-image-wrap {
    margin: -30px auto 36px;
  }

  .slayy-featured-hero {
    grid-template-columns: 1fr;
  }

  .slayy-featured-hero__media {
    min-height: 240px;
    aspect-ratio: 16 / 10;
  }

  .slayy-featured-hero__body {
    padding: 32px 24px;
  }

  .slayy-blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .slayy-author-box {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 32px 24px;
  }

  .slayy-author-box__avatar-wrap {
    margin: 0 auto;
  }

  .slayy-author-box__action {
    justify-content: center;
  }

  .slayy-post-nav__grid {
    grid-template-columns: 1fr;
  }

  .slayy-post-nav__col--next {
    text-align: left;
  }

  .slayy-single-share {
    flex-direction: column;
    align-items: flex-start;
  }

  .slayy-blog-cta__inner {
    padding: 40px 24px;
  }
}
