/* Blog – theme-aligned (navy, gold, Cormorant, Outfit) */

.blog-hero .category-hero-intro {
  max-width: 420px;
}

.blog-listing-section {
  padding: 5rem 0 6rem;
  background: var(--bg-white);
}

.blog-listing-header {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 4rem;
}

.blog-listing-header .section-label {
  color: var(--gold);
}

.blog-listing-header .section-title {
  color: var(--navy);
  letter-spacing: 0.03em;
}

.blog-listing-header .section-subtitle {
  color: var(--dark-muted);
}

.blog-listing-header .signature-services-accent {
  margin: 1.25rem auto 0;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

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

@media (max-width: 991.98px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Blog card – theme card style (border, gold accent, hover) */
.blog-card {
  position: relative;
}

.blog-card-link {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border: 1px solid rgba(201, 162, 77, 0.2);
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(14, 26, 43, 0.04);
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: box-shadow 0.35s ease, border-color 0.35s ease, transform 0.35s ease;
}

.blog-card-link:hover {
  box-shadow: 0 8px 24px rgba(14, 26, 43, 0.08);
  border-color: rgba(201, 162, 77, 0.45);
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

.blog-card-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.blog-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--navy);
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-card-link:hover .blog-card-image img {
  transform: scale(1.03);
}

.blog-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 26, 43, 0.2);
  transition: background 0.35s ease;
  z-index: 1;
}

.blog-card-link:hover .blog-card-overlay {
  background: rgba(14, 26, 43, 0.35);
}

.blog-card-category {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  z-index: 2;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(14, 26, 43, 0.85);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
}

.blog-card-body {
  padding: 1.5rem 1.5rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-date {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--dark-muted);
  margin-bottom: 0.6rem;
}

.blog-card-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.blog-card-excerpt {
  font-size: 0.95rem;
  color: var(--dark-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.blog-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold);
  margin-top: auto;
}

.blog-card-cta svg {
  transition: transform 0.3s ease;
}

.blog-card-link:hover .blog-card-cta svg {
  transform: translateX(4px);
}

/* ========== Blog detail page ========== */
.blog-detail-hero {
  position: relative;
  min-height: 45vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 2.5rem;
}

.blog-detail-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.blog-detail-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(14, 26, 43, 0.92) 0%, rgba(14, 26, 43, 0.5) 50%, transparent 100%);
}

.blog-detail-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.blog-detail-hero .container {
  max-width: 820px;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.5rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.85);
}

.blog-detail-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-detail-hero-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 600;
  color: #fff;
  line-height: 1.25;
  letter-spacing: 0.02em;
  margin: 0;
}

.blog-article-section {
  padding: 4rem 0 5rem;
  background: var(--bg-white);
}

.blog-article-body {
  max-width: 720px;
  margin: 0 auto;
}

.blog-article-body .section-label {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.blog-article-body p {
  font-size: 1.08rem;
  line-height: 1.75;
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.blog-article-body h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.blog-article-body h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.blog-article-body ul,
.blog-article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.blog-article-body li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
  color: var(--dark);
}

.blog-article-body blockquote {
  margin: 2rem 0;
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--gold);
  background: rgba(201, 162, 77, 0.06);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--navy);
}

.blog-article-body img {
  border-radius: 8px;
  margin: 2rem 0;
  box-shadow: 0 4px 20px rgba(14, 26, 43, 0.08);
}

.blog-detail-related .category-related-header {
  margin-bottom: 2rem;
}

.blog-detail-related .category-related-header .section-label {
  color: var(--gold);
}

.blog-detail-related .category-related-header .section-title {
  color: var(--navy);
}
