@charset "UTF-8";
/*!
 * Pyrene - Thème personnalisé pour Pyrénées Magazine
 */
.open-sans-large-bold {
  font-family: var(--wp--preset--font-family--open-sans);
  font-size: var(--wp--preset--font-size--large);
  font-weight: 700;
}

.open-sans-medium-bold, .hero__intro {
  font-family: var(--wp--preset--font-family--open-sans);
  font-size: var(--wp--preset--font-size--medium);
  font-weight: 700;
}

/* Structure principale */
.site-header {
  position: absolute;
  width: 100%;
  z-index: 100;
  background: transparent;
}

.header-container {
  max-width: 1475px;
  padding: 0px 1rem 0px 1rem;
}

.header-top {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100px;
}

.header-top-left,
.header-top-right {
  flex: 1;
  height: 100%;
  position: relative;
}

/* Centered logo */
.site-logo-header {
  position: relative;
  z-index: 3;
  margin: 0 20px;
}

.header-top-left::after,
.header-top-right::before {
  content: "";
  position: absolute;
  height: 1px;
  background-color: white;
  top: 72%;
  z-index: 1;
}

.header-top-left::after {
  right: 0;
  left: 0px;
}

.header-top-right::before {
  left: 0;
  right: 0px;
}

/* Position social icons above the line */
.header-social-icons {
  position: absolute;
  right: 20px;
  top: 60%;
  transform: translateY(-50%);
  z-index: 2;
}

.header-bottom {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-bottom nav {
  width: 100%;
}
.header-bottom nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .header-top {
    position: relative;
  }
  .header-social-icons {
    position: absolute;
    top: 0px;
    right: 0px;
    transform: none;
    width: 70px;
    justify-content: flex-start;
    z-index: 1000;
  }
}
/*!
 * Pyrene - Thème personnalisé pour Pyrénées Magazine
 */
.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 118vh;
  max-height: 1280px;
}
.hero__carousel {
  position: relative;
  width: 100%;
  height: 100%;
}
.hero__slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
.hero__slide--active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}
.hero__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero__image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: calc(88vh - 64px);
  padding: 2rem;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 30vh;
  z-index: 2;
}
.hero__intro {
  margin-bottom: 0rem;
  color: white;
}
@media (min-width: 768px) {
  .hero__intro {
    font-size: var(--wp--preset--font-size--large);
  }
}
.hero__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .hero__title {
    font-size: 80px;
  }
}
.hero__subtitle {
  font-family: var(--wp--preset--font-family--abeezee);
  font-size: var(--wp--preset--font-size--medium);
  margin-bottom: 0.5rem;
  color: white;
  margin-top: 0;
  letter-spacing: 1px;
  font-weight: 400;
}
@media (min-width: 768px) {
  .hero__subtitle {
    font-size: var(--wp--preset--font-size--xx-large);
  }
}
.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 8vh;
  font-family: var(--wp--preset--font-family--open-sans);
  font-weight: 700;
}
.hero__buttons .wp-element-button {
  width: auto;
}
@media (min-width: 768px) {
  .hero__buttons {
    flex-direction: row;
    gap: 3rem;
  }
}
.hero__control {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  z-index: 10;
  background: transparent;
  border: none;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  pointer-events: auto;
  text-decoration: none;
}
.hero__control:hover, .hero__control:focus {
  opacity: 1;
  outline: none;
}
.hero__control--prev {
  left: 1rem;
}
.hero__control--next {
  right: 1rem;
}
.hero__control-icon {
  width: 100%;
  height: 100%;
  stroke: #fff;
  stroke-width: 2;
}
.hero__author-credit {
  position: absolute;
  bottom: 10vh;
  font-size: var(--wp--preset--font-size--x-small);
}
@media (min-width: 768px) {
  .hero__author-credit {
    bottom: 18vh;
  }
}
.hero__indicators {
  position: absolute;
  bottom: 1vh;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
  left: 47%;
  right: auto;
}
@media (min-width: 768px) {
  .hero__indicators {
    bottom: 20vh;
    right: 2rem;
    left: auto;
  }
}
.hero__indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.3s ease;
}
.hero__indicator--active {
  background-color: #fff;
}
.hero__indicator:hover, .hero__indicator:focus {
  background-color: rgba(255, 255, 255, 0.8);
  outline: none;
}
.hero .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.hero-banner {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 80vh;
}
@media (min-width: 768px) {
  .hero-banner {
    min-height: 100vh;
  }
}
.hero-banner__container {
  position: relative;
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
}
.hero-banner__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-banner__image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
}
.hero-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-banner__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(180px + 2rem) 2rem 2rem 2rem;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero-banner__content {
    padding: calc(240px + 1rem) 4rem calc(6% + 2rem) 4rem;
  }
}
.hero-banner__title {
  background-color: var(--wp--preset--color--primary);
  padding: 8px 24px;
  margin-bottom: 1rem;
  margin-top: 0rem;
  font-family: var(--wp--preset--font-family--open-sans);
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--small);
  font-weight: 700;
}
@media (min-width: 768px) {
  .hero-banner__title {
    font-size: var(--wp--preset--font-size--large);
  }
}
.hero-banner__subtitle {
  font-family: var(--wp--preset--font-family--open-sans);
  font-size: var(--wp--preset--font-size--x-large);
  color: white;
  margin-top: 0;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .hero-banner__subtitle {
    font-size: var(--wp--preset--font-size--hero-title);
  }
}
.hero-banner__tags {
  font-family: var(--wp--preset--font-family--abeezee);
  font-size: var(--wp--preset--font-size--small);
  margin-bottom: 0.5rem;
  color: white;
  margin-top: 0;
  font-style: italic;
}
@media (min-width: 768px) {
  .hero-banner__tags {
    font-size: var(--wp--preset--font-size--abeezee-title);
  }
}
.hero-banner__buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}
.hero-banner__author-credit {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-size: 12px;
  opacity: 0.8;
}
.hero-banner .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.hero-article,
.hero-portrait {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 80vh;
}
@media (min-width: 768px) {
  .hero-article,
  .hero-portrait {
    min-height: 100vh;
  }
}
.hero-article__container,
.hero-portrait__container {
  position: relative;
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
}
.hero-article__image-container,
.hero-portrait__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-article__image-container::after,
.hero-portrait__image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
}
.hero-article__image,
.hero-portrait__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-article__content,
.hero-portrait__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(180px + 2rem) 2rem 2rem 2rem;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero-article__content,
  .hero-portrait__content {
    padding: calc(240px + 1rem) 4rem calc(6% + 2rem) 4rem;
  }
}
.hero-article__infos,
.hero-portrait__infos {
  display: flex;
  flex-direction: column;
  font-family: var(--wp--preset--font-family--open-sans);
  font-size: var(--wp--preset--font-size--medium);
  align-items: center;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .hero-article__infos,
  .hero-portrait__infos {
    flex-direction: row;
  }
}
.hero-article__categories,
.hero-portrait__categories {
  font-size: var(--wp--preset--font-size--x-small);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .hero-article__categories,
  .hero-portrait__categories {
    margin-bottom: 0px;
  }
}
@media (min-width: 1024px) {
  .hero-article__categories,
  .hero-portrait__categories {
    font-size: var(--wp--preset--font-size--large);
  }
}
.hero-article__date,
.hero-portrait__date {
  margin-right: 1rem;
  font-weight: 700;
}
.hero-article__category,
.hero-portrait__category {
  background-color: var(--wp--preset--color--primary);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.hero-article__category:hover,
.hero-portrait__category:hover {
  opacity: 0.9;
}
.hero-article__category:last-child,
.hero-portrait__category:last-child {
  margin-right: 12px;
}
.hero-article__title,
.hero-portrait__title {
  margin-bottom: 1rem;
  margin-top: 0;
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--x-large);
}
@media (min-width: 1024px) {
  .hero-article__title,
  .hero-portrait__title {
    font-size: var(--wp--preset--font-size--hero-title);
  }
}
.hero-article__tags,
.hero-portrait__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 1rem;
  justify-content: center;
  font-size: var(--wp--preset--font-size--medium);
  font-family: var(--wp--preset--font-family--abeezee);
}
@media (min-width: 768px) {
  .hero-article__tags,
  .hero-portrait__tags {
    margin-bottom: 0px;
    font-size: var(--wp--preset--font-size--xx-large);
  }
}
.hero-article__tag,
.hero-portrait__tag {
  color: #fff;
  text-decoration: none;
  text-transform: capitalize;
  opacity: 0.9;
}
.hero-article__tag:hover,
.hero-portrait__tag:hover {
  opacity: 1;
  text-decoration: underline;
}
.hero-article__portrait,
.hero-portrait__portrait {
  max-width: 300px;
  margin: 4rem auto 2rem;
}
@media (min-width: 768px) {
  .hero-article__portrait,
  .hero-portrait__portrait {
    max-width: 25%;
  }
}
.hero-article__portrait img,
.hero-portrait__portrait img {
  width: 100%;
  height: auto;
  display: block;
}
.hero-article__navigation,
.hero-portrait__navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}
.hero-article__nav,
.hero-portrait__nav {
  position: absolute;
  top: 55%;
  transform: translateY(-55%);
  color: white;
  z-index: 10;
  background: transparent;
  border: none;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  pointer-events: auto;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .hero-article__nav,
  .hero-portrait__nav {
    top: 50%;
  }
}
.hero-article__nav:hover, .hero-article__nav:focus,
.hero-portrait__nav:hover,
.hero-portrait__nav:focus {
  opacity: 1;
  outline: none;
}
.hero-article__nav--prev,
.hero-portrait__nav--prev {
  left: 0px;
}
@media (min-width: 1024px) {
  .hero-article__nav--prev,
  .hero-portrait__nav--prev {
    left: 24px;
  }
}
.hero-article__nav--next,
.hero-portrait__nav--next {
  right: 0px;
}
@media (min-width: 1024px) {
  .hero-article__nav--next,
  .hero-portrait__nav--next {
    right: 24px;
  }
}
.hero-article__nav-icon,
.hero-portrait__nav-icon {
  width: 72px;
  height: auto;
  stroke: #fff;
  stroke-width: 2;
}
.hero-article .screen-reader-text,
.hero-portrait .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

@media (min-width: 768px) {
  .hero-portrait__content {
    justify-content: flex-start;
    padding-top: 260px;
  }
}

.hero-hike {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 80vh;
}
@media (min-width: 768px) {
  .hero-hike {
    min-height: 100vh;
  }
}
.hero-hike__container {
  position: relative;
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
}
.hero-hike__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-hike__image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
}
.hero-hike__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-hike__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(180px + 2rem) 2rem 2rem 2rem;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero-hike__content {
    padding: calc(240px + 1rem) 4rem calc(6% + 2rem) 4rem;
  }
}
.hero-hike__infos {
  margin-top: auto;
  display: flex;
  font-family: var(--wp--preset--font-family--open-sans);
  font-size: var(--wp--preset--font-size--medium);
  align-items: center;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  .hero-hike__infos {
    margin-top: 0;
  }
}
.hero-hike__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-right: 64px;
}
.hero-hike__category {
  background-color: var(--wp--preset--color--primary);
  color: #fff;
  padding: 0.3rem 0.8rem;
  border-radius: 2px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}
.hero-hike__category:hover {
  opacity: 0.9;
}
.hero-hike__category:last-child {
  margin-right: 12px;
}
.hero-hike__difficulty {
  display: flex;
  align-items: center;
}
.hero-hike__difficulty img {
  height: 24px;
  margin: 0 2px;
}
.hero-hike__title {
  margin-bottom: 1rem;
  margin-top: 0;
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--large);
}
@media (min-width: 1024px) {
  .hero-hike__title {
    font-size: var(--wp--preset--font-size--hero-title);
  }
}
.hero-hike__subtitle {
  color: white;
  margin-bottom: 2rem;
  margin-top: 0;
  font-size: var(--wp--preset--font-size--large);
  font-family: var(--wp--preset--font-family--abeezee);
}
@media (min-width: 1024px) {
  .hero-hike__subtitle {
    font-size: var(--wp--preset--font-size--xx-large);
  }
}
.hero-hike__bottom {
  margin-top: auto;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .hero-hike__bottom {
    margin-bottom: auto;
  }
}
.hero-hike__meta {
  font-family: var(--wp--preset--font-family--abeezee);
  font-size: var(--wp--preset--font-size--medium);
  font-weight: 400;
  margin-bottom: 6px;
}
.hero-hike__credit {
  font-family: var(--wp--preset--font-family--open-sans);
  font-size: var(--wp--preset--font-size--large);
  text-transform: uppercase;
  font-weight: 700;
}
.hero-hike__navigation {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 5;
}
.hero-hike__nav {
  position: absolute;
  top: 55%;
  transform: translateY(-55%);
  color: white;
  z-index: 10;
  background: transparent;
  border: none;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  pointer-events: auto;
  text-decoration: none;
}
@media (min-width: 1024px) {
  .hero-hike__nav {
    top: 50%;
  }
}
.hero-hike__nav:hover, .hero-hike__nav:focus {
  opacity: 1;
  outline: none;
}
.hero-hike__nav--prev {
  left: 0px;
}
@media (min-width: 1024px) {
  .hero-hike__nav--prev {
    left: 24px;
  }
}
.hero-hike__nav--next {
  right: 0px;
}
@media (min-width: 1024px) {
  .hero-hike__nav--next {
    right: 24px;
  }
}
.hero-hike__nav-icon {
  width: 72px;
  height: auto;
  stroke: #fff;
  stroke-width: 2;
}
.hero-hike .screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal;
}

.hero-hikes {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 80vh;
}
@media (min-width: 768px) {
  .hero-hikes {
    min-height: 100vh;
  }
}
.hero-hikes__container {
  position: relative;
  width: 100%;
  min-height: inherit;
  display: flex;
  align-items: center;
}
.hero-hikes__image-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.hero-hikes__image-container::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.4));
}
.hero-hikes__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-hikes__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: calc(180px + 2rem) 2rem 2rem 2rem;
  color: #fff;
  max-width: 800px;
  margin: 0 auto;
  z-index: 2;
}
@media (min-width: 768px) {
  .hero-hikes__content {
    padding: calc(240px + 1rem) 4rem calc(6% + 2rem) 4rem;
  }
}
.hero-hikes__logo {
  max-height: 230px;
  width: 100%;
}
@media (min-width: 768px) {
  .hero-hikes__logo {
    max-height: 100%;
  }
}
.hero-hikes__credit {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
}
.hero-hikes__credit-text {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.9rem;
  color: white;
}
.hero-hikes__credit-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
}
.hero-hikes__subtitle {
  color: var(--wp--preset--color--primary, #cc0000);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}
.hero-hikes__title {
  font-size: 2rem;
  font-weight: normal;
  color: #cc0000;
}
@media (min-width: 768px) {
  .hero-hikes__title {
    font-size: 3rem;
  }
}

.badge, .valleys .taxonomy-category, .articles .taxonomy-category, .community .featured-portrait .taxonomy-category, .hikes .taxonomy-category {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background-color: white !important;
}
.badge a, .valleys .taxonomy-category a, .articles .taxonomy-category a, .community .featured-portrait .taxonomy-category a, .hikes .taxonomy-category a {
  background-color: var(--wp--preset--color--primary);
  color: white;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
}
.badge a:last-child, .valleys .taxonomy-category a:last-child, .articles .taxonomy-category a:last-child, .community .featured-portrait .taxonomy-category a:last-child, .hikes .taxonomy-category a:last-child {
  margin-right: 8px;
}

.read-more, .category .wp-block-read-more,
.tag .wp-block-read-more,
.author .wp-block-read-more,
.post-type-archive-magazine .wp-block-read-more,
.search-results .wp-block-read-more, .valleys .wp-block-read-more, .articles .featured-article__column .wp-block-post-excerpt__more-link,
.articles .featured-article__column .wp-block-read-more, .articles .featured-articles .wp-block-read-more, .community .featured-portrait .wp-block-read-more, .hikes .wp-block-post-excerpt__more-link, .btn-buy, .calendar-news__button {
  display: inline-block;
  background-color: var(--wp--preset--color--primary);
  max-width: 250px;
  width: 80%;
  color: white;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 24px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s ease;
}
.read-more:hover, .category .wp-block-read-more:hover,
.tag .wp-block-read-more:hover,
.author .wp-block-read-more:hover,
.post-type-archive-magazine .wp-block-read-more:hover,
.search-results .wp-block-read-more:hover, .valleys .wp-block-read-more:hover, .articles .featured-article__column .wp-block-post-excerpt__more-link:hover,
.articles .featured-article__column .wp-block-read-more:hover, .articles .featured-articles .wp-block-read-more:hover, .community .featured-portrait .wp-block-read-more:hover, .hikes .wp-block-post-excerpt__more-link:hover, .btn-buy:hover, .calendar-news__button:hover {
  background-color: hsl(358, 83%, 42%);
}

.author:not(body.author), .single-post .pyrene-post .wp-block-post-author-name:not(body.author),
.single-portrait .pyrene-portrait .wp-block-post-author-name:not(body.author),
.single-randonnee .pyrene-hike .wp-block-post-author-name:not(body.author),
.single-magazine .pyrene-magazine .wp-block-post-author-name:not(body.author), .valleys .wp-block-post-author__name:not(body.author), .articles .wp-block-post-author__name:not(body.author), .community .featured-portrait .wp-block-post-author-name:not(body.author), .hikes .wp-block-post-author__name:not(body.author),
.wp-block-post-author__name {
  margin-top: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--tiny) !important;
}
.author:not(body.author)::before, .single-post .pyrene-post .wp-block-post-author-name:not(body.author)::before,
.single-portrait .pyrene-portrait .wp-block-post-author-name:not(body.author)::before,
.single-randonnee .pyrene-hike .wp-block-post-author-name:not(body.author)::before,
.single-magazine .pyrene-magazine .wp-block-post-author-name:not(body.author)::before, .valleys .wp-block-post-author__name:not(body.author)::before, .articles .wp-block-post-author__name:not(body.author)::before, .community .featured-portrait .wp-block-post-author-name:not(body.author)::before, .hikes .wp-block-post-author__name:not(body.author)::before,
.wp-block-post-author__name::before {
  content: "PAR ";
}

.calendar-news {
  background-color: #000;
  color: #fff;
  padding: 2rem;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.calendar-news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.calendar-news > * {
  position: relative;
  z-index: 2;
}
.calendar-news__header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.calendar-news__title {
  font-family: var(--wp--preset--font-family--open-sans);
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: white;
  font-size: var(--wp--preset--font-size--large);
}
@media (min-width: 768px) {
  .calendar-news__title {
    font-size: var(--wp--preset--font-size--large);
  }
}
.calendar-news__month-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .calendar-news__month-nav {
    width: 70%;
    position: relative;
    margin: 0 auto;
  }
}
.calendar-news__month-title {
  color: white;
  font-weight: 100;
  margin: 0 1.5rem;
  font-family: var(--wp--preset--font-family--open-sans);
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--xxx-large);
}
@media (min-width: 768px) {
  .calendar-news__month-title {
    font-size: var(--wp--preset--font-size--hero-title);
  }
}
.calendar-news__nav-button {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  position: absolute;
}
.calendar-news__nav-button:first-child {
  left: -24px;
}
.calendar-news__nav-button:last-child {
  right: -24px;
}
.calendar-news__nav-button:hover, .calendar-news__nav-button:focus {
  color: var(--wp--preset--color--primary);
}
.calendar-news__nav-button:focus {
  outline: 2px solid var(--wp--preset--color--primary);
  outline-offset: 2px;
}
.calendar-news__calendar {
  margin-bottom: 2rem;
}
.calendar-news__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .calendar-news__days {
    grid-template-columns: repeat(14, 1fr);
  }
}
@media (min-width: 1280px) {
  .calendar-news__days {
    grid-template-columns: repeat(31, 1fr);
  }
}
.calendar-news__day {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 1px solid #fff;
  background-color: transparent;
  color: #fff;
  font-family: var(--wp--preset--font-family--open-sans);
  font-size: 0.875rem;
  cursor: default;
}
.calendar-news__day--has-post {
  background-color: #fff;
  color: #000;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.calendar-news__day--today {
  background-color: var(--wp--preset--color--primary);
  color: #fff;
  border: none;
  font-weight: bold;
}
.calendar-news__content {
  min-height: 300px;
  margin-bottom: 2rem;
  background-color: white;
  padding: 1.5rem;
}
@media (min-width: 1024px) {
  .calendar-news__content {
    max-width: 70%;
    margin: 0 auto;
  }
}
.calendar-news__article {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .calendar-news__article {
    flex-direction: row;
    gap: 2rem;
  }
}
.calendar-news__image-container {
  flex: 0 0 100%;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .calendar-news__image-container {
    flex: 0 0 45%;
    margin-bottom: 0;
  }
}
.calendar-news__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 400px;
}
.calendar-news__article-content {
  flex: 1;
}
.calendar-news__category {
  margin-bottom: 0.75rem;
}
.calendar-news__category-label {
  display: inline-block;
  background-color: var(--wp--preset--color--primary);
  color: #fff;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  font-family: var(--wp--preset--font-family--open-sans);
}
.calendar-news__article-title {
  font-family: var(--wp--preset--font-family--open-sans);
  font-size: var(--wp--preset--font-size--large);
  margin-top: 0;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .calendar-news__article-title {
    font-size: var(--wp--preset--font-size--x-large);
  }
}
.calendar-news__article-excerpt {
  margin-bottom: 1.5rem;
  font-family: var(--wp--preset--font-family--abeezee);
}
.calendar-news__article-excerpt p {
  margin-top: 0;
  margin-bottom: 1rem;
}
.calendar-news__article-excerpt p:last-child {
  margin-bottom: 0;
}
.calendar-news__article-action {
  margin-top: 1rem;
  text-align: center;
}
@media (min-width: 768px) {
  .calendar-news__article-action {
    text-align: start;
  }
}
.calendar-news__image-credit {
  font-size: 0.75rem;
  text-align: right;
  opacity: 0.7;
  margin-top: 0.5rem;
}
.calendar-news__footer {
  margin-top: 2rem;
  text-align: center;
  font-style: italic;
  font-size: 0.875rem;
  opacity: 0.8;
}
.calendar-news__no-content {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  text-align: center;
}
.calendar-news__loading {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  text-align: center;
}

body:not(.home) .calendar-news__header {
  margin-top: 30vh;
}

#sib_signup_form_1, #sib_signup_form_2 {
  display: flex;
  width: 100%;
  gap: 12px;
  flex-direction: column;
}
#sib_signup_form_1 .sib-email-area, #sib_signup_form_2 .sib-email-area {
  font-size: 0;
  margin: 0;
  flex-grow: 1;
}
#sib_signup_form_1 .sib-email-area input[type=email], #sib_signup_form_2 .sib-email-area input[type=email] {
  width: 80%;
  padding: 12px 15px;
  background: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
}
#sib_signup_form_1 .sib-email-area input[type=email]::placeholder, #sib_signup_form_2 .sib-email-area input[type=email]::placeholder {
  color: #999;
  text-align: center;
}
#sib_signup_form_1 .sib_signup_box_inside_1, #sib_signup_form_1 .sib_signup_box_inside_2, #sib_signup_form_2 .sib_signup_box_inside_1, #sib_signup_form_2 .sib_signup_box_inside_2 {
  display: flex;
  width: 90%;
  flex-direction: column;
  padding: 0 12px;
  gap: 24px;
}
#sib_signup_form_1 p:nth-of-type(3), #sib_signup_form_2 p:nth-of-type(3) {
  margin: 0;
}
#sib_signup_form_1 p:nth-of-type(3) .sib-default-btn, #sib_signup_form_2 p:nth-of-type(3) .sib-default-btn {
  background-color: black;
  color: white;
  border: none;
  border-radius: 25px;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  min-width: 240px;
  white-space: nowrap;
}
#sib_signup_form_1 .sib-CODE_POSTAL-area, #sib_signup_form_2 .sib-CODE_POSTAL-area {
  font-size: 0;
  margin: 0;
  flex-grow: 1;
}
#sib_signup_form_1 .sib-CODE_POSTAL-area input[type=text], #sib_signup_form_2 .sib-CODE_POSTAL-area input[type=text] {
  width: 80%;
  padding: 12px 15px;
  background: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
}
#sib_signup_form_1 .sib-CODE_POSTAL-area input[type=text]::placeholder, #sib_signup_form_2 .sib-CODE_POSTAL-area input[type=text]::placeholder {
  color: #999;
  text-align: center;
}
#sib_signup_form_1 .sib-CODE_POSTAL-area label, #sib_signup_form_2 .sib-CODE_POSTAL-area label {
  display: none;
}

.premium-content-preview {
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 40px;
}
.premium-content-preview .content-fade {
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
  height: 240px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 60%, rgb(255, 255, 255) 100%);
  pointer-events: none;
}
@media (min-width: 1024px) {
  .premium-content-preview {
    padding-bottom: 80px;
  }
  .premium-content-preview .content-fade {
    bottom: 80px;
  }
}

.premium-content-cta {
  margin-top: 20px;
  margin-bottom: 32px;
}
.premium-content-cta .subscription-message p {
  color: var(--wp--preset--color--primary);
  text-transform: uppercase;
  text-align: center;
  font-family: var(--wp--preset--font-family--open-sans);
  font-weight: 700;
  font-size: var(--wp--preset--font-size--large);
  position: relative;
  width: fit-content;
  margin: 0 auto 32px;
}
.premium-content-cta .subscription-text::before {
  content: url("../images/lock.svg");
  color: var(--wp--preset--color--primary);
  margin: 0px 1rem;
  width: 24px;
}
.premium-content-cta .subscription-text::after {
  content: url("../images/lock.svg");
  color: var(--wp--preset--color--primary);
  margin: 0px 1rem;
  width: 24px;
}
.premium-content-cta .subscription-options {
  display: flex;
  flex-direction: column;
  gap: 32px;
  background-color: var(--wp--preset--color--primary);
  padding: 24px;
  align-items: center;
}
.premium-content-cta .subscription-options__choices {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media (min-width: 1024px) {
  .premium-content-cta .subscription-options__choices {
    flex-direction: row;
    justify-content: center;
    gap: 62px;
  }
}
.premium-content-cta .subscription-options .option {
  border-radius: 6px;
  padding: 20px;
  color: #fff;
  background-color: transparent;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 24px;
}
@media (min-width: 1024px) {
  .premium-content-cta .subscription-options .option {
    flex: 1 1 0;
  }
}
.premium-content-cta .subscription-options .option__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.premium-content-cta .subscription-options .option .duration {
  font-size: var(--wp--preset--font-size--medium);
  font-family: var(--wp--preset--font-family--abeezee);
  position: relative;
}
.premium-content-cta .subscription-options .option .duration::after {
  content: url("../images/wave.svg");
  color: white;
  position: absolute;
  right: -32px;
  top: 0;
}
.premium-content-cta .subscription-options .option .price {
  font-weight: 700;
  margin: 8px 0 16px;
  font-family: var(--wp--preset--font-family--abeezee);
  font-size: var(--wp--preset--font-size--medium);
}
@media (min-width: 768px) {
  .premium-content-cta .subscription-options .option .price {
    font-size: var(--wp--preset--font-size--xx-large);
  }
}
.premium-content-cta .subscription-options .option .subscribe-button {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 12px 18px;
  border-radius: 32px;
  min-width: 120px;
  text-decoration: none;
  font-weight: 600;
}
.premium-content-cta .subscription-options .option .subscribe-button:hover {
  background-color: #fff;
  color: #000;
}
.premium-content-cta .subscription-options .option--login {
  padding: 0;
  border: none;
  gap: 0;
}
.premium-content-cta .subscription-options .option--login::before {
  content: none;
}
.premium-content-cta .subscription-options .option--login .subscribe-button {
  margin-top: 0;
}
.premium-content-cta .option--viewpay button {
  margin-top: 12px !important;
  cursor: pointer;
  border: none;
}

@media (max-width: 767px) {
  .site-logo-header .custom-logo {
    width: 207.5px !important;
  }
}

@media (max-width: 767px) {
  .site-header .header-container .header-bottom {
    position: absolute;
    top: 84px;
    left: 0px;
  }
}

@media (max-width: 767px) {
  .wp-block-navigation__responsive-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }
  .wp-block-navigation__responsive-container.is-menu-open {
    transform: translateX(0);
  }
  .wp-block-navigation__responsive-container-open {
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  .wp-block-navigation__responsive-container-open svg {
    width: 32px;
    height: 32px;
    fill: #fff;
  }
  .wp-block-navigation__responsive-container-close {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 8px;
    background: transparent;
    border: none;
    cursor: pointer;
  }
  .wp-block-navigation__responsive-container-close svg {
    width: 32px;
    height: 32px;
    fill: #000;
  }
  .wp-block-navigation__responsive-dialog {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 64px 24px 24px;
  }
  .wp-block-navigation__container {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .wp-block-navigation .wp-block-navigation__responsive-container .wp-block-navigation-item {
    list-style: none;
  }
  .wp-block-navigation .wp-block-navigation__responsive-container .wp-block-navigation-item__content {
    display: block;
    font-size: 24px;
    color: #000 !important;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }
  .wp-block-navigation .wp-block-navigation__responsive-container .wp-block-navigation-item__content:hover {
    opacity: 0.7;
  }
}

.wp-block-navigation-item__content[href="#search"] {
  border: 1px solid white;
  padding: 0.5rem 1rem;
  border-radius: 50px;
  transition: all 0.3s ease;
}
.wp-block-navigation-item__content[href="#search"]:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.wp-block-search {
  display: none;
  position: fixed;
  top: 100%;
  right: 0;
  z-index: 100001;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 1.5rem;
  border-radius: 5px;
  margin-top: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  width: 300px;
  max-width: 90vw;
}
.wp-block-search.is-active {
  display: block;
  animation: fadeIn 0.2s ease-in-out;
}
.wp-block-search .wp-block-search__inside-wrapper {
  display: flex;
  border-bottom: 1px solid white;
}
.wp-block-search .wp-block-search__input {
  background: transparent;
  border: none;
  color: white;
  padding: 0.5rem 0;
  width: 100%;
}
.wp-block-search .wp-block-search__input:focus {
  outline: none;
}
.wp-block-search .wp-block-search__input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}
.wp-block-search .wp-block-search__button {
  background: transparent !important;
  border: none;
  color: white;
  padding: 0.5rem;
  cursor: pointer;
}
.wp-block-search .wp-block-search__button .search-icon {
  fill: white;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.badge,
.taxonomy-category {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background-color: white !important;
}
.badge .wp-block-post-terms__separator,
.taxonomy-category .wp-block-post-terms__separator {
  margin: auto 4px;
  color: #666;
}
.badge a,
.taxonomy-category a {
  background-color: var(--wp--preset--color--primary);
  color: white;
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
}
.badge a:last-child,
.taxonomy-category a:last-child {
  margin-right: 8px;
}
.badge a[href*="/category/actus/"],
.taxonomy-category a[href*="/category/actus/"] {
  background-color: var(--wp--preset--color--primary);
}
.badge a[href*="/category/non-classe/"],
.taxonomy-category a[href*="/category/non-classe/"] {
  background-color: #e2b224;
}
.badge a[href*="/category/reportage/"],
.taxonomy-category a[href*="/category/reportage/"] {
  background-color: #548b40;
}
.badge a[href*="/category/portrait/"],
.taxonomy-category a[href*="/category/portrait/"] {
  background-color: #486cb7;
}
.badge a[href*="/category/randonnee/"],
.taxonomy-category a[href*="/category/randonnee/"] {
  background-color: #548b40;
}
.badge a[href*="/category/en-rando/"],
.taxonomy-category a[href*="/category/en-rando/"] {
  background-color: #548b40;
}

.is-premium-content .badge,
.is-premium-content .taxonomy-category {
  margin-left: 32px;
}

.wp-block-post.is-premium-content {
  position: relative;
}
.wp-block-post.is-premium-content .taxonomy-category {
  position: relative;
}
.wp-block-post.is-premium-content .taxonomy-category::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -24px;
  width: 24px;
  height: 24px;
  background-image: url("../images/lock.svg");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 5;
  filter: brightness(0);
}

.wp-block-query-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 2rem;
}

.wp-block-query-pagination .page-numbers {
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  background-color: #f5f5f5;
  color: #222;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
}

.wp-block-query-pagination .page-numbers:hover {
  background-color: #e0e0e0;
}

.wp-block-query-pagination .page-numbers.current {
  background-color: var(--wp--preset--color--primary);
  color: #fff;
  font-weight: bold;
  cursor: default;
}

#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #f1f1f1;
  padding: 15px;
  text-align: center;
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#cookie-consent-banner p {
  margin: 0;
  flex-grow: 1;
  text-align: left;
  padding-right: 15px;
}
#cookie-consent-banner a {
  color: #0066cc;
  text-decoration: underline;
}
#cookie-consent-banner button {
  margin-left: 10px;
  padding: 8px 15px;
  background-color: #548b40;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
#cookie-consent-banner button[data-action=refuse] {
  background-color: var(--wp--preset--color--primary);
}
#cookie-consent-banner button:hover {
  opacity: 0.9;
}

.photographer-credit {
  display: block;
  margin-bottom: 1rem;
  font-size: var(--wp--preset--font-size--tiny);
}

.single.single-post .photographer-credit {
  display: block;
  text-align: center;
  margin: 0 auto;
}

.wp-block-post-author:has(+ .photographer-credit) .wp-block-post-author__name {
  margin-bottom: 0.5rem !important;
}

/**
 * Styles pour le bloc Odia Player
 * Lecteur audio intégré dans les articles
 */
.odia-player-container {
  margin: 20px 0;
  border-radius: 8px;
  background: #f8f9fa;
  overflow: hidden;
}
@media (min-width: 768px) {
  .odia-player-container {
    margin: 16px 0;
  }
}

.odia-player-header {
  padding: 10px 12px;
  background: linear-gradient(135deg, var(--wp--preset--color--primary) 0%, #c31a1f 100%);
  color: white;
  font-family: var(--wp--preset--font-family--open-sans, sans-serif);
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  .odia-player-header {
    padding: 12px 16px;
    font-size: 14px;
  }
}

.odia-player-icon {
  font-size: 16px;
  color: #cedb2b;
}

.odia-player-wrapper {
  padding: 0;
  background: white;
}

.odia-player-iframe {
  display: block;
  border: none;
  width: 100%;
  min-height: 120px;
}

/* Accessibilité */
@media (prefers-reduced-motion: reduce) {
  .odia-player-container {
    transition: none;
  }
}
.magazines {
  max-width: 100%;
  background-color: white;
  margin: 0 auto;
  margin-top: 0;
  padding: 12px 0;
  z-index: 2;
  margin-bottom: 64px;
}
@media (min-width: 1024px) {
  .magazines {
    max-width: 1280px;
  }
}
.magazines__previews {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  margin-top: 8%;
  flex-direction: column;
}
.magazines__grid {
  position: relative;
  margin-top: 1.25em;
}
@media (min-width: 1024px) {
  .magazines__grid {
    margin-top: -8%;
  }
}
.magazines__grid::before {
  content: url("../images/next.svg");
  position: absolute;
  height: 50px;
  width: auto;
  left: -50px;
  bottom: calc(50% - 50px);
  z-index: 2;
}
@media (min-width: 1024px) {
  .magazines__grid::before {
    bottom: 0px;
  }
}
.magazines__grid ul {
  gap: 12px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 150px;
}
@media (min-width: 1024px) {
  .magazines__grid ul {
    display: flex;
    max-width: inherit;
    gap: 24px;
  }
}
.magazines__link a {
  position: relative;
  text-decoration: none;
}
.magazines__link a::before {
  content: url("../images/mags.svg");
  position: absolute;
  height: 50px;
  width: auto;
  left: -50px;
  z-index: 2;
}

.magazine-featured {
  padding: 0 4%;
}
@media (min-width: 768px) {
  .magazine-featured {
    padding: 0 8%;
  }
}
.magazine-featured__columns {
  gap: 0px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .magazine-featured__columns {
    flex-direction: row;
  }
}
.magazine-featured__column--last {
  display: flex;
  flex-direction: column;
}
.magazine-featured__title {
  width: fit-content;
  margin-bottom: 24px;
  display: flex;
  margin: 0 auto;
  padding: 8px 24px;
}
@media (min-width: 768px) {
  .magazine-featured__title {
    margin: 0;
  }
}
.magazine-featured__title h3 {
  font-size: var(--wp--preset--font-size--x-large);
  font-family: var(--wp--preset--font-family--abeezee);
  margin-right: 12px;
  display: inline;
}
@media (min-width: 768px) {
  .magazine-featured__title h3 {
    font-size: var(--wp--preset--font-size--xx-large);
  }
}
.magazine-featured__title a {
  text-decoration: none;
}
@media (min-width: 768px) {
  .magazine-featured__title .taxonomy-magazine_tag {
    padding-top: 1.2rem;
  }
}
.magazine-featured .wp-block-post-excerpt {
  margin-bottom: 24px;
}
.magazine-featured .wp-block-buttons {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}
@media (min-width: 768px) {
  .magazine-featured .wp-block-buttons {
    justify-content: space-between;
    flex-direction: row;
  }
}

@media (min-width: 1024px) {
  .home .magazines {
    margin-top: -8%;
  }
}

.btn-buy {
  margin-top: 8px;
}

.hikes {
  position: relative;
  z-index: 0;
}
.hikes .taxonomy-category {
  margin-bottom: 8px;
}
.hikes .taxonomy-post_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
  text-decoration: underline;
}
.hikes .taxonomy-post_tag a {
  text-decoration: none;
}
.hikes .taxonomy-post_tag a::before {
  content: " #";
}
.hikes__container {
  padding: 24px;
}
.hikes .wp-block-post-terms__separator {
  display: none;
}
.hikes .wp-block-post-excerpt__more-link {
  margin-top: 16px;
}
.hikes__not-featured {
  background-color: white;
  padding: 24px;
}
.hikes__not-featured .wp-block-post {
  margin-bottom: 32px;
}
.hikes__not-featured .wp-block-post > .wp-block-columns {
  margin-bottom: 0;
  gap: 0;
}
.hikes__not-featured .wp-block-post .wp-block-columns .wp-block-column:last-of-type {
  padding: 2px 24px;
}
.hikes__not-featured .wp-block-post-title {
  margin: 4px 0;
}
.hikes figure.wp-block-post-featured-image {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.hikes figure.wp-block-post-featured-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  object-position: center;
}

.whynot, .pyrene-team__team .wp-block-buttons .wp-block-button .wp-block-button__link, .community .portrait__more .wp-block-buttons .wp-block-button .wp-block-button__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--wp--preset--color--primary);
  color: white;
  text-align: center;
  padding: 20px 56px;
  padding-top: 64px;
  text-transform: uppercase;
  position: relative;
  font-weight: bold;
}
.whynot:hover, .pyrene-team__team .wp-block-buttons .wp-block-button .wp-block-button__link:hover, .community .portrait__more .wp-block-buttons .wp-block-button .wp-block-button__link:hover {
  background-color: color-mix(in srgb, var(--wp--preset--color--primary), black 15%);
  transition: all 0.3s ease-in-out;
}
.whynot::before, .pyrene-team__team .wp-block-buttons .wp-block-button .wp-block-button__link::before, .community .portrait__more .wp-block-buttons .wp-block-button .wp-block-button__link::before {
  content: "+";
  font-size: 24px;
  font-weight: normal;
  position: absolute;
  top: 30%;
  line-height: 1;
  border-radius: 100%;
  padding: 5px 10px;
  border: 1px solid white;
}

.community {
  margin: 24px auto;
  padding: 0 24px;
}
.community__headings {
  margin-bottom: 32px;
}
.community .featured-portrait {
  margin: 32px 0;
}
@media (min-width: 1024px) {
  .community .featured-portrait {
    margin: 64px 0;
  }
}
.community .featured-portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 100%;
}
.community .featured-portrait img:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}
.community .featured-portrait .taxonomy-category {
  margin-bottom: 8px;
}
.community .featured-portrait .taxonomy-post_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
  text-decoration: underline;
}
.community .featured-portrait .taxonomy-post_tag a {
  text-decoration: none;
}
.community .featured-portrait .taxonomy-post_tag a::before {
  content: " #";
}
.community .featured-portrait__content {
  position: relative;
}
.community .featured-portrait h2 {
  font-size: var(--wp--preset--font-size--xx-large);
  margin: 8px 0;
}
@media (min-width: 768px) {
  .community .featured-portrait h2 {
    font-size: var(--wp--preset--font-size--hero-title);
  }
}
.community .featured-portrait .wp-block-post-excerpt__excerpt {
  margin: 16px 0;
}
.community .featured-portrait .wp-block-post-terms__separator {
  display: none;
}
@media (min-width: 1024px) {
  .community .featured-portrait .wp-block-read-more {
    position: absolute;
    bottom: 12px;
  }
}
.community .portraits {
  margin-top: 32px;
}
.community .portrait__image ul {
  border-top: 1px solid var(--wp--preset--color--black);
  padding-top: 64px;
}
.community .portrait__image li img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 100%;
}
.community .portrait__image li img:hover {
  cursor: pointer;
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}
.community .portrait__more .wp-block-column:first-child {
  border-top: 1px solid var(--wp--preset--color--black);
  padding-top: 64px;
  position: relative;
}
.community .portrait__more .wp-block-column:first-child::before {
  content: "";
  position: absolute;
  top: -1px;
  right: 100%;
  width: 32px;
  height: 1px;
  background-color: var(--wp--preset--color--black);
}
@media (max-width: 767px) {
  .community .portrait__more .wp-block-column:first-child::before {
    width: 0px;
  }
}
@media (min-width: 768px) {
  .community .portrait__more .wp-block-column:last-child {
    margin-top: -22%;
  }
}
.pyrene-team {
  margin: 64px auto;
  padding: 0 24px;
}
.pyrene-team__columns {
  gap: 64px;
}
.pyrene-team__scic > .wp-block-columns > .wp-block-column:first-child, .pyrene-team__subscribers > .wp-block-columns > .wp-block-column:first-child {
  margin-top: -12%;
}
.pyrene-team__scic > .wp-block-columns > .wp-block-column:last-child, .pyrene-team__subscribers > .wp-block-columns > .wp-block-column:last-child {
  border-top: 1px solid var(--wp--preset--color--black);
  padding-top: 64px;
}
.pyrene-team__scic .wp-block-buttons .wp-block-button .wp-block-button__link, .pyrene-team__subscribers .wp-block-buttons .wp-block-button .wp-block-button__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--wp--preset--color--primary);
  color: white;
  text-align: center;
  padding: 10px 32px;
  padding-top: 32px;
  text-transform: uppercase;
  position: relative;
  font-weight: bold;
  font-size: 8px !important;
}
.pyrene-team__scic .wp-block-buttons .wp-block-button .wp-block-button__link:hover, .pyrene-team__subscribers .wp-block-buttons .wp-block-button .wp-block-button__link:hover {
  background-color: color-mix(in srgb, var(--wp--preset--color--primary), black 15%);
  transition: all 0.3s ease-in-out;
}
.pyrene-team__scic .wp-block-buttons .wp-block-button .wp-block-button__link::before, .pyrene-team__subscribers .wp-block-buttons .wp-block-button .wp-block-button__link::before {
  content: "+";
  font-size: 12px;
  font-weight: normal;
  position: absolute;
  top: 25%;
  line-height: 1;
  border-radius: 100%;
  padding: 1px 4px;
  border: 1px solid white;
}
.pyrene-team__scic img:hover, .pyrene-team__subscribers img:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}
.pyrene-team__team .is-layout-grid {
  gap: 24px;
}
.pyrene-team__team > .wp-block-columns > .wp-block-column:first-child {
  border-top: 1px solid var(--wp--preset--color--black);
  padding-top: 64px;
}
.pyrene-team__team > .wp-block-columns > .wp-block-column:last-child {
  margin-top: -4%;
}
@media (max-width: 767px) {
  .pyrene-team__team .wp-block-buttons .wp-block-button .wp-block-button__link {
    display: none;
  }
}
.pyrene-team__team img:hover {
  transform: scale(1.05);
  transition: all 0.3s ease-in-out;
}

.articles .featured-article__columns {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}
.articles .featured-article__columns .wp-block-post-featured-image img {
  width: 100%;
  height: auto;
  min-height: 450px;
}
.articles .featured-article__column {
  position: relative;
}
@media (min-width: 1024px) {
  .articles .featured-article__column .wp-block-post-excerpt__more-link,
  .articles .featured-article__column .wp-block-read-more {
    position: absolute;
    bottom: 12px;
  }
}
.articles .featured-articles {
  position: relative;
}
.articles .featured-articles .wp-block-post {
  margin-bottom: 16px;
}
.articles .taxonomy-category {
  margin-bottom: 8px;
}
.articles .taxonomy-post_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
  text-decoration: underline;
}
.articles .taxonomy-post_tag a {
  text-decoration: none;
}
.articles .taxonomy-post_tag a::before {
  content: " #";
}
.articles .wp-block-post-date {
  margin-bottom: 16px;
}
.articles .wp-block-post-terms__separator {
  display: none;
}
.articles .wp-block-query {
  margin-top: 2rem;
}
.articles .wp-block-query > .wp-block-post-template {
  margin-top: 1rem;
}

.text-and-image h2:first-of-type {
  margin-bottom: 0;
}
.text-and-image h2:nth-of-type(2) {
  margin-top: 0;
}
.text-and-image figure {
  margin: 0;
}
.text-and-image p.has-text-align-left.has-merriweather-font-family.has-x-small-font-size {
  border-left: 4px solid #e11e24;
  border-bottom: 4px solid #e11e24;
  margin-top: 0;
}

.title-subtile-and-content h2:first-of-type {
  margin-bottom: 0;
}
.title-subtile-and-content h2:nth-of-type(2) {
  margin-top: 0;
}

.valleys__headings {
  margin: 64px auto;
}
.valleys__articles ul {
  gap: 64px;
}
.valleys .taxonomy-category {
  margin-bottom: 8px;
}
.valleys .taxonomy-post_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
  text-decoration: underline;
}
.valleys .taxonomy-post_tag a {
  text-decoration: none;
}
.valleys .taxonomy-post_tag a::before {
  content: " #";
}
.valleys .wp-block-post-terms__separator {
  display: none;
}
.newsletter__group {
  background-color: white;
  padding-top: 64px;
}
@media (min-width: 1024px) {
  .newsletter__columns {
    padding: 0 64px;
  }
}
.newsletter__footer > .wp-block-column:first-child {
  position: relative;
}
.newsletter__footer > .wp-block-column:first-child::before {
  content: url("../images/next.svg");
  position: absolute;
  height: 50px;
  width: auto;
  left: 20px;
  z-index: 2;
}
.newsletter__footer > .wp-block-column:first-child p:last-of-type {
  font-size: var(--wp--preset--font-size--x-large) !important;
}
@media (min-width: 1024px) {
  .newsletter__footer > .wp-block-column:first-child p:last-of-type {
    font-size: var(--wp--preset--font-size--abeezee-title);
  }
}
.newsletter__footer > .wp-block-column:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {
  .home .newsletter__group {
    margin-top: -6%;
  }
}

.error404-title {
  margin-top: 20vh;
}
@media (min-width: 768px) {
  .error404-title {
    margin-top: 35vh;
  }
}

.single-post .pyrene-post,
.single-portrait .pyrene-portrait,
.single-randonnee .pyrene-hike,
.single-magazine .pyrene-magazine {
  margin: 0 auto;
  max-width: 1200px;
  padding: 20px;
  background-color: #fff;
}
@media (min-width: 1024px) {
  .single-post .pyrene-post,
  .single-portrait .pyrene-portrait,
  .single-randonnee .pyrene-hike,
  .single-magazine .pyrene-magazine {
    padding: 20px 64px;
  }
}
.single-post .pyrene-post > .wp-block-post-excerpt:nth-of-type(1) > .wp-block-post-excerpt__excerpt,
.single-portrait .pyrene-portrait > .wp-block-post-excerpt:nth-of-type(1) > .wp-block-post-excerpt__excerpt,
.single-randonnee .pyrene-hike > .wp-block-post-excerpt:nth-of-type(1) > .wp-block-post-excerpt__excerpt,
.single-magazine .pyrene-magazine > .wp-block-post-excerpt:nth-of-type(1) > .wp-block-post-excerpt__excerpt {
  color: var(--wp--preset--color--primary);
  font-size: var(--wp--preset--font-size--large);
  font-weight: 700;
  font-family: var(--wp--preset--font-family--open-sans);
}
@media (min-width: 1024px) {
  .single-post .pyrene-post,
  .single-portrait .pyrene-portrait,
  .single-randonnee .pyrene-hike,
  .single-magazine .pyrene-magazine {
    margin-top: -6%;
  }
}

.category .wp-block-post-template.is-layout-grid,
.tag .wp-block-post-template.is-layout-grid,
.author .wp-block-post-template.is-layout-grid,
.post-type-archive-magazine .wp-block-post-template.is-layout-grid,
.search-results .wp-block-post-template.is-layout-grid {
  row-gap: 3.5rem;
}
.category .wp-block-cover,
.tag .wp-block-cover,
.author .wp-block-cover,
.post-type-archive-magazine .wp-block-cover,
.search-results .wp-block-cover {
  align-items: baseline;
}
.category .title-block,
.tag .title-block,
.author .title-block,
.post-type-archive-magazine .title-block,
.search-results .title-block {
  margin-top: 40vh;
}
.category h1,
.tag h1,
.author h1,
.post-type-archive-magazine h1,
.search-results h1 {
  padding: 0 1.25em;
  max-width: 100%;
  font-family: var(--wp--preset--font-family--abeezee);
}
@media (min-width: 768px) {
  .category h1,
  .tag h1,
  .author h1,
  .post-type-archive-magazine h1,
  .search-results h1 {
    font-size: var(--wp--preset--font-size--hero-title) !important;
  }
}
.category .group-content,
.tag .group-content,
.author .group-content,
.post-type-archive-magazine .group-content,
.search-results .group-content {
  padding: 1.25em 2.375em;
}
@media (min-width: 1280px) {
  .category .group-content,
  .tag .group-content,
  .author .group-content,
  .post-type-archive-magazine .group-content,
  .search-results .group-content {
    padding: 0px;
  }
}
.category .wp-block-query ul,
.tag .wp-block-query ul,
.author .wp-block-query ul,
.post-type-archive-magazine .wp-block-query ul,
.search-results .wp-block-query ul {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .category .wp-block-query ul,
  .tag .wp-block-query ul,
  .author .wp-block-query ul,
  .post-type-archive-magazine .wp-block-query ul,
  .search-results .wp-block-query ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .category .wp-block-query ul,
  .tag .wp-block-query ul,
  .author .wp-block-query ul,
  .post-type-archive-magazine .wp-block-query ul,
  .search-results .wp-block-query ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.category .wp-block-post,
.tag .wp-block-post,
.author .wp-block-post,
.post-type-archive-magazine .wp-block-post,
.search-results .wp-block-post {
  margin-bottom: 16px;
}
.category .wp-block-post-terms__separator,
.tag .wp-block-post-terms__separator,
.author .wp-block-post-terms__separator,
.post-type-archive-magazine .wp-block-post-terms__separator,
.search-results .wp-block-post-terms__separator {
  display: none;
}
.category .taxonomy-post_tag,
.tag .taxonomy-post_tag,
.author .taxonomy-post_tag,
.post-type-archive-magazine .taxonomy-post_tag,
.search-results .taxonomy-post_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0.15rem;
  text-decoration: underline;
}
.category .taxonomy-post_tag a,
.tag .taxonomy-post_tag a,
.author .taxonomy-post_tag a,
.post-type-archive-magazine .taxonomy-post_tag a,
.search-results .taxonomy-post_tag a {
  text-decoration: none;
}
.category .taxonomy-post_tag a::before,
.tag .taxonomy-post_tag a::before,
.author .taxonomy-post_tag a::before,
.post-type-archive-magazine .taxonomy-post_tag a::before,
.search-results .taxonomy-post_tag a::before {
  content: " #";
}

.pyrene-magazine__text p {
  font-family: var(--wp--preset--font-family--merriweather);
  font-size: var(--wp--preset--font-size--medium);
  font-style: normal;
  font-weight: 400;
  text-align: center;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  color: var(--wp--preset--color--grey);
}
.pyrene-magazine__buttons {
  margin-bottom: 1rem;
}
.pyrene-magazine__buttons .wp-block-button__link {
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
}

body {
  background-color: white;
}

@media (max-width: 768px) {
  .has-hero-title-font-size {
    font-size: 1.5rem !important;
  }
  .has-xx-large-font-size {
    font-size: 1.25rem !important;
  }
}

/*# sourceMappingURL=main.css.map */
