.blm-members {
  --blm-ink: #17384a;
  --blm-accent: #c9583c;
  --blm-cream: #fffaf4;
  --blm-line: #eadfd3;
  margin: clamp(2.5rem, 6vw, 5rem) auto;
  max-width: 1280px;
}

.blm-members__header {
  margin: 0 auto 2rem;
  max-width: 760px;
  text-align: center;
}

.blm-members__header h2 {
  color: var(--blm-ink);
  font-size: clamp(1.8rem, 3.3vw, 2.7rem);
  line-height: 1.12;
  margin: 0 0 .75rem;
}

.blm-members__header p { margin: 0; }

.blm-members__grid {
  display: grid;
  gap: clamp(1rem, 2.2vw, 1.7rem);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.blm-card {
  background: var(--blm-cream);
  border: 1px solid var(--blm-line);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(23, 56, 74, .08);
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}

.blm-card:hover {
  box-shadow: 0 16px 38px rgba(23, 56, 74, .14);
  transform: translateY(-3px);
}

.blm-card__image {
  aspect-ratio: 4 / 3;
  background: #efe5da;
  display: block;
  overflow: hidden;
  position: relative;
}

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

.blm-card:hover .blm-card__image img { transform: scale(1.025); }

.blm-card__placeholder {
  align-items: center;
  color: var(--blm-ink);
  display: flex;
  font-family: Georgia, serif;
  font-size: 5rem;
  height: 100%;
  justify-content: center;
}

.blm-card__new,
.blm-card__label {
  backdrop-filter: blur(5px);
  border-radius: 999px;
  line-height: 1;
  position: absolute;
}

.blm-card__new {
  background: rgba(255, 250, 244, .94);
  color: var(--blm-accent);
  font-size: .72rem;
  letter-spacing: .1em;
  padding: .65rem .8rem;
  right: .8rem;
  text-transform: uppercase;
  top: .8rem;
}

.blm-card__label {
  background: rgba(23, 56, 74, .92);
  bottom: .8rem;
  color: #fff;
  font-size: .78rem;
  left: .8rem;
  max-width: calc(100% - 1.6rem);
  overflow: hidden;
  padding: .55rem .8rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.blm-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.15rem 1.2rem 1.3rem;
}

.blm-card__body h3 {
  color: var(--blm-ink);
  font-family: Georgia, serif;
  font-size: clamp(1.25rem, 1.7vw, 1.55rem);
  line-height: 1.1;
  margin: 0 0 .7rem;
}

.blm-card__body h3 a { color: inherit; text-decoration: none; }
.blm-card__body p { font-size: .95rem; line-height: 1.5; margin: 0 0 1.1rem; }

.blm-card__meta {
  color: #5f6d73;
  display: flex;
  flex-direction: column;
  font-size: .83rem !important;
  gap: .15rem;
  margin: -.25rem 0 .65rem !important;
}

.blm-card__location::before {
  color: var(--blm-accent);
  content: "●";
  font-size: .55rem;
  margin-right: .4rem;
  vertical-align: .12rem;
}

.blm-card__link {
  color: var(--blm-accent);
  font-weight: 650;
  margin-top: auto;
  text-decoration: none;
}

.blm-card__link:hover { text-decoration: underline; }

.blm-members__more { margin: 2rem 0 0; text-align: center; }
.blm-members__more a {
  background: var(--blm-accent);
  border-radius: 999px;
  color: #fff;
  display: inline-block;
  font-weight: 700;
  padding: .85rem 1.35rem;
  text-decoration: none;
}

.blm-members__more a:hover { filter: brightness(.94); }

@media (max-width: 1050px) {
  .blm-members__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .blm-members__grid { grid-template-columns: 1fr; }
  .blm-card { border-radius: 20px; }
}

@media (prefers-reduced-motion: reduce) {
  .blm-card, .blm-card__image img { transition: none; }
}
