/* SAY HI Society — blog index + article pages */

/* Two accent styles, pickable per word/phrase from the admin. */
.blog-heading-accent--underline {
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 4px;
  text-underline-offset: 10px;
}

.blog-heading-accent--highlight {
  color: var(--black);
  background: var(--lime);
  padding: 0 12px;
  display: inline-block;
}

.blog-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 32px;
}

.blog-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--white);
  margin-bottom: 18px;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05);
  transition: transform 0.4s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}

.blog-card h2 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.3;
  margin-bottom: 8px;
}

.blog-card p {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.55;
}

.cp-body h3 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  margin: 32px 0 10px;
}

.cp-body h3:first-child {
  margin-top: 0;
}

.cp-body h4 {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--grey);
  margin: 24px 0 4px;
}

.cp-body blockquote {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--black);
  text-align: center;
  margin: 32px 0;
}

/* Article page — Editorial Hero: full-bleed image, text overlaid, bottom-anchored, centered */
.article-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.article-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: grayscale(1) contrast(1.05);
}

.article-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.15) 40%, rgba(0,0,0,0.85) 100%);
}

.article-hero-body {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 32px 32px 56px;
  max-width: 920px;
  margin: 0 auto;
}

.article-hero-body .hf-eyebrow {
  color: var(--muted-white);
  justify-content: center;
  display: flex;
}

.article-hero-body h1 {
  color: #fff;
  font-size: clamp(40px, 8vw, 78px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 12px rgba(0,0,0,0.5);
  margin-top: 14px;
}

.article-date {
  color: var(--muted-white);
  font-size: 13px;
  margin-top: 10px;
}

.article-cta {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 32px 40px;
  font-size: 14.5px;
  color: var(--grey);
}

.article-cta a {
  color: var(--black);
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.article-tools {
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 32px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.article-share {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}

.article-next {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
}

.article-next span {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--grey);
  margin-top: 2px;
}

.article-back {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px 32px 64px;
}

.article-back a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  border-bottom: 1px solid var(--black);
  padding-bottom: 2px;
}

@media (max-width: 800px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 20px; }
}

@media (max-width: 560px) {
  .blog-grid { grid-template-columns: 1fr; padding: 0 20px 64px; }
  .article-hero { min-height: 62vh; }
  .article-hero-body { padding: 24px 20px 40px; }
  .article-back { padding: 0 20px 48px; }
}
