/**
 * Blog post title card — overlaps up into the BasePlus full-width banner.
 *
 * Visual pattern: hero image sits in the page template above this node.
 * The .blog-post-card pulls itself up with negative margin so the bottom
 * portion of the hero image is partially covered by the card, creating
 * the magazine-style "title plate" effect.
 */

.blog-post-node {
  --kicker-color: #9C6B2F;       /* gold/bronze accent */
  --kicker-size: 0.8rem;
  --card-bg: rgba(20, 20, 20, 0.92);
  --card-text: #ffffff;
  --card-border: #C9A84C;
}

/* ----- title card ----- */
.blog-post-card {
  max-width: 900px;
  margin: 0 auto 2.5rem;
  padding: 0 1rem;
}

.blog-post-card__inner {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 4px;
  padding: 1.75rem 2rem 1.5rem;
  color: var(--card-text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.blog-post-card__kicker {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  font-size: var(--kicker-size);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--kicker-color);
  margin-bottom: 0.75rem;
}
.blog-post-card__kicker .kicker__sep {
  opacity: 0.6;
}
.blog-post-card__kicker .kicker__category {
  color: var(--kicker-color);
}

.blog-post-card__title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.15;
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--card-text);
}

.blog-post-card__byline {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.blog-post-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid var(--card-border);
  object-fit: cover;
  flex: 0 0 56px;
}

.blog-post-card__meta {
  font-size: 0.9rem;
  line-height: 1.4;
}

.blog-post-card__author {
  color: var(--card-border);
  font-weight: 700;
}

.blog-post-card__date {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

/* ----- subheader / intro ----- */
.blog-post-subheader {
  max-width: 760px;
  margin: 0 auto 2rem;
  padding: 0 1rem;
  font-size: 1.15rem;
  line-height: 1.6;
  color: #3a3226;
}

.blog-post-subheader p:first-child {
  margin-top: 0;
}

.blog-post-subheader p:last-child {
  margin-bottom: 0;
}

/* ----- body ----- */
.blog-post-body {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 1rem;
  line-height: 1.7;
}

/* ----- mobile ----- */
@media (max-width: 575.98px) {
  .blog-post-card__inner {
    padding: 1.25rem 1.25rem 1.1rem;
  }
  .blog-post-card__avatar {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
  }
}

/* ----- author bio ----- */
.blog-author-bio {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  max-width: 760px;
  margin: 3rem auto;
  padding: 1.75rem 2rem;
  background: #f4ede0;
  border-top: 3px solid #C9A84C;
}

.blog-author-bio__avatar {
  flex: 0 0 110px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  border: 3px solid #C9A84C;
  object-fit: cover;
}

.blog-author-bio__text {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #2a2a2a;
}

.blog-author-bio__name {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.blog-author-bio__body p {
  margin: 0 0 0.75rem;
}

.blog-author-bio__body p:last-child {
  margin-bottom: 0;
}

.blog-author-bio__body a {
  color: #9C6B2F;
  font-weight: 700;
  text-decoration: none;
}

.blog-author-bio__body a:hover,
.blog-author-bio__body a:focus {
  text-decoration: underline;
}

@media (max-width: 575.98px) {
  .blog-author-bio {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1.25rem;
    gap: 1rem;
  }
  .blog-author-bio__avatar {
    flex: 0 0 90px;
    width: 90px;
    height: 90px;
  }
}

/* ----- Cheri's Tip callout ----- */
.cheri-tip {
  background: #fff;
  border: 1px solid #e0d5c5;
  border-left: 5px solid #C9A535;
  border-radius: 8px;
  margin: 28px 0;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  box-shadow: 0 3px 12px rgba(0, 0, 0, 0.09);
}

.cheri-tip__photo-col {
  background: #2D2E30;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 18px 14px;
  min-width: 100px;
  gap: 7px;
}

.cheri-tip__avatar {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #C9A535;
}

.cheri-tip__name {
  color: #C9A535;
  font-size: 9px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  font-family: Arial, sans-serif;
  line-height: 1.3;
}

.cheri-tip__content {
  padding: 16px 20px;
  flex: 1;
}

.cheri-tip__label {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #2D2E30;
  color: #C9A535;
  font-size: 10px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 9px;
  border-radius: 3px;
  margin-bottom: 9px;
  font-family: Arial, sans-serif;
}

.cheri-tip__text {
  font-size: 15px;
  line-height: 1.65;
  color: #3a3226;
  font-style: italic;
}

@media (max-width: 575.98px) {
  .cheri-tip__photo-col {
    min-width: 80px;
    padding: 14px 10px;
  }
  .cheri-tip__avatar {
    width: 52px;
    height: 52px;
  }
}
