/* ========== GRID ========== */
.masthead-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* ========== CARD BASE ========== */
.masthead-card {
  padding: 1.5rem 1.25rem;
  border: 1px solid #eaeaea; /* softened */
  background: #fff;
  box-shadow: 0 1px 0 rgba(0,0,0,0.03); /* very light editorial lift */
}

/* Leadership gets slightly stronger presence */
.masthead-section:first-of-type .masthead-card {
  border-color: #ddd;
}

/* Top leadership row (Editor-in-Chief, Exec, Managing) */
.masthead-section:first-of-type .masthead-card:nth-child(-n+3) {
  border-color: #bbb;
}

/* Non-leadership sections feel lighter */
.masthead-section:not(:first-of-type) .masthead-card {
  border-color: #f0f0f0;
}

/* ========== TEXT ========== */
.masthead-card-name {
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
  letter-spacing: 0.01em;
}

.masthead-card-role {
  font-style: italic;
  color: #666;
  font-size: 0.95rem;
  margin-top: 0.15rem;
}

/* Optional intro text (future-proof) */
.masthead-card-intro {
  margin-top: 0.75rem;
  font-size: 0.95rem;
  color: #444;
}

/* ========== FUTURE IMAGE PLACEHOLDER ========== */
.masthead-card-image {
  width: 100%;
  aspect-ratio: 3 / 4;
  background: #f4f4f4;
  margin-bottom: 1rem;
  display: none; /* enable when images exist */
}

/* ========== SECTION HEADERS ========== */
.masthead-section {
  margin-bottom: 4rem; /* anchors sections */
}

.masthead-section > h2 {
  margin-bottom: 1.5rem;
}

.masthead-section h3 {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 2.5rem 0 1.25rem;
  color: #444;
}

/* ========== READERS LIST ========== */
.masthead-readers {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.masthead-readers ul {
  list-style: none;
  padding: 0;
  margin: 0;
  column-count: 3;
  column-gap: 2.5rem;
}

.masthead-readers li {
  break-inside: avoid;
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  color: #444;
}
/* ========== RESPONSIVE ========== */
@media (max-width: 900px) {
  .masthead-readers ul {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .masthead-readers ul {
    column-count: 1;
  }
}
/* Section headers */
.masthead-section > h2 {
  color: #0673aa;
}

.masthead-section > h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background-color: #0673aa;
  margin-top: 0.75rem;
}
