.featured-seminar {
  margin-block: 100px 80px;
}

.featured-seminar > h2.heading-text {
  font-weight: 700;
  font-size: 33px;
  line-height: 1.5;
  margin: 0;
  margin-bottom: 40px;
}

.featured-seminar > .webinar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
  font-weight: 400;
  color: #000000;
  transition: all ease 0.1s;
}

{# left column #}
.webinar .container.poster img {
  display: flex;
  width: 100%;
  height: auto;
}

/* right column */
.details .title {
  display: flex;
  flex-flow: column;
  gap: 6px;
  margin-bottom: 14px;
  font-weight: 700;
}

.details .title h3 {
  margin: 0;
  font-size: 24px;
}

.details .title p {
  margin: 0;
  font-size: 18px;
}

.details ul.tags {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 26px;
}

.details ul.tags li {
  display: flex;
  color: #000000;
  background-color: #FFFFFF;
  padding: 2px 8px;
  line-height:  1.6;
}

.details ul.tags li.registration-status {
  color: #FFFFFF;
  font-weight: 700;
}

.details ul.tags li.registration-status.bg-red {
  background-color: #E81916;
}

.details ul.tags li.registration-status.bg-slate-gray {
  background-color: #999999;
} 

.webinar_schedule_venue {
  display: flex;
  flex-flow: column;
  gap: 12px;
}

.webinar_schedule_venue .row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
}

.webinar_schedule_venue .row span {
  display: inline-flex;
  align-items: center;
}

.webinar_schedule_venue .row span.icon {
  height: 20px;
  width: 20px;
}

.cta-button {
  grid-column: span 2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-button .button {
  display: flex;
  justify-content: center;
  align-items: center;  
  gap: 8px;
  background-color: #FFFFFF;
  padding: 14px 20px;
  text-decoration: none;
  color: #000000;
  font-weight: 700;
  width: 320px;
  transition: all ease 0.1s;
}

.featured-seminar > .webinar:hover .cta-button .button {
  color: #E81916;
}

.cta-button .text {
  line-height: 1.5;
  max-width: 245px;
  text-align: center;
  flex-grow: 1;
}

.cta-button .icon {
  width: max-content;
  height: max-content;
  transition: translate ease 0.1s;
}

.featured-seminar > .webinar:hover .cta-button .icon {
  translate: 4px 0;
}

/* utility classes */
.bg-lightgray {
  background-color: #F0F0E8;
}

@media (max-width: 1000px) {
  .featured-seminar {
    margin-block: 40px 80px;
  }
  
  .featured-seminar > .webinar {
    display: block;
  }
  
  .featured-seminar > .webinar > * + * {
    margin-top: 40px;
  }
  
  .cta-button {
    grid-column: span 1;
  }
  
  .cta-button a {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .featured-seminar > .webinar {
    padding: 15px;
  }
  
  .featured-seminar > .webinar > * + * {
    margin-top: 20px;
  }
  
  .cta-button .text {
    max-width: 100%;
  }
}