/* ───────────────────────────────────────────────────────────
   Blog — list + article styles
   Sits on top of style.css. Keeps the brand palette.
   ─────────────────────────────────────────────────────────── */

.blog-page-body,
.blog-post-body {
  background: #0B1628;
  color: #FAF3E0;
  padding-top: 80px;
}

/* ── Hero ───────────────────────────────────────────────── */
.blog-hero {
  padding: 4rem 1.5rem 3rem;
  text-align: center;
  background: radial-gradient(ellipse at top, rgba(36,63,114,0.5), transparent 70%);
  border-bottom: 1px solid rgba(201,168,76,0.18);
}
.blog-hero__inner { max-width: 720px; margin: 0 auto; }
.blog-hero__eyebrow {
  font-size: 0.72rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: #C9A84C;
  margin-bottom: 1rem;
}
.blog-hero__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 500;
  margin: 0 0 0.8rem;
  color: #FAF3E0;
}
.blog-hero__title em { color: #C9A84C; font-style: italic; }
.blog-hero__sub {
  font-size: 1.05rem;
  color: rgba(250,243,224,0.7);
  max-width: 560px;
  margin: 0 auto;
}

/* ── List ───────────────────────────────────────────────── */
.blog-list { padding: 3.5rem 0 5rem; }
.blog-list .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.45);
  border-color: rgba(201,168,76,0.45);
}

.blog-card__img {
  display: block;
  height: 220px;
  overflow: hidden;
  background: #1a2a4a;
}
.blog-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card__img img { transform: scale(1.05); }
.blog-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1a2a4a, #0b1628);
}

.blog-card__body { padding: 1.5rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.blog-card__date {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #C9A84C;
  margin: 0;
}
.blog-card__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.3;
  margin: 0;
}
.blog-card__title a {
  color: #FAF3E0;
  text-decoration: none;
  transition: color 0.25s ease;
}
.blog-card__title a:hover { color: #E8C96D; }
.blog-card__excerpt {
  font-size: 0.93rem;
  color: rgba(250,243,224,0.68);
  line-height: 1.55;
  margin: 0;
}
.blog-card__more {
  margin-top: auto;
  color: #C9A84C;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  align-self: flex-start;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease;
}
.blog-card__more:hover { border-bottom-color: #C9A84C; }

.blog-empty {
  text-align: center;
  color: rgba(250,243,224,0.5);
  padding: 3rem 0;
}

/* ── Single article ─────────────────────────────────────── */
.blog-article { padding-bottom: 4rem; }

.blog-article__hero {
  position: relative;
  height: clamp(260px, 45vw, 520px);
  overflow: hidden;
}
.blog-article__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.blog-article__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,22,40,0.2) 0%, rgba(11,22,40,0.92) 100%);
}

.blog-article__head {
  max-width: 760px;
  margin: -4rem auto 2rem;
  position: relative;
  text-align: center;
  padding: 0 1.5rem;
}
.blog-article__crumb {
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #C9A84C;
  margin: 0 0 1rem;
}
.blog-article__crumb a { color: #C9A84C; text-decoration: none; }
.blog-article__crumb a:hover { text-decoration: underline; }
.blog-article__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 500;
  line-height: 1.2;
  color: #FAF3E0;
  margin: 0;
}

.blog-article__body {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(250,243,224,0.88);
}
.blog-article__body p { margin: 0 0 1.3rem; }
.blog-article__body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #E8C96D;
  margin: 2.2rem 0 1rem;
}
.blog-article__body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: #FAF3E0;
  margin: 1.8rem 0 0.8rem;
}
.blog-article__body a { color: #E8C96D; }
.blog-article__body ul { padding-left: 1.4rem; margin: 0 0 1.3rem; }
.blog-article__body li { margin-bottom: 0.5rem; }
.blog-article__body strong { color: #FAF3E0; }
.blog-article__body em { color: rgba(250,243,224,0.95); }
.blog-article__body blockquote {
  border-left: 3px solid #C9A84C;
  padding: 0.6rem 0 0.6rem 1.4rem;
  margin: 2rem 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.18rem;
  color: rgba(250,243,224,0.92);
}
.blog-article__body .blog-attr {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-style: normal;
  color: #C9A84C;
}

.blog-article__cta {
  max-width: 720px;
  margin: 3rem auto 0;
  padding: 2.2rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.25);
  border-bottom: 1px solid rgba(201,168,76,0.25);
}
.blog-article__cta h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 0.5rem;
  color: #FAF3E0;
}
.blog-article__cta p {
  color: rgba(250,243,224,0.7);
  margin: 0 0 1.2rem;
}

/* ── Related ────────────────────────────────────────────── */
.blog-related {
  padding: 4rem 0 5rem;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid rgba(201,168,76,0.12);
}
.blog-related .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.blog-related__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.7rem;
  font-weight: 500;
  color: #FAF3E0;
  margin: 0 0 2rem;
  text-align: center;
}

/* ── Mobile ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .blog-hero { padding: 3rem 1.25rem 2.5rem; }
  .blog-article__head { margin-top: -2.5rem; }
  .blog-article__body { font-size: 1rem; }
}
