/* ═══════════════════════════════════════════════════════
   FCIR BLOG STYLES
   ═══════════════════════════════════════════════════════ */

/* --- BLOG HERO --- */
.blog-hero {
  background: var(--navy-darkest);
  border-bottom: 1px solid var(--white-10);
  padding: calc(var(--header-h) + 48px) 24px 56px;
  text-align: center;
}
.blog-hero__inner {
  max-width: 700px;
  margin: 0 auto;
}
.blog-hero__eyebrow {
  font-size: 13px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.blog-hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.blog-hero__subtitle {
  font-size: clamp(15px, 2vw, 17px);
  color: var(--white-50);
  line-height: 1.6;
}

/* --- BLOG POSTS LIST --- */
.blog-posts {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--navy-dark);
}

/* --- BLOG CARD --- */
.blog-card {
  display: flex;
  gap: 32px;
  background: var(--navy);
  border: 1px solid var(--white-10);
  border-radius: 8px;
  padding: 36px 32px;
  margin-bottom: 28px;
  transition: border-color var(--transition-interactive);
}
.blog-card:hover {
  border-color: var(--gold);
}

.blog-card__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-width: 64px;
  padding-top: 4px;
}
.blog-card__day {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.blog-card__month {
  font-size: 13px;
  font-weight: 600;
  color: var(--white-50);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 4px;
}
.blog-card__year {
  font-size: 12px;
  color: var(--white-30, rgba(255,255,255,0.3));
  margin-top: 2px;
}

.blog-card__content {
  flex: 1;
}
.blog-card__tags {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.blog-card__tag {
  font-size: 11px;
  font-weight: 600;
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.2);
  padding: 3px 10px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.blog-card__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 26px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.blog-card__excerpt {
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card__read-more {
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
  transition: color var(--transition-interactive);
  cursor: pointer;
}
.blog-card__read-more:hover {
  color: var(--gold-light);
}

/* --- FULL ARTICLE --- */
.blog-article {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--white-10);
}
.blog-article h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-top: 32px;
  margin-bottom: 14px;
  line-height: 1.3;
}
.blog-article h3:first-child {
  margin-top: 0;
}
.blog-article p {
  font-size: 16px;
  color: var(--white-70);
  line-height: 1.8;
  margin-bottom: 16px;
}
.blog-article a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-interactive);
}
.blog-article a:hover {
  color: var(--gold-light);
}
.blog-article strong {
  color: var(--white);
  font-weight: 600;
}
.blog-article ul {
  list-style: none;
  margin: 0 0 20px 0;
  padding: 0;
}
.blog-article ul li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--white-70);
  line-height: 1.75;
  margin-bottom: 8px;
}
.blog-article ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* Sources */
.blog-article__sources {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--white-10);
}
.blog-article__sources h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-article__sources ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.blog-article__sources ul li {
  padding-left: 0;
  margin-bottom: 6px;
  font-size: 13px;
}
.blog-article__sources ul li::before {
  display: none;
}
.blog-article__sources a {
  color: var(--white-50);
  text-decoration: none;
  transition: color var(--transition-interactive);
}
.blog-article__sources a:hover {
  color: var(--gold);
}

/* Author */
.blog-article__author {
  margin-top: 32px;
  padding: 24px;
  background: var(--navy-dark);
  border: 1px solid var(--white-10);
  border-radius: 8px;
}
.blog-article__author-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.blog-article__author-info strong {
  font-family: var(--font-display);
  font-size: 16px;
  color: var(--white);
}
.blog-article__author-info span {
  font-size: 13px;
  color: var(--white-50);
}
.blog-article__author-info a {
  font-size: 14px;
  color: var(--gold);
  text-decoration: none;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .blog-card {
    flex-direction: column;
    gap: 16px;
    padding: 24px 20px;
  }
  .blog-card__date {
    flex-direction: row;
    gap: 8px;
    min-width: auto;
    align-items: baseline;
  }
  .blog-card__day {
    font-size: 24px;
  }
  .blog-card__month {
    margin-top: 0;
  }
  .blog-card__year {
    margin-top: 0;
  }
  .blog-article h3 {
    font-size: 19px;
  }
}
