/* 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 */
.mesh-press-grid__inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.mesh-press-grid__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 991px) {
  .mesh-press-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .mesh-press-grid__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.mesh-press-grid-card__wrapper {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  padding: 1.5rem;
  background-color: var(--wp--preset--color--bg-secondary-lighter);
  color: var(--wp--preset--color--txt-gray-dark);
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.mesh-press-grid-card__wrapper:hover .mesh-press-grid-card__icon {
  opacity: 1;
}
.mesh-press-grid-card__top {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  justify-content: space-between;
}
.mesh-press-grid-card__content {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mesh-press-grid-card__source {
  font-family: "remora-sans-w1", "sans-serif";
  font-size: 0.9375rem;
  line-height: 1.6;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--wp--preset--color--txt-gray-dark);
  margin: 0;
}
.mesh-press-grid-card__title {
  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);
  margin: 0;
  line-height: 1.875rem;
}
.mesh-press-grid-card__excerpt {
  font-weight: 400;
  line-height: 1.5;
  color: var(--wp--preset--color--txt-gray-dark);
  margin: 0;
}
.mesh-press-grid-card__excerpt {
  font-size: 12px;
}
@media screen and (min-width: 569px) {
  .mesh-press-grid-card__excerpt {
    font-size: calc(12px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .mesh-press-grid-card__excerpt {
    font-size: 0.75rem;
  }
}
.mesh-press-grid-card__icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background-color: var(--wp--preset--color--bg-white);
  display: grid;
  place-items: center;
  transition: opacity 0.2s ease;
}
.mesh-press-grid-card__icon svg {
  width: 1.125rem;
  height: auto;
}
.mesh-press-grid-card__icon path {
  fill: var(--wp--preset--color--txt-gray-dark);
}
.mesh-press-grid__pagination-container {
  display: flex;
  justify-content: center;
}
.mesh-press-grid-pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.mesh-press-grid-pagination__pages {
  display: flex;
  gap: 0.5rem;
}
.mesh-press-grid-pagination__prev, .mesh-press-grid-pagination__next, .mesh-press-grid-pagination__page {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  display: grid;
  place-items: center;
  background-color: var(--wp--preset--color--bg-white);
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: var(--wp--preset--color--txt-gray-dark);
  font-family: "remora-sans-w1", "sans-serif";
  font-size: 0.9375rem;
  line-height: 1.6;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
}
.mesh-press-grid-pagination__prev.is-disabled, .mesh-press-grid-pagination__next.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}
.mesh-press-grid-pagination__page.is-active {
  background-color: var(--wp--preset--color--bg-primary);
  color: var(--wp--preset--color--txt-white);
}
.mesh-press-grid-pagination__page--ellipsis {
  border: none;
  background: none;
  cursor: default;
  width: auto;
  height: auto;
  font-weight: 400;
  letter-spacing: 2px;
}
.mesh-press-grid-pagination__page--ellipsis {
  font-size: 16px;
}
@media screen and (min-width: 569px) {
  .mesh-press-grid-pagination__page--ellipsis {
    font-size: calc(16px + 0 * (100vw - 569px) / 871);
  }
}
@media screen and (min-width: 1440px) {
  .mesh-press-grid-pagination__page--ellipsis {
    font-size: 1rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .mesh-press-grid-pagination__prev:hover, .mesh-press-grid-pagination__next:hover, .mesh-press-grid-pagination__page:not(.mesh-press-grid-pagination__page--ellipsis):hover {
    background-color: var(--wp--preset--color--bg-primary);
    color: var(--wp--preset--color--txt-white);
  }
}
@media screen and (max-width: 580px) {
  .mesh-press-grid__inner {
    gap: 2rem;
  }
  .mesh-press-grid-pagination__prev, .mesh-press-grid-pagination__next, .mesh-press-grid-pagination__page {
    width: 2.75rem;
    height: 2.75rem;
  }
  .mesh-press-grid-pagination__page--ellipsis {
    width: auto;
    height: auto;
  }
}