/* ========================================
   PÁGINA CURSOS
======================================== */

/* Evitar márgenes automáticos entre secciones */
.entry-content.single-content > .wp-block-group {
  margin-block-start: 0 !important;
  margin-block-end: 0 !important;
}

.entry-content.single-content > p:empty {
  display: none;
}


/* ========================================
   HERO
======================================== */

.h5m-courses-hero {
  margin: 0;
  padding: clamp(85px, 9vw, 145px) 24px;
  background-color: #ffde59;
  color: #2c2c2c;
}

.h5m-courses-hero__inner {
  width: min(100%, 1280px);
  margin-inline: auto;
}

.h5m-courses-hero__grid {
  align-items: center !important;
  gap: clamp(48px, 7vw, 110px);
  margin-bottom: 0;
}

.h5m-courses-hero h1 {
  position: relative;
  margin: 0 0 52px;
  max-width: 720px;
  color: #2c2c2c;
  font-size: clamp(68px, 7.5vw, 116px);
  line-height: 0.88;
  letter-spacing: 0.01em;
}

.h5m-courses-hero h1::after {
  content: "";
  position: absolute;
  bottom: -26px;
  left: 0;
  width: 86px;
  height: 5px;
  border-radius: 999px;
  background-color: #2c2c2c;
}

.h5m-courses-hero p {
  max-width: 680px;
  margin: 0;
  color: #2c2c2c;
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.75;
}

.h5m-courses-hero__image {
  margin: 0;
}

.h5m-courses-hero__image img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(44, 44, 44, 0.3);
  border-radius: 16px;
}


/* ========================================
   APARTADOS DE LOS CURSOS
======================================== */

.h5m-course-section {
  margin: 0;
  padding: clamp(90px, 10vw, 150px) 24px;
}

.h5m-course-section__inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr);
  column-gap: clamp(60px, 9vw, 150px);
  row-gap: 24px;
  width: min(100%, 1280px);
  margin-inline: auto;
}

.h5m-course-section h2 {
  grid-column: 1;
  grid-row: 1 / span 4;
  margin: 0;
  font-size: clamp(58px, 6vw, 92px);
  line-height: 0.92;
}

.h5m-course-section p {
  grid-column: 2;
  max-width: 70ch;
  margin: 0;
  font-size: 17px;
  line-height: 1.85;
}


/* EGIPCIO CLÁSICO */
.h5m-course-section--classic {
  background-color: #faf8f4;
  color: #2c2c2c;
}

.h5m-course-section--classic h2,
.h5m-course-section--classic p {
  color: #2c2c2c;
}


/* COPTO */
.h5m-course-section--coptic {
  background-color: #2c2c2c;
  color: #faf8f4;
}

.h5m-course-section--coptic h2,
.h5m-course-section--coptic p {
  color: #faf8f4;
}

.h5m-course-section--coptic h2 {
  position: relative;
  padding-bottom: 34px;
}

.h5m-course-section--coptic h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 76px;
  height: 5px;
  border-radius: 999px;
  background-color: #ffde59;
}


/* ========================================
   INFORMACIÓN DE LOS CURSOS
======================================== */

.h5m-course-info {
  margin: 0;
  padding: clamp(85px, 9vw, 135px) 24px;
  background-color: #faf8f4;
  color: #2c2c2c;
}

.h5m-course-info__inner {
  width: min(100%, 900px);
  margin-inline: auto;
  text-align: center;
}

.h5m-course-info h2 {
  margin: 0 0 30px;
  color: #2c2c2c;
  font-size: clamp(50px, 6vw, 84px);
  line-height: 0.95;
}

.h5m-course-info p {
  max-width: 760px;
  margin: 0 auto;
  color: #2c2c2c;
  font-size: 17px;
  line-height: 1.85;
}

.h5m-course-info p + p {
  margin-top: 22px;
}

.h5m-course-info .wp-block-buttons {
  justify-content: center;
  margin-top: 38px;
}

.h5m-course-info .wp-block-button__link,
.h5m-course-info .wp-block-button__link:visited {
  min-height: 52px;
  padding: 14px 28px;
  border: 2px solid #2c2c2c;
  border-radius: 10px;
  background-color: #2c2c2c;
  color: #faf8f4 !important;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  line-height: 20px;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.h5m-course-info .wp-block-button__link:hover,
.h5m-course-info .wp-block-button__link:focus {
  background-color: #ffde59;
  color: #2c2c2c !important;
  transform: translateY(-2px);
}


/* ========================================
   TABLET Y MÓVIL
======================================== */

@media (max-width: 781px) {
  .h5m-courses-hero {
    padding: 72px 24px !important;
  }

  .h5m-course-info__inner{
    padding: 72px 24px !important;

  }

  .h5m-courses-hero__grid {
    gap: 48px;
  }

  .h5m-courses-hero h1 {
    margin-bottom: 46px;
    font-size: clamp(58px, 17vw, 82px);
  }

  .h5m-courses-hero__image img {
    border-radius: 12px;
  }

  .h5m-course-section {
    padding: 72px 24px;
  }

  .h5m-course-section__inner {
    grid-template-columns: 1fr;
    row-gap: 28px;
    padding: 72px 24px !important;
  }

  .h5m-course-section h2,
  .h5m-course-section p {
    grid-column: 1;
    grid-row: auto;
  }

  .h5m-course-section h2 {
    font-size: clamp(54px, 17vw, 76px);
  }

  .h5m-course-section p {
    font-size: 16px;
    line-height: 1.8;
  }

  .h5m-course-section--coptic h2 {
    padding-bottom: 30px;
  }

  .h5m-course-info {
    padding: 72px 24px;
  }

  .h5m-course-info p {
    font-size: 16px;
    line-height: 1.8;
  }

}