/* Blog-only styles (safe + scoped) */

.blogHero{
  position: relative;
  padding-top: 108px; /* leaves room for fixed header */
  padding-bottom: 28px;
  color: #fff;
  overflow: hidden;
}

.blogHero__bg{
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 520px at 18% 20%, rgba(230,210,168,.22), transparent 60%),
    radial-gradient(900px 600px at 85% 40%, rgba(15,59,42,.22), transparent 62%),
    linear-gradient(180deg, rgba(11,44,32,.92), rgba(11,44,32,.70) 55%, rgba(11,44,32,.28));
}

.blogHero__inner{
  position: relative;
  z-index: 1;
  padding: 24px 0 10px;
  text-shadow: 0 3px 18px rgba(0,0,0,.35);
}

.blogHero__eyebrow{
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: .18em;
  font-size: 12px;
  text-transform: uppercase;
  color: rgba(255,255,255,.88);
}

.blogHero__title{
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: .2px;
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
}

.blogHero__lead{
  margin: 0;
  max-width: 70ch;
  color: rgba(255,255,255,.92);
  font-size: 16px;
  line-height: 1.65;
}

.blogTools{
  margin-top: 16px;
  display: grid;
  gap: 12px;
}

.blogSearch{
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.10);
  padding: 10px 14px;
  backdrop-filter: blur(10px);
}

.blogSearch__icon{
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: rgba(230,210,168,.92);
  box-shadow: 0 0 0 6px rgba(230,210,168,.18);
}

.blogSearch__input{
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: rgba(255,255,255,.94);
  font-size: 16px;
}
.blogSearch__input::placeholder{
  color: rgba(255,255,255,.72);
}

.blogChips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip{
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  font-weight: 800;
  font-size: 14px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.chip:hover{ transform: translateY(-1px); background: rgba(255,255,255,.12); }
.chip.is-on{
  background: rgba(230,210,168,.92);
  color: rgba(11,44,32,.98);
  border-color: rgba(230,210,168,.55);
}

.blogHead{
  align-items: end;
}

.blogGrid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 14px;
}

.postCard{
  border-radius: var(--r2);
  overflow: hidden;
  background: rgba(255,255,255,.82);
  border: 1px solid rgba(15,59,42,.14);
  box-shadow: var(--shadow);
  transition: transform .18s ease, box-shadow .18s ease;
}
.postCard:hover{
  transform: translateY(-2px);
  box-shadow: var(--shadow2);
}

.postCard__media{
  aspect-ratio: 16 / 10;
  background: rgba(15,59,42,.06);
}
.postCard__media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.postCard__body{
  padding: 14px;
}

.postCard__meta{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  color: rgba(11,31,24,.62);
  font-weight: 700;
  font-size: 12px;
}

.badge{
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(15,59,42,.12);
  background: rgba(230,210,168,.22);
  color: var(--green);
  font-weight: 900;
  font-size: 12px;
}

.postCard__title{
  margin: 10px 0 6px;
  font-family: var(--font-serif);
  color: var(--green2);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.15;
}

.postCard__desc{
  margin: 0 0 12px;
  color: rgba(11,31,24,.72);
  line-height: 1.6;
  font-size: 15px;
}

.postCard__cta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(15,59,42,.10);
}

.postCard__link{
  font-weight: 900;
  color: var(--green);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,59,42,.14);
  background: rgba(230,210,168,.18);
  transition: transform .18s ease, background .18s ease;
}
.postCard__link:hover{ transform: translateY(-1px); background: rgba(230,210,168,.26); }

.postCard__read{
  font-size: 13px;
  color: rgba(11,31,24,.62);
  font-weight: 700;
}

.blogCallout{ margin-top: 18px; }

/* Post page (shared) */
.article{
  padding-top: 102px;
}
.articleHero{
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid rgba(15,59,42,.14);
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.78);
}
.articleHero__img{
  aspect-ratio: 16 / 10;
  background: rgba(15,59,42,.06);
}
.articleHero__img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.articleHero__body{
  padding: 14px;
}
.articleTitle{
  margin: 10px 0 8px;
  font-family: var(--font-serif);
  color: var(--green2);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.1;
}
.articleLead{
  margin: 0;
  color: rgba(11,31,24,.72);
  line-height: 1.7;
}
.prose{
  margin-top: 14px;
  border-radius: var(--r2);
  border: 1px solid rgba(15,59,42,.14);
  background: rgba(255,255,255,.80);
  box-shadow: var(--shadow);
  padding: 16px;
  line-height: 1.75;
  color: rgba(11,31,24,.76);
}
.prose h2{
  margin: 14px 0 8px;
  font-family: var(--font-serif);
  color: var(--green2);
  font-weight: 600;
  font-size: 20px;
}
.prose ul{
  margin: 8px 0 0;
  padding-left: 18px;
}

@media (min-width: 860px){
  .blogTools{
    grid-template-columns: 1.2fr .8fr;
    align-items: center;
  }
  .blogGrid{
    grid-template-columns: repeat(2, 1fr);
  }
}
