/* Webinar: Speaker Block */

.webinar-speaker {
  background-color: #fff;
  padding: 3rem 0;
}

.webinar-speaker__container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.webinar-speaker__photo-wrap {
  width: 96px;
}

.webinar-speaker__photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  background-color: #F5F7F7;
}

.webinar-speaker__eyebrow {
  display: block;
  font-family: "Source Code Pro", monospace;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  color: #4C6769;
  margin-bottom: 0.5rem;
}

.webinar-speaker__name {
  font-family: "Suisse Intl", Arial, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: #033438;
  margin: 0 0 0.25rem;
}

.webinar-speaker__title {
  font-family: "Suisse Intl", Arial, sans-serif;
  font-size: 15px;
  color: #4C6769;
  margin: 0 0 1rem;
}

.webinar-speaker__bio {
  font-family: "Suisse Intl", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: #2A4A4D;
  max-width: 640px;
}

.webinar-speaker__bio p {
  margin: 0 0 1em;
}

.webinar-speaker__bio p:last-child {
  margin-bottom: 0;
}

/* md: 768px */
@media (min-width: 768px) {
  .webinar-speaker {
    padding: 4rem 0;
  }
}

/* lg: 1024px — photo left, content right */
@media (min-width: 1024px) {
  .webinar-speaker__container {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem;
  }

  .webinar-speaker__photo-wrap {
    width: 140px;
  }

  .webinar-speaker__photo {
    width: 140px;
    height: 140px;
  }
}
