/* 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 */
.s-grid-cards {
  position: relative;
  z-index: 5;
}
.s-grid-cards--bg-white {
  background-color: #ffffff;
}
.s-grid-cards--bg-blue-light {
  background-color: #bfe9ff;
}
.s-grid-cards--bg-blue-cta {
  background-color: #004e6a;
  color: var(--wp--preset--color--alteal-white, #ffffff);
}
.s-grid-cards--bg-blue-cta .s-grid-cards__item--bordered {
  border-color: rgba(255, 255, 255, 0.18);
}
.s-grid-cards--bg-blue-dark {
  background-color: #001a24;
  color: var(--wp--preset--color--alteal-white, #ffffff);
}
.s-grid-cards--bg-blue-dark .s-grid-cards__item--bordered {
  border-color: rgba(255, 255, 255, 0.18);
}
.s-grid-cards--bg-green-light {
  background-color: #ecffac;
}
.s-grid-cards--bg-green {
  background-color: #85cc1d;
}
.s-grid-cards--bg-mid-grey {
  background-color: #d5d5d5;
}
.s-grid-cards--bg-black {
  background-color: #000000;
  color: var(--wp--preset--color--alteal-white, #ffffff);
}
.s-grid-cards--bg-black .s-grid-cards__item--bordered {
  border-color: rgba(255, 255, 255, 0.18);
}
.s-grid-cards--bg-light-grey {
  background-color: #C8C8C8;
}
.s-grid-cards--bg-white {
  background-color: transparent;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-grid-cards__grid {
  display: grid;
  gap: 1.0625rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.s-grid-cards__grid--cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.s-grid-cards__grid--cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.s-grid-cards__grid--cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.s-grid-cards__grid--cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
@media screen and (min-width: 991px) and (max-width: 1279px) {
  .s-grid-cards__grid--cols-3, .s-grid-cards__grid--cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 991px) {
  .s-grid-cards__grid {
    gap: 1rem;
  }
  .s-grid-cards__grid--cols-1, .s-grid-cards__grid--cols-2, .s-grid-cards__grid--cols-3, .s-grid-cards__grid--cols-4 {
    grid-template-columns: 1fr;
  }
}

.s-grid-cards__item {
  position: relative;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  height: 100%;
  min-height: 18.625rem;
  padding: 2rem;
  border-radius: 1.5rem;
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.s-grid-cards__item:hover {
  transform: translateY(-0.25rem);
}
.s-grid-cards__item--blue-light {
  background-color: var(--wp--preset--color--alteal-blue-light, #bfe9ff);
}
.s-grid-cards__item--blue-cta {
  background-color: var(--wp--preset--color--alteal-blue-cta, #004e6a);
  color: var(--wp--preset--color--alteal-white, #ffffff);
}
.s-grid-cards__item--blue-dark {
  background-color: var(--wp--preset--color--alteal-blue-dark, #001a24);
  color: var(--wp--preset--color--alteal-white, #ffffff);
}
.s-grid-cards__item--green-light {
  background-color: var(--wp--preset--color--alteal-green-light, #ecffac);
}
.s-grid-cards__item--green {
  background-color: var(--wp--preset--color--alteal-green, #85cc1d);
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}
.s-grid-cards__item--white {
  background-color: var(--wp--preset--color--alteal-white, #ffffff);
}
.s-grid-cards__item--transparent {
  background-color: transparent;
}
.s-grid-cards__item--bordered {
  border: 1px solid rgba(0, 26, 36, 0.12);
}
.s-grid-cards__item--mid-grey {
  background-color: var(--wp--preset--color--alteal-mid-grey, #d5d5d5);
}
.s-grid-cards__item--black {
  background-color: var(--wp--preset--color--txt-black, #000000);
  color: var(--wp--preset--color--alteal-white, #ffffff);
}
.s-grid-cards__item--has-image .s-grid-cards__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.s-grid-cards__item--has-image .s-grid-cards__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.s-grid-cards__item--has-image .s-grid-cards__body {
  position: relative;
  z-index: 1;
  color: var(--wp--preset--color--alteal-white, #ffffff);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.s-grid-cards__item--has-icon .s-grid-cards__body {
  flex-direction: column;
}

.s-grid-cards__body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
}

.s-grid-cards__txt {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
  padding-right: 0;
}

.s-grid-cards__title {
  margin: 0;
  color: inherit;
}
.s-grid-cards__title--h2 {
  font-family: "Panton", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 3.125rem;
}
.s-grid-cards__title--h3 {
  font-family: "Panton", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2.3125rem;
}

.s-grid-cards__text {
  font-family: "Gotham", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.375rem;
  opacity: 0.7;
  margin: 0;
  color: inherit;
}

.s-grid-cards__pill {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: flex-end;
  width: 3rem;
  height: 3rem;
  border-radius: 2.5rem;
  overflow: hidden;
  isolation: isolate;
}
.s-grid-cards__pill::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  transform: scaleY(0);
  transform-origin: bottom center;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 0;
}
.s-grid-cards__pill svg {
  position: relative;
  z-index: 1;
  width: 1.5rem;
  height: 1.5rem;
  transform: rotate(320deg);
}

.s-grid-cards__pill--bg-white {
  background-color: var(--wp--preset--color--alteal-white, #ffffff);
}

.s-grid-cards__pill--arrow-white {
  color: var(--wp--preset--color--alteal-white, #ffffff);
}

.s-grid-cards__pill--hover-bg-white::before {
  background-color: var(--wp--preset--color--alteal-white, #ffffff);
}

.s-grid-cards__pill--bg-blue-light {
  background-color: var(--wp--preset--color--alteal-blue-light, #bfe9ff);
}

.s-grid-cards__pill--arrow-blue-light {
  color: var(--wp--preset--color--alteal-blue-light, #bfe9ff);
}

.s-grid-cards__pill--hover-bg-blue-light::before {
  background-color: var(--wp--preset--color--alteal-blue-light, #bfe9ff);
}

.s-grid-cards__pill--bg-blue-cta {
  background-color: var(--wp--preset--color--alteal-blue-cta, #004e6a);
}

.s-grid-cards__pill--arrow-blue-cta {
  color: var(--wp--preset--color--alteal-blue-cta, #004e6a);
}

.s-grid-cards__pill--hover-bg-blue-cta::before {
  background-color: var(--wp--preset--color--alteal-blue-cta, #004e6a);
}

.s-grid-cards__pill--bg-blue-dark {
  background-color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-grid-cards__pill--arrow-blue-dark {
  color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-grid-cards__pill--hover-bg-blue-dark::before {
  background-color: var(--wp--preset--color--alteal-blue-dark, #001a24);
}

.s-grid-cards__pill--bg-green-light {
  background-color: var(--wp--preset--color--alteal-green-light, #ecffac);
}

.s-grid-cards__pill--arrow-green-light {
  color: var(--wp--preset--color--alteal-green-light, #ecffac);
}

.s-grid-cards__pill--hover-bg-green-light::before {
  background-color: var(--wp--preset--color--alteal-green-light, #ecffac);
}

.s-grid-cards__pill--bg-green {
  background-color: var(--wp--preset--color--alteal-green, #85cc1d);
}

.s-grid-cards__pill--arrow-green {
  color: var(--wp--preset--color--alteal-green, #85cc1d);
}

.s-grid-cards__pill--hover-bg-green::before {
  background-color: var(--wp--preset--color--alteal-green, #85cc1d);
}

.s-grid-cards__pill--bg-mid-grey {
  background-color: var(--wp--preset--color--alteal-mid-grey, #d5d5d5);
}

.s-grid-cards__pill--arrow-mid-grey {
  color: var(--wp--preset--color--alteal-mid-grey, #d5d5d5);
}

.s-grid-cards__pill--hover-bg-mid-grey::before {
  background-color: var(--wp--preset--color--alteal-mid-grey, #d5d5d5);
}

.s-grid-cards__pill--bg-black {
  background-color: var(--wp--preset--color--txt-black, #000000);
}

.s-grid-cards__pill--arrow-black {
  color: var(--wp--preset--color--txt-black, #000000);
}

.s-grid-cards__pill--hover-bg-black::before {
  background-color: var(--wp--preset--color--txt-black, #000000);
}

.s-grid-cards__item:hover .s-grid-cards__pill::before {
  transform: scaleY(1);
}

@media (prefers-reduced-motion: reduce) {
  .s-grid-cards__pill::before {
    transition: none;
  }
}