/* ── BLOG SHARED STYLES ── */

/* Page header */
.blog-header {
  background: var(--navy);
  padding: 140px 24px 80px;
  text-align: center;
}
.blog-header-inner { max-width: 700px; margin: 0 auto; }
.blog-header-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.blog-header-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  font-style: italic;
}

/* Blog main */
.blog-main { padding: 72px 0 96px; background: var(--off-white); }

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

/* Featured card spans full width */
.blog-card--featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.blog-card--featured .blog-card__img-link { display: block; }
.blog-card--featured .blog-card__img-wrap {
  height: 100%;
  min-height: 340px;
  border-radius: 0;
}
.blog-card--featured .blog-card__body {
  padding: 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.blog-card--featured h2 { font-size: 1.5rem; }
.blog-card--featured p { font-size: 1rem; }

/* Standard card */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(232,160,32,0.3);
}

.blog-card__img-link { display: block; }
.blog-card__img-wrap {
  height: 220px;
  overflow: hidden;
  background: var(--navy-mid);
}
.blog-card__img-wrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
}
.blog-card__placeholder { font-size: 3.5rem; }
.blog-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.blog-card:hover .blog-card__img-wrap img { transform: scale(1.04); }

.blog-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  margin: 10px 0 12px;
  line-height: 1.35;
}
.blog-card__body h2 a { transition: color var(--transition); }
.blog-card__body h2 a:hover { color: var(--amber-dark); }
.blog-card__body p {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.blog-card__date {
  font-size: 0.78rem;
  color: var(--gray-300);
  font-weight: 500;
}

/* ── SINGLE POST ── */
.post-hero {
  background: var(--navy);
  padding: 140px 24px 72px;
}
.post-hero-inner { max-width: 820px; margin: 0 auto; }
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  transition: color var(--transition);
}
.post-back:hover { color: var(--amber); }
.post-back svg { width: 16px; }

.post-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
  margin: 12px 0 16px;
}
.post-date {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

/* Post body */
.post-body-wrap {
  padding: 64px 0 96px;
  background: var(--white);
}
.post-body {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Featured image */
.post-featured-img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
  box-shadow: var(--shadow-lg);
}

/* Post content typography */
.post-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--gray-500);
}
.post-content p { margin-bottom: 1.5em; }
.post-content p:last-child { margin-bottom: 0; }
.post-content strong { color: var(--navy); font-weight: 700; }
.post-content em { font-style: italic; }
.post-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin: 2em 0 0.6em;
}
.post-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin: 1.5em 0 0.5em;
}
.post-content ul, .post-content ol {
  padding-left: 1.5em;
  margin-bottom: 1.5em;
}
.post-content li { margin-bottom: 0.5em; }
.post-content blockquote {
  border-left: 4px solid var(--amber);
  padding: 4px 0 4px 24px;
  margin: 2em 0;
  font-style: italic;
  color: var(--navy);
  font-size: 1.1rem;
}

/* Inline image in post */
.post-content .post-img {
  width: 100%;
  border-radius: var(--radius);
  margin: 2em 0;
  box-shadow: var(--shadow);
}
.post-content .post-img-caption {
  font-size: 0.82rem;
  color: var(--gray-300);
  text-align: center;
  margin-top: -1.2em;
  margin-bottom: 2em;
}
.post-content .post-img-side {
  float: right;
  width: 260px;
  margin: 0 0 1.5em 2em;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Video embed */
.post-video {
  width: 100%;
  border-radius: var(--radius-lg);
  margin: 2em 0;
  background: #000;
  display: block;
  max-height: 540px;
  box-shadow: var(--shadow-lg);
}

/* One-liners list */
.oneliner-list {
  list-style: none;
  padding: 0;
  margin: 2em 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.oneliner-list li {
  background: var(--off-white);
  border-left: 4px solid var(--amber);
  padding: 14px 20px;
  border-radius: 0 8px 8px 0;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 500;
  line-height: 1.4;
}

/* Post nav */
.post-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 0;
  border-top: 1px solid var(--gray-100);
  margin-top: 64px;
  gap: 16px;
  flex-wrap: wrap;
}
.post-nav a {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--amber-dark);
  transition: color var(--transition);
}
.post-nav a:hover { color: var(--amber); }

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .blog-card--featured {
    grid-template-columns: 1fr;
  }
  .blog-card--featured .blog-card__img-wrap {
    min-height: 260px;
  }
  .blog-card--featured .blog-card__body {
    padding: 28px;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .post-content .post-img-side {
    float: none;
    width: 100%;
    margin: 1.5em 0;
  }
}

@media (max-width: 480px) {
  .blog-header { padding: 120px 20px 56px; }
  .post-hero { padding: 120px 20px 56px; }
  .post-body { padding: 0 16px; }
  .blog-card__body { padding: 20px 16px 24px; }
  .blog-card__meta { flex-direction: column; align-items: flex-start; gap: 8px; }
}
