.blog-index {
  --card-ink: #151515;
  --card-muted: #707070;
  --card-accent: #9b7a32;
  max-width: 1080px;
  margin: 0 auto;
  padding-bottom: 28px;
}

.blog-index__header {
  max-width: 720px;
  margin: 8px auto 30px;
  text-align: center;
}

.blog-index__eyebrow {
  display: inline-block;
  margin-bottom: 9px;
  color: #e91e63;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.blog-index__header h1 {
  margin: 0 0 10px;
  color: var(--card-ink);
  font-size: clamp(30px, 4vw, 43px);
  font-weight: 750;
  letter-spacing: -.035em;
  line-height: 1.12;
}

.blog-index__header p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--card-muted);
  font-size: 16px;
  line-height: 1.65;
}

.blog-index__filters {
  justify-content: center;
  margin-bottom: 32px;
  padding-top: 0;
}

.blog-chip__dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.blog-index__notice {
  margin: -12px 0 24px;
  color: var(--card-muted);
}

.blog-index form.blog-page-size {
  display: flex;
  width: fit-content;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  margin: -14px 0 24px auto;
}

.blog-page-size label {
  color: var(--card-muted);
  font-size: 14px;
  font-weight: 650;
  white-space: nowrap;
}

.blog-index .blog-page-size .form-select {
  flex: 0 0 92px;
  width: 92px;
  min-height: 42px;
}

.blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 26px;
  align-items: stretch;
}

.article-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  box-shadow: 0 3px 13px rgba(20, 20, 20, .09);
  transition: transform .2s ease, box-shadow .2s ease;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 9px 24px rgba(20, 20, 20, .14);
}

.article-card__image {
  display: block;
  height: 210px;
  overflow: hidden;
  background: #f3f3f3;
}

.article-card__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.article-card:hover .article-card__image img { transform: scale(1.035); }

.article-card__placeholder {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #d61b5a;
  background: linear-gradient(135deg, #ffe8f0, #f0ebff);
  font-size: 42px;
}

.article-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 18px 25px;
}

.article-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 11px;
  padding: 5px 10px;
  color: #8a6721;
  background: #fbf6e8;
  border: 1px solid #eadcb7;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 750;
  letter-spacing: .055em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.article-card__badge > span {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  border-radius: 50%;
  background: #e91e63;
}

.article-card__badge:hover { color: #664914; background: #f6edcf; }

.article-card h2 {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 750;
  letter-spacing: -.025em;
  line-height: 1.2;
}

.article-card h2 a { color: var(--card-ink); text-decoration: none; }
.article-card h2 a:hover { color: #e91e63; }

.article-card__body > p {
  margin: 0 0 12px;
  color: var(--card-muted);
  font-size: 15.5px;
  line-height: 1.48;
}

.article-card__read {
  margin-top: auto;
  color: var(--card-accent);
  font-size: 12px;
  font-weight: 750;
  text-decoration: none;
}

.article-card__read:hover { color: #e91e63; }

@media (max-width: 991.98px) {
  .blog-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .blog-index__header { margin-bottom: 24px; text-align: left; }
  .blog-index__header p { margin-left: 0; }
  .blog-index__filters { justify-content: flex-start; }
  .blog-search { flex-basis: 100%; max-width: none; }
  .blog-card-grid { grid-template-columns: 1fr; gap: 22px; }
  .article-card__image { height: 215px; }
  .blog-index form.blog-page-size { margin-top: -12px; }
}
