.text-xl {
    font-size: var(--text-xl);
}

.color-secondary {
    color: var(--secondary);
}
.color-secondary-black {
    color: var(--secondary-dark);
}

.color-alert {
    color: var(--alert);
}

.montserrat--title {
    font-family: Montserrat;
    font-weight: 800;
    font-size: 2.118rem;
    line-height: 10px;
    font-style: normal;
}

.montserrat--700,
.montserrat--800 {
    font-family: "Montserrat", sans-serif;
}

.montserrat--700 {
    font-weight: 700;
}

.montserrat--800 {
    font-weight: 800;
}

.font-playwrite-dk-loopet {
    font-family: "Playwrite DK Loopet", sans-serif;
    line-height: 100%;
    font-size: 1.176rem;
}

@media screen and (min-width: 1000px) {
  .montserrat--title {
    font-size: 4.235rem;
    line-height: 30px;
  }
  .font-playwrite-dk-loopet {
    font-size: 1.765rem;
    line-height: 55px;
  }
}

/*
 * Annotation
 */

.annotation-yellow {
  position: relative;
  padding-left: 1.5rem;
}

.annotation-yellow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 100%;
  background-color: var(--tertiary-light);
  border-radius: 2px;
}


/*
 * CTA
 */

.cta__link {
    font-family: Raleway, Arial, sans-serif;
    color: var(--color-neutral--1);
    font-size: var(--content-size);
    font-style: normal;
    font-weight: 800;
    line-height: 1.5;
    width: fit-content;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
    min-height: 2.5rem;
    position: relative;
    text-decoration: none;
    overflow: hidden;
    transition: filter 0.3s ease;
    display: flex;
    gap: 0.3rem;
}

.cta__link::before {
    content: '';
    display: inline-block;
    width: 11px;
    height: 13px;
    margin-right: 0.5em;
    background: url('../../roquecourbe/images/ckeditor/arrow-black.svg') no-repeat center/contain;
    vertical-align: middle;
}

.cta__link:hover {
    filter: brightness(0.75);
    cursor: pointer;
}

 .cta__link.cta--tertiary-dark {
    background: var(--tertiary-dark);
}
 .cta__link.cta--alert {
    background: var(--alert);
}


/*
 * Highlight blue
 */

.highlight-blue {
  position: relative;
  display: inline-block;
  font-weight: 700;
  z-index: 1;
}

.highlight-blue::before {
  content: "";
  position: absolute;
  top: 20px;
  left: -17px;
  width: 198.34px;
  height: 32.99px;
  background-color: #DFEBF8;
  transform: translateY(-50%) rotate(-4.75deg);
  opacity: 1;
  z-index: -1;
  clip-path: polygon(8% 0, 100% 0, 92% 100%, 0% 100%);
  border-radius: 10px;
}

