/* Speakers section */

.c-speakers {
  padding: 40px 0 60px;
}

.c-speakers__heading {
  font-size: 26px;
  font-weight: 700;
  color: #1a2744;
  margin: 0 0 32px;
  line-height: 1.3;
  font-family: var(--font-family, sans-serif);
}

/* ---- Grid ---- */
.c-speakers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

/* ---- Card ---- */
.c-speakers__card {
  display: flex;
  flex-direction: column;
}

/* ---- Photo wrap with decorative dots ---- */
.c-speakers__photo-wrap {
  position: relative;
  margin-bottom: 16px;
  /* Indent so dots peek out from the top-right */
  padding-top: 18px;
  padding-right: 18px;
}

/* Dotted decoration: sits in the top-right, behind the photo */
.c-speakers__dots {
  position: absolute;
  top: 0;
  left: -25px;
  width: 80px;
  height: 80px;
  background-image: radial-gradient(circle, #c8d2e0 1.5px, transparent 1.5px);
  background-size: 10px 10px;
  z-index: 0;
  pointer-events: none;
}

.c-speakers__photo {
  display: block;
  position: relative;
  z-index: 1;
  width: 183px;
  height: 183px;
  object-fit: cover;
  object-position: top center;
  border-radius: 2px;
}

.c-speakers__photo--placeholder {
  background: #d0d5de;
  width: 183px;
  height: 183px;
}

/* ---- Text ---- */
.c-speakers__name {
  font-size: 15px;
  font-weight: 700;
  color: #1a2744;
  margin: 0 0 6px;
  line-height: 1.4;
  font-family: var(--font-family, sans-serif);
  max-width: 183px;
}

.c-speakers__role {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
  font-family: var(--font-family, sans-serif);
  max-width: 183px;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .c-speakers__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .c-speakers__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .c-speakers__grid {
    grid-template-columns: 1fr;
  }
}
