.published-faculty {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.published-faculty[hidden] {
  display: none;
}

.published-speaker {
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.published-speaker > img,
.published-speaker__initials {
  display: grid;
  place-items: center;
  width: 100%;
  height: 280px;
  object-fit: cover;
  background: linear-gradient(145deg, var(--navy-800), var(--teal-500));
  color: #fff;
  font-family: var(--font-display);
  font-size: 3rem;
}

.published-speaker__body {
  padding: 22px;
}

.published-speaker__country {
  margin: 0 0 8px;
  color: var(--teal-500);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.published-speaker h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.4rem;
}

.published-speaker__company {
  margin: 5px 0 15px;
  color: var(--ink-soft);
  font-weight: 700;
}

.published-speaker__session {
  min-height: 42px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: .82rem;
}

.published-speaker a {
  color: var(--teal-500);
  font-size: .76rem;
  font-weight: 800;
}

@media (max-width: 900px) {
  .published-faculty { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
  .published-faculty { grid-template-columns: 1fr; }
}
