/* ═══════════════════════════════════════════════════
   BLOG.CSS — The Feminine Business Alchemy
   Full blog page styles
═══════════════════════════════════════════════════ */

/* ───────────────────────────────
   BLOG HERO
─────────────────────────────── */
.blog-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--grad-hero);
  text-align: center;
  padding: 8rem 1.5rem 5rem;
  overflow: hidden;
}

.blog-hero-inner {
  position: relative;
  z-index: 2;
}

.blog-hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.2;
  margin: 1rem 0;
}

.blog-hero-subtitle {
  font-family: "Raleway", sans-serif;
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  font-weight: 300;
  color: rgba(248, 244, 239, 0.7);
  line-height: 1.8;
  max-width: 580px;
  margin: 0 auto;
}

.blog-hero-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(201, 149, 108, 0.6), transparent);
  margin: 0 auto;
}

/* ───────────────────────────────
   FEATURED ARTICLE
─────────────────────────────── */
.blog-featured {
  padding: 5rem 0;
  background: var(--deep-charcoal);
}

.featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 149, 108, 0.15);
  border-radius: 2px;
  overflow: hidden;
  transition: border-color 0.4s ease;
}

.featured-card:hover {
  border-color: rgba(201, 149, 108, 0.35);
}

.featured-card-image {
  position: relative;
  min-height: 420px;
}

.featured-image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background: linear-gradient(135deg, #16213e 0%, #1f1535 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.featured-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 149, 108, 0.08) 0%,
    rgba(212, 175, 55, 0.05) 100%
  );
}

.featured-emoji {
  font-size: 6rem;
  position: relative;
  z-index: 1;
  opacity: 0.6;
}

.featured-category-tag {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  font-family: "Raleway", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep-charcoal);
  background: var(--grad-gold);
  padding: 0.4rem 1rem;
  border-radius: 2px;
}

.featured-card-content {
  padding: 3rem 3rem 3rem 0;
}

.featured-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.article-category {
  font-family: "Raleway", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
}

.article-category.mind {
  color: #7eb8f7;
  background: rgba(126, 184, 247, 0.1);
  border: 1px solid rgba(126, 184, 247, 0.2);
}

.article-category.soul {
  color: var(--rose-gold);
  background: rgba(201, 149, 108, 0.1);
  border: 1px solid rgba(201, 149, 108, 0.2);
}

.article-category.business {
  color: var(--emerald);
  background: rgba(0, 200, 150, 0.08);
  border: 1px solid rgba(0, 200, 150, 0.2);
}

.article-category.stella {
  color: var(--pure-gold);
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.2);
}

.article-date,
.article-read-time {
  font-family: "Raleway", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  color: rgba(248, 244, 239, 0.4);
  letter-spacing: 0.05em;
}

.featured-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 2.5vw, 2.6rem);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.25;
  margin-bottom: 1.5rem;
}

.featured-excerpt {
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(248, 244, 239, 0.65);
  line-height: 1.85;
  margin-bottom: 2rem;
}

.featured-footer {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.author-name {
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  color: rgba(248, 244, 239, 0.4);
  font-style: italic;
}

/* ───────────────────────────────
   FILTER BAR
─────────────────────────────── */
.blog-filters {
  padding: 2.5rem 0;
  background: rgba(9, 19, 46, 0.8);
  border-top: 1px solid rgba(201, 149, 108, 0.1);
  border-bottom: 1px solid rgba(201, 149, 108, 0.1);
  position: sticky;
  top: 70px;
  z-index: 50;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.filters-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  font-family: "Raleway", sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(248, 244, 239, 0.55);
  background: transparent;
  border: 1px solid rgba(201, 149, 108, 0.15);
  border-radius: 2px;
  padding: 0.55rem 1.2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.filter-btn:hover {
  color: var(--warm-white);
  border-color: rgba(201, 149, 108, 0.4);
  background: rgba(201, 149, 108, 0.06);
}

.filter-btn.active {
  color: var(--deep-charcoal);
  background: var(--grad-gold);
  border-color: transparent;
  font-weight: 600;
}

/* ───────────────────────────────
   BLOG GRID
─────────────────────────────── */
.blog-grid-section {
  padding: 5rem 0;
  background: var(--deep-charcoal);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

/* ───────────────────────────────
   BLOG CARD
─────────────────────────────── */
.blog-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 149, 108, 0.12);
  border-radius: 2px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: rgba(201, 149, 108, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.blog-card-image {
  position: relative;
  height: 180px;
  background: linear-gradient(135deg, #16213e 0%, #1f1535 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-card-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(201, 149, 108, 0.06) 0%,
    rgba(212, 175, 55, 0.04) 100%
  );
}

.blog-card-emoji {
  font-size: 3.5rem;
  position: relative;
  z-index: 1;
  opacity: 0.55;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.blog-card:hover .blog-card-emoji {
  opacity: 0.8;
  transform: scale(1.1);
}

.blog-card-category {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
  z-index: 2;
}

.blog-card-category.mind {
  color: #7eb8f7;
  background: rgba(126, 184, 247, 0.12);
  border: 1px solid rgba(126, 184, 247, 0.25);
}

.blog-card-category.soul {
  color: var(--rose-gold);
  background: rgba(201, 149, 108, 0.12);
  border: 1px solid rgba(201, 149, 108, 0.25);
}

.blog-card-category.business {
  color: var(--emerald);
  background: rgba(0, 200, 150, 0.1);
  border: 1px solid rgba(0, 200, 150, 0.25);
}

.blog-card-category.stella {
  color: var(--pure-gold);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.25);
}

.blog-card-content {
  padding: 1.8rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.1rem, 1.5vw, 1.35rem);
  font-weight: 400;
  color: var(--warm-white);
  line-height: 1.35;
  margin-bottom: 1rem;
  flex: 1;
  transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
  color: var(--rose-gold);
}

.blog-card-excerpt {
  font-family: "Raleway", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(248, 244, 239, 0.55);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.blog-card-link {
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--rose-gold);
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}

.blog-card-link:hover {
  color: var(--pure-gold);
  gap: 0.7rem;
}

/* ───────────────────────────────
   HIDDEN / FILTERED CARDS
─────────────────────────────── */
.blog-card.hidden {
  display: none;
}

/* ───────────────────────────────
   NO RESULTS
─────────────────────────────── */
.blog-no-results {
  display: none;
  text-align: center;
  padding: 4rem 0;
}

.blog-no-results.visible {
  display: block;
}

.blog-no-results p {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-style: italic;
  color: rgba(248, 244, 239, 0.4);
  line-height: 1.8;
}

/* ───────────────────────────────
   LOAD MORE
─────────────────────────────── */
.blog-load-more {
  text-align: center;
  padding-top: 1rem;
}

.load-more-note {
  font-family: "Raleway", sans-serif;
  font-size: 0.78rem;
  color: rgba(248, 244, 239, 0.35);
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

/* ───────────────────────────────
   NEWSLETTER BAND
─────────────────────────────── */
.blog-newsletter {
  padding: 6rem 0;
  background: linear-gradient(135deg, #16213e 0%, #1f1535 100%);
  border-top: 1px solid rgba(201, 149, 108, 0.15);
  border-bottom: 1px solid rgba(201, 149, 108, 0.15);
}

.blog-newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.newsletter-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.25;
  margin: 1rem 0 1.5rem;
}

.newsletter-desc {
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(248, 244, 239, 0.65);
  line-height: 1.85;
  margin-bottom: 1.5rem;
}

.newsletter-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.newsletter-perks li {
  font-family: "Raleway", sans-serif;
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(248, 244, 239, 0.6);
  line-height: 1.6;
}

.newsletter-form-wrap {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(201, 149, 108, 0.15);
  border-radius: 2px;
  padding: 2.5rem;
}

.newsletter-form .form-group {
  margin-bottom: 1rem;
}

.newsletter-form .form-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 149, 108, 0.2);
  border-radius: 2px;
  padding: 0.9rem 1.2rem;
  font-family: "Raleway", sans-serif;
  font-size: 0.9rem;
  color: var(--warm-white);
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
}

.newsletter-form .form-input::placeholder {
  color: rgba(248, 244, 239, 0.3);
}

.newsletter-form .form-input:focus {
  border-color: rgba(201, 149, 108, 0.5);
}

.newsletter-btn {
  width: 100%;
  margin-top: 0.5rem;
  justify-content: center;
}

.newsletter-note {
  font-family: "Raleway", sans-serif;
  font-size: 0.75rem;
  color: rgba(248, 244, 239, 0.35);
  text-align: center;
  margin-top: 1rem;
  font-style: italic;
}

.form-feedback {
  font-family: "Raleway", sans-serif;
  font-size: 0.85rem;
  text-align: center;
  margin-top: 1rem;
  min-height: 1.2rem;
  color: var(--emerald);
}

/* ───────────────────────────────
   CATEGORIES DEEP DIVE
─────────────────────────────── */
.blog-categories-section {
  padding: 6rem 0;
  background: var(--deep-charcoal);
}

.categories-deep-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.category-deep-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(201, 149, 108, 0.12);
  border-radius: 2px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.category-deep-card:hover {
  border-color: rgba(201, 149, 108, 0.3);
  background: rgba(201, 149, 108, 0.03);
  transform: translateY(-3px);
}

.featured-category {
  border-color: rgba(201, 149, 108, 0.25);
  background: rgba(201, 149, 108, 0.04);
}

.category-deep-icon {
  font-size: 2.5rem;
  line-height: 1;
}

.category-deep-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--warm-white);
}

.category-deep-card p {
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(248, 244, 239, 0.5);
  line-height: 1.7;
  text-align: center;
}

.category-count {
  font-family: "Raleway", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose-gold);
  opacity: 0.7;
}

.category-filter-btn {
  font-size: 0.78rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

/* ───────────────────────────────
   FINAL CTA
─────────────────────────────── */
.blog-final-cta {
  padding: 7rem 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 60%, #1f1535 100%);
  text-align: center;
  border-top: 1px solid rgba(201, 149, 108, 0.12);
}

.blog-final-cta-inner h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  color: var(--warm-white);
  line-height: 1.3;
  margin: 1rem 0 1.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.blog-final-desc {
  font-family: "Raleway", sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(248, 244, 239, 0.6);
  line-height: 1.85;
  max-width: 520px;
  margin: 0 auto 2.5rem;
}

.blog-final-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.blog-final-micro {
  font-family: "Raleway", sans-serif;
  font-size: 0.8rem;
  color: rgba(248, 244, 239, 0.35);
}

.gold-link {
  color: var(--rose-gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.gold-link:hover {
  color: var(--pure-gold);
}

/* ───────────────────────────────
   SR-ONLY UTILITY
─────────────────────────────── */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

  .categories-deep-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .featured-card-image {
    min-height: 280px;
  }

  .featured-card-content {
    padding: 2.5rem;
  }

  .blog-newsletter-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .blog-hero {
    min-height: 45vh;
    padding: 7rem 1.5rem 4rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .filters-wrap {
    gap: 0.5rem;
  }

  .filter-btn {
    font-size: 0.72rem;
    padding: 0.45rem 0.9rem;
  }

  .categories-deep-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .blog-final-actions {
    flex-direction: column;
    align-items: center;
  }

  .featured-meta {
    gap: 0.6rem;
  }

  .newsletter-form-wrap {
    padding: 1.8rem;
  }
}

@media (max-width: 480px) {
  .categories-deep-grid {
    grid-template-columns: 1fr;
  }

  .blog-newsletter {
    padding: 4rem 0;
  }

  .featured-card-content {
    padding: 1.8rem;
  }

  .featured-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}
