/* 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-industry-post-listing {
  margin-top: var(--grid-margin);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 991px) {
  .s-industry-post-listing {
    margin-top: -1.25rem;
    padding-bottom: 4rem;
  }
}
.s-industry-post-listing.has-bg-white-background-color {
  background: transparent;
}
.s-industry-post-listing__title {
  margin-bottom: 1.875rem;
  font-family: "Outfit", sans-serif;
  font-weight: 200;
  line-height: 1;
}
.s-industry-post-listing__title {
  font-size: 36px;
}
@media screen and (min-width: 569px) {
  .s-industry-post-listing__title {
    font-size: calc(36px + 20 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-industry-post-listing__title {
    font-size: 3.5rem;
  }
}
.s-industry-post-listing__content--dark {
  color: var(--wp--preset--color--txt-white);
}
.s-industry-post-listing__content--dark .s-industry-post-listing__title {
  color: var(--wp--preset--color--txt-white);
}
.s-industry-post-listing__content--light {
  color: var(--wp--preset--color--txt-black);
}
.s-industry-post-listing__content--light .s-industry-post-listing__title {
  color: var(--wp--preset--color--txt-black);
}
.s-industry-post-listing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.375rem;
}
.s-industry-post-listing__item {
  color: inherit;
  text-decoration: none;
  padding: 1.875rem;
  background-color: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(15px);
  border-radius: 0.25rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: none;
  overflow: hidden;
  transition: background-color 300ms cubic-bezier(0, 0, 0.2, 1);
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.5);
}
.s-industry-post-listing__item:hover, .s-industry-post-listing__item:focus, .s-industry-post-listing__item:visited {
  color: inherit;
}
.s-industry-post-listing__item:hover {
  background-color: rgba(255, 255, 255, 0.5);
  transition: background-color 300ms cubic-bezier(0, 0, 0.2, 1);
}
.s-industry-post-listing__content--light .s-industry-post-listing__item {
  border-color: transparent;
  background-color: rgba(0, 0, 0, 0.1);
}
.s-industry-post-listing__content--light .s-industry-post-listing__item:hover {
  background-color: rgba(0, 0, 0, 0.175);
}
.s-industry-post-listing__item::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 90%);
}
.s-industry-post-listing__content--light .s-industry-post-listing__item::before {
  display: none;
}
.s-industry-post-listing__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}
.s-industry-post-listing__content--light .s-industry-post-listing__item::after {
  display: none;
}
.s-industry-post-listing__item-icon-wrapper {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.5rem;
  background-color: var(--wp--preset--color--bg-pale-sky-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-industry-post-listing__content--light .s-industry-post-listing__item-icon-wrapper {
  background-color: var(--wp--preset--color--bg-white);
}
.s-industry-post-listing__item-icon-wrapper svg {
  fill: var(--wp--preset--color--bg-pale-sky-dark);
}
.s-industry-post-listing__item-icon {
  width: 0.694375rem;
  height: 0.694375rem;
}
.s-industry-post-listing__title-wrapper {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.375rem;
  transition: gap 300ms cubic-bezier(0, 0, 0.2, 1);
}
.s-industry-post-listing__item:hover .s-industry-post-listing__title-wrapper {
  gap: 1rem;
  transition: gap 300ms cubic-bezier(0, 0, 0.2, 1);
}
.s-industry-post-listing__card-title {
  font-family: "Outfit", sans-serif;
  font-weight: 300;
  line-height: 1.2;
  line-height: 1.4;
  color: inherit;
}
.s-industry-post-listing__card-title {
  font-size: 18px;
}
@media screen and (min-width: 569px) {
  .s-industry-post-listing__card-title {
    font-size: calc(18px + 2 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .s-industry-post-listing__card-title {
    font-size: 1.25rem;
  }
}
.s-industry-post-listing__arrow-wrapper {
  opacity: 0;
  transition: opacity 300ms cubic-bezier(0, 0, 0.2, 1);
}
.s-industry-post-listing__item:hover .s-industry-post-listing__arrow-wrapper {
  opacity: 1;
  transition: opacity 300ms cubic-bezier(0, 0, 0.2, 1);
}
.s-industry-post-listing__arrow-wrapper svg {
  fill: currentColor;
}
@media screen and (max-width: 1024px) {
  .s-industry-post-listing__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }
}
@media screen and (max-width: 991px) {
  .s-industry-post-listing__title {
    margin-bottom: 1.5rem;
  }
  .s-industry-post-listing__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }
  .s-industry-post-listing__item {
    min-width: 0;
    padding: 1rem;
  }
  .s-industry-post-listing__title-wrapper {
    gap: 0.75rem;
  }
  .s-industry-post-listing__arrow-wrapper {
    opacity: 1;
    flex-shrink: 0;
    position: absolute;
    top: calc(1rem + 1.5rem / 2);
    transform: translateY(-50%);
    right: 1rem;
  }
}
@media screen and (max-width: 580px) {
  .s-industry-post-listing__title {
    font-family: "Outfit", sans-serif;
    font-weight: 200;
    line-height: 1;
    margin-bottom: 1.25rem;
  }
  .s-industry-post-listing__title {
    font-size: 42px;
  }
}
@media screen and (max-width: 580px) and (min-width: 569px) {
  .s-industry-post-listing__title {
    font-size: calc(42px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (max-width: 580px) and (min-width: 1440px) {
  .s-industry-post-listing__title {
    font-size: 2.625rem;
  }
}
@media screen and (max-width: 580px) {
  .s-industry-post-listing__item {
    gap: 0.75rem;
  }
  .s-industry-post-listing__card-title {
    font-weight: 400;
    line-height: 1.3;
  }
  .s-industry-post-listing__card-title {
    font-size: 16px;
  }
}
@media screen and (max-width: 580px) and (min-width: 569px) {
  .s-industry-post-listing__card-title {
    font-size: calc(16px + 2 * (100vw - 569px) / 871);
  }
}
@media screen and (max-width: 580px) and (min-width: 1440px) {
  .s-industry-post-listing__card-title {
    font-size: 1.125rem;
  }
}