/* Blog editorial styles */
.article-content h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--deep);
  margin: 2.5rem 0 .75rem;
  line-height: 1.3;
}
.article-content h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--deep);
  margin: 2rem 0 .5rem;
}
.article-content p {
  margin: 0 0 1.25rem;
}
.article-content ul, .article-content ol {
  margin: 0 0 1.25rem 1.5rem;
  padding: 0;
}
.article-content li {
  margin-bottom: .4rem;
}
.article-content strong {
  color: var(--deep);
  font-weight: 600;
}
.article-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.article-content blockquote {
  border-left: 3px solid var(--gold);
  margin: 2rem 0;
  padding: .75rem 1.5rem;
  background: rgba(184,123,58,0.06);
  font-style: italic;
  color: #3a4050;
}
/* Blog index breadcrumb */
.blog-archive-hero .breadcrumb {
  font-size: .75rem;
  color: rgba(245,240,230,0.5);
  margin-bottom: 1rem;
}
/* Nav active state */
.site-header nav a.active {
  color: var(--gold);
}

/* Override: blog card titles should NOT be uppercase */
.blog-card-grid h2,
.blog-card-grid h2 a {
  text-transform: none !important;
  letter-spacing: normal !important;
}

/* 3-column grid on desktop */
@media (min-width: 900px) {
  .blog-card-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}
