/* Webinar: Agenda Block */

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

.webinar-agenda--grey {
  background-color: #F5F7F7;
}

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

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

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

.webinar-agenda__card {
  background-color: #fff;
  border: 1px solid #DEE2E3;
  border-radius: 12px;
  padding: 8px 24px;
}

.webinar-agenda__row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px 0;
}

.webinar-agenda__row + .webinar-agenda__row {
  border-top: 1px solid #DEE2E3;
}

.webinar-agenda__number {
  flex-shrink: 0;
  font-family: "Suisse Intl", Arial, sans-serif;
  font-size: 16px;
  color: #4C6769;
}

.webinar-agenda__text {
  font-family: "Suisse Intl", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #033438;
  margin: 0;
}

.webinar-agenda__cta {
  margin-top: 1.5rem;
}

.webinar-agenda__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  background-color: #FF5900;
  color: #fff;
  font-family: "Source Code Pro", monospace;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.webinar-agenda__button:hover {
  background-color: #d94e1b;
}

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

  .webinar-agenda__heading {
    font-size: 34px;
  }

  .webinar-agenda__card {
    padding: 8px 32px;
  }
}

/* lg: 1024px — two-column layout, label left / card right */
@media (min-width: 1024px) {
  .webinar-agenda__container {
    flex-direction: row;
    gap: 3rem;
  }

  .webinar-agenda__label-col {
    flex: 0 0 32%;
    max-width: 32%;
  }

  .webinar-agenda__content-col {
    flex: 1;
  }
}
