/* =========================
   Staff Insert Block
   ========================= */

.staff.staff--insert {
  margin: 48px 0;
}

.staff__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

/* Staff card */
.staff__card {
  display: flex;
  flex-direction: column;
  background: #fff;
}

/* Image */
.staff__media {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f2f2f2;
}

.staff__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Body */
.staff__body {
  padding: 12px 4px 0;
}

.staff__name {
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}

.staff__title,
.staff__role,
.staff__note {
  font-size: 12px;
  margin: 0 0 4px;
  opacity: 0.8;
}

.staff__comment {
  font-size: 12px;
  line-height: 1.5;
  margin: 8px 0;
}



/* =========================
   Responsive
   ========================= */

@media (max-width: 768px) {
  .staff__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
}
