/* Text utility */
/* Mobile utility */
/* link hover utility */
/* Container utility mixin */
/* Container avec variable CSS */
/* Text content styles */
/* Centered content */
/* from... */
/* to... */
/* from... to... */
/* at... */
/* FONT WEIGHTS */
.content-col-mea {
  background: rgba(251, 191, 0, 0.3490196078);
}
.content-col-mea__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: flex-start;
}
.content-col-mea__title {
  margin: 0;
  text-align: center;
  width: 100%;
}
.content-col-mea__title p {
  font-size: 2rem;
  line-height: 1.09;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  font-family: "remora-sans-w1", "sans-serif";
  color: var(--wp--preset--color--txt-gray-dark);
}
.content-col-mea__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: start;
  width: 100%;
}
.content-col-mea__item {
  min-width: 0;
}
.content-col-mea__item-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}
.content-col-mea__star {
  display: inline-flex;
  color: var(--wp--preset--color--bg-school-yellow);
}
.content-col-mea__star svg {
  width: 1.125rem;
  height: 1.125rem;
  display: block;
}
.content-col-mea__star svg path {
  fill: #FBBF00;
}
.content-col-mea__item-title {
  font-family: "Inter", "sans-serif";
  font-size: 1.5rem;
  line-height: 1.25;
  font-style: normal;
  font-weight: 700;
  margin: 0;
  color: var(--wp--preset--color--txt-gray-dark);
  font-weight: 700;
  max-width: 18.75rem;
}
.content-col-mea__item-title {
  font-size: 24px;
}
@media screen and (min-width: 569px) {
  .content-col-mea__item-title {
    font-size: calc(24px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .content-col-mea__item-title {
    font-size: 1.5rem;
  }
}
.content-col-mea__item-text {
  font-family: "Inter", "sans-serif";
  font-size: 1rem;
  line-height: 1.375;
  font-style: normal;
  font-weight: 400;
  color: var(--wp--preset--color--txt-gray-dark);
}
.content-col-mea__item-text p {
  margin: 0;
}
.content-col-mea__item-text p + p {
  margin-top: 0.25rem;
}
.content-col-mea__item-text strong {
  font-weight: 700;
}
.content-col-mea__highlight {
  width: 100%;
  background-color: #FBBF00;
  border-radius: 1rem;
  padding: 2rem 2.5rem;
  text-align: center;
}
.content-col-mea__highlight-text p {
  margin: 0;
  font-family: "Inter", "sans-serif";
  font-size: 1.5rem;
  line-height: 1.25;
  font-style: normal;
  font-weight: 700;
  color: var(--wp--preset--color--txt-gray-dark);
  line-height: 1.875rem;
}
@media screen and (max-width: 991px) {
  .content-col-mea__inner {
    gap: 1.5rem;
  }
  .content-col-mea__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .content-col-mea__highlight {
    padding: 1.5rem 1.25rem;
  }
}