*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: #1c1d1e;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  /* Corrects font smoothing for webkit */
  -webkit-font-smoothing: inherit;
  -moz-osx-font-smoothing: inherit;
  /* Corrects inability to style clickable `input` types in iOS */
  -webkit-appearance: none;
}

/* Remove excess padding and border in Firefox 4+ */
&::-moz-focus-inner {
  border: 0;
  padding: 0;
}

:root :where(.is-layout-flow) > :first-child {
  margin-block-start: 0;
}

:root :where(.is-layout-constrained) > :first-child {
  margin-block-start: 0;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  line-height: 1.6;
  color: #434843;
  background-color: #fbfaee;
}

h1,
h2,
h3,
h4,
h5,
h6,
.wp-block-heading {
  font-family: "Source Serif 4", serif;
  line-height: 1.2;
  font-weight: 400;
  color: #1c1d1e;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1.1875rem;
}

h5 {
  font-size: 1.125rem;
}

h6 {
  font-size: 1rem;
}

blockquote {
  font-family: "Source Serif 4", serif;
  font-style: italic;
}

.wp-block-quote.is-style-chapeau {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
  border: none;
  padding: 0;
}
.wp-block-quote.is-style-chapeau p {
  font-size: clamp(1.125rem, 4vw, 1.375rem);
  line-height: 1.8;
  color: #354438;
}
.wp-block-quote.is-style-chapeau cite {
  display: none;
}

.eyebrow,
.label-grotesk {
  font-family: "Space Grotesk", sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.6875rem;
  font-weight: 700;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1020;
  background-color: transparent;
  transition: background-color 0.25s ease-in-out, box-shadow 0.25s ease-in-out;
  backdrop-filter: blur(5px);
}
.site-header--solid {
  background-color: #354438;
  box-shadow: 0 10px 15px -3px rgba(53, 68, 56, 0.05);
}
.site-header:not(.site-header--solid)::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35), transparent);
  z-index: -1;
  pointer-events: none;
}
body.has-hero .site-header:not(.site-header--solid) .site-title a,
body.has-hero .site-header:not(.site-header--solid) .site-description,
body.has-hero .site-header:not(.site-header--solid) .menu-toggle {
  color: #ffffff;
}
@media (min-width: 992px) {
  body.has-hero .site-header:not(.site-header--solid) .mega-menu-trigger,
  body.has-hero .site-header:not(.site-header--solid) .primary-menu > li > a {
    color: #ffffff;
  }
}
.site-header__inner {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .site-header__inner {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 576px) {
  .site-header__inner {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .site-header__inner {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .site-header__inner {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .site-header__inner {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .site-header__inner {
    max-width: 1320px;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.site-header__subscribe {
  flex-shrink: 0;
}

body:not(.has-hero) #content {
  padding-top: var(--header-height, 80px);
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex-shrink: 0;
}
.site-branding .custom-logo-link {
  display: block;
  line-height: 0;
  flex-shrink: 0;
}
.site-branding .site-title {
  margin: 0;
  font-family: "Source Serif 4", serif;
  font-size: 1.1875rem;
  font-weight: 500;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.site-branding .site-title a {
  text-decoration: none;
  color: #ffffff;
}
.site-branding .site-description {
  display: none;
}
@media (min-width: 992px) {
  .site-branding .site-description {
    display: block;
    margin: 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
  }
}

.header-search {
  flex-shrink: 0;
  display: none;
}
@media (min-width: 992px) {
  .header-search {
    display: block;
  }
}

/** FIX FOR ADMIN BAR */
body.admin-bar .site-header {
  top: 32px;
}
@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.content-grid,
.entry-content {
  display: grid;
  margin-top: 80px;
  grid-template-columns: [full-start] minmax(1rem, 1fr) [wide-start] minmax(0, calc((var(--wp--style--global--wide-size, 1140px) - var(--wp--style--global--content-size, 720px)) / 2)) [content-start] min(var(--wp--style--global--content-size, 720px), 100% - 2rem) [content-end] minmax(0, calc((var(--wp--style--global--wide-size, 1140px) - var(--wp--style--global--content-size, 720px)) / 2)) [wide-end] minmax(1rem, 1fr) [full-end];
}
@media (min-width: 992px) {
  .content-grid,
  .entry-content {
    grid-template-columns: [full-start] minmax(1.5rem, 1fr) [wide-start] minmax(0, calc((var(--wp--style--global--wide-size, 1140px) - var(--wp--style--global--content-size, 720px)) / 2)) [content-start] min(var(--wp--style--global--content-size, 720px), 100% - 3rem) [content-end] minmax(0, calc((var(--wp--style--global--wide-size, 1140px) - var(--wp--style--global--content-size, 720px)) / 2)) [wide-end] minmax(1.5rem, 1fr) [full-end];
  }
}
.content-grid > *,
.content-grid > .carnet-day > *,
.entry-content > *,
.entry-content > .carnet-day > * {
  grid-column: content;
}
.content-grid > .alignwide,
.content-grid > .carnet-day > .alignwide,
.entry-content > .alignwide,
.entry-content > .carnet-day > .alignwide {
  grid-column: wide;
}
.content-grid > .alignfull,
.content-grid > .carnet-day > .alignfull,
.entry-content > .alignfull,
.entry-content > .carnet-day > .alignfull {
  grid-column: full;
}
.content-grid > .alignfull > img,
.content-grid > .alignfull > video,
.content-grid > .alignfull > iframe,
.content-grid > .carnet-day > .alignfull > img,
.content-grid > .carnet-day > .alignfull > video,
.content-grid > .carnet-day > .alignfull > iframe,
.entry-content > .alignfull > img,
.entry-content > .alignfull > video,
.entry-content > .alignfull > iframe,
.entry-content > .carnet-day > .alignfull > img,
.entry-content > .carnet-day > .alignfull > video,
.entry-content > .carnet-day > .alignfull > iframe {
  width: 100%;
  height: auto;
}
.content-grid > .aligncenter,
.content-grid > .carnet-day > .aligncenter,
.entry-content > .aligncenter,
.entry-content > .carnet-day > .aligncenter {
  grid-column: content;
  margin-inline: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 9999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease-in-out, opacity 0.15s ease-in-out, background-color 0.25s ease-in-out, color 0.25s ease-in-out, border-color 0.25s ease-in-out;
}
.btn:active {
  transform: scale(0.97);
}
.btn:disabled, .btn[aria-disabled=true] {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--m {
  padding: 14px 28px;
}
.btn--s {
  padding: 10px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.btn--primary {
  background-color: #354438;
  color: #ffffff;
  border: 1px solid transparent;
}
.btn--primary:hover {
  color: #f6b74d;
}
.btn--accent {
  background-color: #f6b74d;
  color: #1c1d1e;
  border: 1px solid transparent;
}
.btn--accent:hover {
  opacity: 0.9;
}
.btn--outline {
  background-color: transparent;
  color: #f6b74d;
  border: 1px solid #f6b74d;
}
.btn--outline:hover {
  background-color: #f6b74d;
  color: #1c1d1e;
}
.btn--ghost {
  background-color: transparent;
  color: inherit;
  border: 1px solid transparent;
}
.btn--ghost:hover {
  color: #f6b74d;
}
.btn--dark {
  background-color: #1c1d1e;
  color: #ffffff;
  border: 1px solid transparent;
}
.btn--dark:hover {
  color: #f6b74d;
}

.badge {
  display: inline-block;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge--eyebrow-dark {
  display: inline-flex;
  align-items: center;
  background-color: rgba(28, 29, 30, 0.5);
  border: 1px solid rgba(246, 183, 77, 0.4);
  border-radius: 9999px;
  color: #f6b74d;
  padding: 6px 16px;
}
.badge--eyebrow-light {
  color: #06a68e;
}
.badge--tag {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 9999px;
  color: #1c1d1e;
  padding: 6px 12px;
  letter-spacing: 1px;
}
.badge--outline-dark {
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 9999px;
  color: #ffffff;
  padding: 8px 16px;
}

.chip {
  display: inline-block;
  border: 1px solid rgba(115, 120, 115, 0.3);
  border-radius: 9999px;
  padding: 8px 16px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.8125rem;
  color: #434843;
}

.input {
  display: block;
  width: 100%;
  border-radius: 9999px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.875rem;
  border: 1px solid transparent;
}
.input::-moz-placeholder {
  color: inherit;
  opacity: 0.6;
}
.input::placeholder {
  color: inherit;
  opacity: 0.6;
}
.input--search {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  padding: 8px 16px;
}
.input--email {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  padding: 15px 24px;
}
.input--email::-moz-placeholder {
  opacity: 0.4;
}
.input--email::placeholder {
  opacity: 0.4;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 38px;
  border-radius: 9999px;
  border: 1px solid rgba(115, 120, 115, 0.3);
  background: none;
  color: #1c1d1e;
  cursor: pointer;
  transition: border-color 0.15s ease-in-out, background-color 0.15s ease-in-out;
}
.icon-btn:hover {
  border-color: #f6b74d;
}
.icon-btn.is-active, .icon-btn[aria-pressed=true] {
  background-color: #354438;
  border-color: #354438;
  color: #ffffff;
}

.section-heading {
  margin-bottom: 48px;
}
.section-heading__eyebrow {
  display: block;
  margin-bottom: 12px;
}
.section-heading__title {
  margin: 0 0 12px;
}
.section-heading__description {
  margin: 0;
  max-width: 480px;
  font-size: 0.9375rem;
  color: #434843;
}
.section-heading--center {
  text-align: center;
}
.section-heading--center .section-heading__description {
  margin-inline: auto;
}
.section-heading--dark .section-heading__title {
  color: #ffffff;
}
.section-heading--dark .section-heading__description {
  color: rgba(255, 255, 255, 0.65);
}

.post-card {
  background-color: #fbfaee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(53, 68, 56, 0.05);
  transition: box-shadow 0.25s ease-in-out, transform 0.25s ease-in-out;
}
.post-card:hover, .post-card:focus-within {
  box-shadow: 0 10px 30px -5px rgba(53, 68, 56, 0.15);
  transform: translateY(-2px);
}
.post-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.post-card__thumbnail {
  aspect-ratio: 3/2;
  overflow: hidden;
  background-color: #f5f4e8;
}
.post-card__thumbnail img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}
.post-card:hover .post-card__thumbnail img {
  transform: scale(1.05);
}
.post-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  color: #1c1d1e;
  margin: 16px 16px 12px;
}
.post-card__excerpt {
  font-size: 0.875rem;
  color: #737873;
  line-height: 1.6;
  margin: 0 16px 16px;
}

.content-card {
  position: relative;
  background-color: #fbfaee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(53, 68, 56, 0.05);
  transition: box-shadow 0.25s ease-in-out, transform 0.25s ease-in-out;
}
.content-card:hover, .content-card:focus-within {
  box-shadow: 0 10px 30px -5px rgba(53, 68, 56, 0.15);
  transform: translateY(-2px);
}
.content-card__thumbnail-link {
  position: relative;
  display: block;
}
.content-card__thumbnail, .content-card__thumbnail--placeholder {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
}
.content-card__thumbnail {
  -o-object-fit: cover;
  object-fit: cover;
}
.content-card__thumbnail--placeholder {
  background-color: #f5f4e8;
}
.content-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 8px 12px;
  background-color: #354438;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 9999px;
}
.content-card__body {
  padding: 16px;
}
.content-card__destination {
  font-size: 0.875rem;
  font-weight: 500;
  color: #f6b74d;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 8px;
}
.content-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 12px;
}
.content-card__title a {
  color: #1c1d1e;
  text-decoration: none;
}
.content-card__title a:hover {
  color: #354438;
}
.content-card__excerpt {
  font-size: 0.875rem;
  color: #737873;
  line-height: 1.6;
  margin: 0 0 12px;
}
.content-card__date {
  display: block;
  font-size: 0.875rem;
  color: #737873;
}
.content-card--photo {
  background-color: transparent;
  border-radius: 12px;
  box-shadow: none;
}
.content-card--photo:hover, .content-card--photo:focus-within {
  box-shadow: none;
  transform: none;
}
.content-card--photo .content-card__thumbnail-link {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 340px;
}
.content-card--photo .content-card__thumbnail,
.content-card--photo .content-card__thumbnail--placeholder {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.content-card--photo .content-card__thumbnail-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28, 29, 30, 0.05) 0%, rgba(28, 29, 30, 0.65) 100%);
}
.content-card--photo .content-card__badge {
  z-index: 1;
}
.content-card--photo .content-card__body {
  padding: 16px 0 0;
}
.content-card--photo .content-card__destination {
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: 1px;
}
.content-card--photo .content-card__title {
  font-family: "Source Serif 4", serif;
  font-size: 1.375rem;
  font-weight: 400;
}
.content-card--photo .content-card__date {
  display: none;
}
.content-card--photo.content-card--feature {
  grid-column: span 2;
}
.content-card--photo.content-card--feature .content-card__thumbnail-link {
  height: 280px;
}
.content-card--overlay {
  position: relative;
  background-color: transparent;
  box-shadow: none;
}
.content-card--overlay:hover, .content-card--overlay:focus-within {
  box-shadow: none;
  transform: none;
}
.content-card--overlay .content-card__thumbnail-link {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  height: 220px;
}
.content-card--overlay .content-card__thumbnail,
.content-card--overlay .content-card__thumbnail--placeholder {
  position: absolute;
  inset: 0;
  aspect-ratio: auto;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.content-card--overlay .content-card__thumbnail-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28, 29, 30, 0.95) 0%, rgba(28, 29, 30, 0.75) 35%, rgba(28, 29, 30, 0) 70%);
}
.content-card--overlay .content-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
}
.content-card--overlay .content-card__destination {
  font-family: "Space Grotesk", sans-serif;
  color: rgba(242, 242, 242, 0.7);
  letter-spacing: 0.5px;
}
.content-card--overlay .content-card__title {
  font-family: "Source Serif 4", serif;
  color: #ffffff;
  font-size: 1.1875rem;
}
.content-card--overlay .content-card__title a {
  color: inherit;
}
.content-card--overlay .content-card__excerpt,
.content-card--overlay .content-card__date {
  display: none;
}
.content-card--overlay.content-card--feature {
  grid-column: span 2;
}
.content-card--overlay.content-card--feature .content-card__thumbnail-link {
  height: 280px;
}
.content-card--overlay.content-card--feature .content-card__title {
  font-size: 1.5rem;
}

.country-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  height: 460px;
  box-shadow: 0 10px 15px -3px rgba(53, 68, 56, 0.05);
  color: #ffffff;
}
.country-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 0.4s ease-in-out;
}
.country-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28, 29, 30, 0.95) 0%, rgba(28, 29, 30, 0.75) 30%, rgba(28, 29, 30, 0) 65%);
}
.country-card:hover img {
  transform: scale(1.05);
}
.country-card__body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.country-card__name {
  font-family: "Source Serif 4", serif;
  font-size: 2rem;
  margin: 0;
}
.country-card__stats {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.5px;
  color: rgba(242, 242, 242, 0.8);
}

.guide-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 16px;
  padding: 32px;
  overflow: hidden;
}
.guide-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  font-size: 18px;
}
.guide-card__title {
  font-size: 1.1875rem;
  font-weight: 400;
  margin: 0;
}
.guide-card__description {
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}
.guide-card__link {
  margin-top: auto;
  font-size: 0.8125rem;
  font-weight: 700;
}
.guide-card--light {
  background-color: #ffffff;
  color: #1c1d1e;
}
.guide-card--light .guide-card__icon {
  background-color: #efeee3;
  color: #06a68e;
}
.guide-card--light .guide-card__description {
  color: #434843;
}
.guide-card--light .guide-card__link {
  color: #354438;
}
.guide-card--panel {
  background-color: #efeee3;
  color: #1c1d1e;
}
.guide-card--panel .guide-card__description {
  color: #434843;
}
.guide-card--panel .guide-card__link {
  color: #06a68e;
}
.guide-card--teal {
  background-color: #06a68e;
  color: #ffffff;
}
.guide-card--teal .guide-card__icon {
  background-color: rgba(255, 255, 255, 0.2);
}
.guide-card--teal .guide-card__title {
  color: #ffffff;
}
.guide-card--teal .guide-card__description {
  opacity: 0.9;
}
.guide-card--dark {
  background-color: #1c1d1e;
  color: #ffffff;
  justify-content: flex-end;
}
.guide-card--dark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--guide-card-bg, none);
  background-size: cover;
  background-position: center;
  opacity: 0.5;
}
.guide-card--dark .guide-card__title {
  font-family: "Source Serif 4", serif;
  font-size: 1.375rem;
  color: #f6b74d;
  position: relative;
}
.guide-card--dark .guide-card__description {
  color: rgba(255, 255, 255, 0.75);
  position: relative;
}
.guide-card--dark .badge {
  align-self: flex-start;
  position: relative;
}
.guide-card--panel.guide-card {
  flex-direction: row;
  align-items: flex-start;
}
.guide-card--panel .guide-card__side {
  flex-shrink: 0;
}
.guide-card--panel .guide-card__side-image {
  width: 96px;
  height: 96px;
  border-radius: 16px;
  -o-object-fit: cover;
  object-fit: cover;
}
.guide-card--panel .guide-card__main {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guides-bento {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.guides-bento .guide-card--feature {
  grid-row: span 2;
}

.hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #ffffff;
  background-color: #1c1d1e;
  min-height: clamp(360px, 58vw, 420px);
}
.hero__background {
  position: absolute;
  inset: 0;
}
.hero__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.hero__background::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.1) 60%);
}
.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding: 48px 1rem;
}
@media (min-width: 992px) {
  .hero__content {
    padding: 64px 1.5rem;
  }
}
.hero__eyebrow {
  margin-bottom: 16px;
}
.hero__title {
  font-family: "Source Serif 4", serif;
  font-weight: 400;
  font-size: 2.25rem;
  line-height: 1.2;
  margin: 0 0 12px;
  color: #ffffff;
}
@media (min-width: 992px) {
  .hero__title {
    font-size: 3.5rem;
  }
}
.hero__byline {
  display: block;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}
.hero__subtitle {
  max-width: 60ch;
  font-size: 0.9375rem;
  line-height: 1.8;
  margin: 0;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}
.hero--front-page {
  min-height: 90vh;
  align-items: center;
}
.hero--front-page .hero__content {
  text-align: center;
  max-width: 640px;
  margin-inline: auto;
}
.hero--front-page .hero__ctas {
  justify-content: center;
}
.hero--single, .hero--carnet {
  min-height: 40vh;
}
.hero--single.hero--carnet, .hero--carnet.hero--carnet {
  min-height: clamp(420px, 60vw, 560px);
  align-items: center;
  text-align: center;
}
.hero--single.hero--carnet .hero__content, .hero--carnet.hero--carnet .hero__content {
  max-width: 760px;
  margin-inline: auto;
}
.hero--destination {
  min-height: 40vh;
}
.hero--zone {
  min-height: clamp(420px, 60vw, 520px);
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero--zone .hero__content {
  background-color: rgba(251, 250, 238, 0.9);
  border-radius: 16px;
  padding: 48px 32px;
  max-width: 640px;
  margin: 0 16px;
  color: #1c1d1e;
}
.hero--zone .hero__title {
  color: #1c1d1e;
}
.hero--zone .hero__subtitle {
  color: #434843;
}
.hero--zone .hero__eyebrow {
  background: none;
  border: none;
  padding: 0;
  color: #06a68e;
}
.hero--archive {
  min-height: 50vh;
}
.hero--archive:not(.hero--has-image) {
  background-color: #354438;
  color: #1c1d1e;
}

.main-navigation {
  position: relative;
  display: flex;
  align-items: center;
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  color: #ffffff;
  z-index: 1030;
}
@media (min-width: 992px) {
  .menu-toggle {
    display: none;
  }
}
.menu-toggle .icon-close {
  display: none;
}
.menu-toggle[aria-expanded=true] .icon-menu {
  display: none;
}
.menu-toggle[aria-expanded=true] .icon-close {
  display: block;
}

.mobile-nav-overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease-in-out;
  z-index: 1029;
}
.mobile-nav-overlay-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 992px) {
  .mobile-nav-overlay-backdrop {
    display: none;
  }
}

.primary-menu-container {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(85vw, 360px);
  background: #fbfaee;
  overflow-y: auto;
  transform: translateX(100%);
  transition: transform 0.25s ease-in-out;
  z-index: 1030;
  padding: 64px 24px 32px;
}
.primary-menu-container.is-open {
  transform: translateX(0);
}
@media (min-width: 992px) {
  .primary-menu-container {
    position: static;
    height: auto;
    width: auto;
    background: none;
    overflow: visible;
    transform: none;
    transition: none;
    z-index: auto;
    padding: 0;
  }
}

.primary-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  font-size: 0.875rem;
}
@media (min-width: 992px) {
  .primary-menu {
    flex-direction: row;
    align-items: center;
    gap: 32px;
  }
}
.primary-menu > li > a,
.primary-menu > li .mega-menu-link {
  display: block;
  padding: 16px 0;
  color: #1c1d1e;
}
@media (min-width: 992px) {
  .primary-menu > li > a,
  .primary-menu > li .mega-menu-link {
    padding: 24px 0;
    color: rgba(255, 255, 255, 0.9);
  }
  .primary-menu > li > a:hover,
  .primary-menu > li .mega-menu-link:hover {
    color: #f6b74d;
  }
}
.primary-menu .mega-menu-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.primary-menu .mega-menu-header button {
  line-height: 1;
}

.mega-menu-trigger {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  font: inherit;
  color: #1c1d1e;
  cursor: pointer;
  padding: 16px 0;
}
@media (min-width: 992px) {
  .mega-menu-trigger {
    width: auto;
    padding: 24px 0;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid transparent;
  }
  .mega-menu-trigger[aria-expanded=true] {
    border-bottom-color: #f6b74d;
  }
  .mega-menu-trigger:hover {
    color: #f6b74d;
  }
}

.has-megamenu {
  position: relative;
}
.has-megamenu > .mega-menu {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease-in-out;
}
@media (min-width: 992px) {
  .has-megamenu > .mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, 8px);
    min-width: 640px;
    max-width: 90vw;
    max-height: none;
    overflow: visible;
    background: #ffffff;
    box-shadow: 0 20px 40px -10px rgba(28, 29, 30, 0.25);
    border-radius: 16px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease-in-out, transform 0.25s ease-in-out;
    z-index: 1000;
    display: flex;
    padding: 16px;
    gap: 16px;
  }
  .has-megamenu > .mega-menu .mega-menu__column {
    flex: 1;
  }
}
.has-megamenu.is-open > .mega-menu {
  max-height: 1000px;
}
@media (min-width: 992px) {
  .has-megamenu.is-open > .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(-50%, 0);
  }
}

.mega-menu__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 0 0 16px 24px;
}
@media (min-width: 992px) {
  .mega-menu__inner {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 32px 48px;
    padding: 32px;
  }
}
.mega-menu__continent {
  display: block;
  margin: 0 0 12px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #06a68e;
  text-decoration: none;
}
.mega-menu__countries {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mega-menu__countries a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #1c1d1e;
  text-decoration: none;
  font-size: 0.875rem;
}
.mega-menu__countries a:hover {
  color: #354438;
}
.mega-menu__countries img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  flex-shrink: 0;
}

.container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.container--fluid {
  max-width: 100%;
}
.container--narrow {
  max-width: var(--wp--style--global--content-size, 720px);
}
.container--wide {
  max-width: var(--wp--style--global--wide-size, 1140px);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.section-title .eyebrow {
  font-size: 0.6875rem;
  color: #06a68e;
}

.section-link {
  display: inline-block;
  margin-top: 24px;
  color: #06a68e;
  font-weight: 700;
  font-size: 0.8125rem;
  text-decoration: none;
}
.section-link:hover {
  color: #354438;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
}
.section-header .section-title {
  margin-bottom: 12px;
}
.section-header .section-link {
  margin-top: 0;
  white-space: nowrap;
}
.section-header__lead {
  font-size: 0.9375rem;
  color: #434843;
  margin: 0;
  max-width: 480px;
}

.post-grid {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr;
}
@media (min-width: 576px) {
  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .post-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 599px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-grid .content-card--feature {
    grid-column: span 1;
  }
}

.carnet-day {
  display: contents;
}
.carnet-day__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding-top: 24px;
  margin-top: 64px;
  gap: 1rem;
}
.carnet-day__meta .line {
  flex-grow: 1;
  height: 1px;
  background: rgba(115, 120, 115, 0.3);
}
.carnet-day__number {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #f6b74d;
  opacity: 0.7;
}
.carnet-day__date {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 1px;
  color: #f6b74d;
}
.carnet-day__title {
  margin-block-start: 16px !important;
  margin-block-end: 32px;
  font-size: clamp(1.5rem, 6vw, 2rem);
}
.carnet-day__content p {
  font-size: 1rem;
  line-height: 1.8;
  color: #434843;
}
.carnet-day__content img {
  border-radius: 12px;
}
.carnet-day__content figcaption {
  text-align: center;
  font-size: 0.8125rem;
  color: #737873;
}

.wp-block-gallery.has-nested-images figure.wp-block-image:not(#individual-image) {
  width: 100%;
}
@media (min-width: 576px) {
  .wp-block-gallery.has-nested-images.columns-2 figure.wp-block-image:not(#individual-image) {
    width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px) * 0.5);
  }
  .wp-block-gallery.has-nested-images.columns-3 figure.wp-block-image:not(#individual-image) {
    width: calc(33.3333333333% - var(--wp--style--unstable-gallery-gap, 16px) * 0.6666666667);
  }
  .wp-block-gallery.has-nested-images.columns-4 figure.wp-block-image:not(#individual-image) {
    width: calc(25% - var(--wp--style--unstable-gallery-gap, 16px) * 0.75);
  }
  .wp-block-gallery.has-nested-images.columns-5 figure.wp-block-image:not(#individual-image) {
    width: calc(20% - var(--wp--style--unstable-gallery-gap, 16px) * 0.8);
  }
  .wp-block-gallery.has-nested-images.columns-6 figure.wp-block-image:not(#individual-image) {
    width: calc(16.6666666667% - var(--wp--style--unstable-gallery-gap, 16px) * 0.8333333333);
  }
  .wp-block-gallery.has-nested-images.columns-7 figure.wp-block-image:not(#individual-image) {
    width: calc(14.2857142857% - var(--wp--style--unstable-gallery-gap, 16px) * 0.8571428571);
  }
  .wp-block-gallery.has-nested-images.columns-8 figure.wp-block-image:not(#individual-image) {
    width: calc(12.5% - var(--wp--style--unstable-gallery-gap, 16px) * 0.875);
  }
  .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
    width: calc(33.33% - var(--wp--style--unstable-gallery-gap, 16px) * 0.6667);
  }
  .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2), .wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image):first-child:nth-last-child(2) ~ figure.wp-block-image:not(#individual-image) {
    width: calc(50% - var(--wp--style--unstable-gallery-gap, 16px) * 0.5);
  }
}

.site-footer {
  background-color: #1c1d1e;
  color: #ffffff;
  padding-block: 64px 32px;
}
.site-footer__container {
  width: 100%;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 992px) {
  .site-footer__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 576px) {
  .site-footer__container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .site-footer__container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .site-footer__container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .site-footer__container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .site-footer__container {
    max-width: 1320px;
  }
}

.footer-widgets {
  display: grid;
  gap: 48px;
  grid-template-columns: 1fr;
  padding-bottom: 48px;
}
@media (min-width: 768px) {
  .footer-widgets {
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
  }
}

.footer-widgets__column {
  min-width: 0;
}

.footer-nav__title,
.footer-destinations__title,
.footer-about__title {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 16px;
}

.footer-about__title {
  font-family: "Source Serif 4", serif;
  font-size: 1.375rem;
  color: #f6b74d;
  letter-spacing: normal;
  text-transform: none;
}

.footer-nav__list,
.footer-destinations__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav__link,
.footer-destinations__link {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.15s ease-in-out;
}
.footer-nav__link:hover, .footer-nav__link:focus-visible,
.footer-destinations__link:hover,
.footer-destinations__link:focus-visible {
  color: #f6b74d;
}

.footer-about__text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  line-height: 1.8;
  max-width: 340px;
  margin: 16px 0;
}

.footer-about__socials {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 16px;
}

.footer-about__social-link {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.15s ease-in-out;
}
.footer-about__social-link:hover, .footer-about__social-link:focus-visible {
  color: #f6b74d;
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.footer-bottom__copyright {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.8125rem;
  margin: 0;
}

.footer-bottom__legal {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8125rem;
}

.footer-bottom__legal-link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
.footer-bottom__legal-link:hover, .footer-bottom__legal-link:focus-visible {
  color: #f6b74d;
}

.footer-bottom__lang-switcher {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 12px;
}

.footer-bottom__lang-link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}
.footer-bottom__lang-link:hover, .footer-bottom__lang-link:focus-visible {
  color: #f6b74d;
}

.footer-bottom__lang-item--current .footer-bottom__lang-link {
  color: #ffffff;
  font-weight: 700;
}

.newsletter {
  border-radius: 24px;
  padding: 80px 32px;
  text-align: center;
  color: #ffffff;
}
.newsletter__eyebrow {
  display: block;
  margin-bottom: 16px;
  color: #f6b74d;
}
.newsletter__title {
  max-width: 560px;
  margin: 0 auto 16px;
  color: #ffffff;
}
.newsletter__description {
  max-width: 480px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
}
.newsletter__form {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px auto 0;
  width: 100%;
  max-width: 448px;
}
.newsletter__field {
  flex: 1 1 200px;
}
.newsletter__submit {
  white-space: nowrap;
}
.newsletter__disclaimer {
  display: block;
  margin-top: 16px;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}
.newsletter--darkest {
  background-color: #1c1d1e;
}
.newsletter--forest {
  background-color: #354438;
}
.newsletter--split {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 48px;
  padding: 64px 32px;
}
.newsletter--split .newsletter__intro,
.newsletter--split .newsletter__form-wrap {
  flex: 1 1 320px;
}
.newsletter--split .newsletter__title,
.newsletter--split .newsletter__description {
  margin-left: 0;
  max-width: none;
}
.newsletter--split .newsletter__form {
  margin-left: 0;
  max-width: none;
}

.favorites-section__panel {
  background-color: #efeee3;
  border-radius: 40px;
  padding: 80px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
}
.favorites-section__intro {
  flex: 1 1 380px;
}
.favorites-section__title {
  margin: 0 0 16px;
}
.favorites-section__lead {
  font-size: 0.9375rem;
  color: #434843;
  line-height: 1.8;
  margin: 0 0 32px;
  max-width: 420px;
}
.favorites-section__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.favorites-section__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: inherit;
  text-decoration: none;
}
.favorites-section__item-image {
  width: 64px;
  height: 64px;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
  flex-shrink: 0;
}
.favorites-section__item-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.favorites-section__item-title {
  font-size: 1rem;
  font-weight: 500;
  color: #1c1d1e;
}
.favorites-section__item-desc {
  font-size: 0.8125rem;
  color: #737873;
}
.favorites-section__gallery {
  flex: 1 1 320px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.favorites-section__gallery-image {
  width: 100%;
  height: 100%;
  min-height: 120px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}
.favorites-section__gallery > :first-child {
  grid-row: span 2;
  min-height: 280px;
}

.continent-panel {
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(53, 68, 56, 0.05);
}
.continent-panel__banner {
  position: relative;
  display: block;
  min-height: clamp(180px, 32vw, 240px);
  color: inherit;
  text-decoration: none;
}
.continent-panel__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.continent-panel__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(28, 29, 30, 0.95) 0%, rgba(28, 29, 30, 0.7) 35%, rgba(28, 29, 30, 0) 70%);
}
.continent-panel__banner-content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 32px;
}
.continent-panel__name {
  font-family: "Source Serif 4", serif;
  font-size: 2.25rem;
  color: #ffffff;
  margin: 0;
}
.continent-panel__summary {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.6875rem;
  letter-spacing: 0.5px;
  color: rgba(242, 242, 242, 0.85);
}
.continent-panel__countries {
  padding: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.continent-panel__country {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px 12px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(115, 120, 115, 0.3);
  color: #1c1d1e;
  text-decoration: none;
  transition: border-color 0.15s ease-in-out;
}
.continent-panel__country:hover {
  border-color: #f6b74d;
}
.continent-panel__country:hover .continent-panel__country-stats {
  opacity: 1;
}
.continent-panel__country-image {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  -o-object-fit: cover;
  object-fit: cover;
}
.continent-panel__country-name {
  font-size: 0.875rem;
}
.continent-panel__country-stats {
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.625rem;
  letter-spacing: 0.5px;
  color: #06a68e;
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.15s ease-in-out;
}

.continent-panels {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.latest-articles {
  margin-block: 64px;
}
.latest-articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.latest-articles__image {
  display: block;
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 12px;
}
.latest-articles__eyebrow {
  display: block;
  margin-top: 16px;
}
.latest-articles__title {
  font-size: 1.1875rem;
  font-weight: 400;
  margin: 8px 0 12px;
}
.latest-articles__title a {
  color: #1c1d1e;
}
.latest-articles__excerpt {
  font-size: 0.875rem;
  color: #434843;
  line-height: 1.6;
  margin: 0;
}

.carnet-share {
  max-width: var(--wp--style--global--content-size, 720px);
  margin: 48px auto;
  text-align: center;
}
.carnet-share__label {
  display: block;
  margin-bottom: 16px;
}
.carnet-share__links {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.carnet-share__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  border: 1px solid rgba(115, 120, 115, 0.3);
  color: #1c1d1e;
  background: none;
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.15s ease-in-out, color 0.15s ease-in-out;
}
.carnet-share__link:hover {
  border-color: #f6b74d;
  color: #f6b74d;
}

.next-carnet {
  margin-block: 64px;
}
.next-carnet__panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: clamp(220px, 35vw, 280px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
}
.next-carnet__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.next-carnet__scrim {
  position: absolute;
  inset: 0;
  background: rgba(28, 29, 30, 0.55);
}
.next-carnet__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.next-carnet__title {
  font-size: 1.75rem;
  color: #ffffff;
  margin: 0;
}

.wp-block-image:not(.alignfull) img {
  border-radius: 12px;
}

.wp-block-image ~ p,
.wp-block-gallery ~ p {
  margin-top: 1rem;
}

.pagination {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}
.pagination .nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  font-weight: 600;
  transition: background-color 0.2s ease;
  border: 1px solid transparent;
}
.pagination .page-numbers:hover:not(.current, .dots) {
  background-color: var(--color-bg-alt);
  border: 1px solid #f6b74d;
}
.pagination .page-numbers.current {
  background-color: #354438;
  color: #ffffff;
}
.pagination .page-numbers.dots:hover {
  background-color: transparent;
}
.pagination .prev,
.pagination .next {
  padding-inline: 24px;
  font-weight: 500;
  border-color: rgba(115, 120, 115, 0.3);
}

.page-template-page-destinations .destinations-overview {
  margin-top: 80px;
  margin-bottom: 80px;
  margin-bottom: 12px;
}

.destination-archive__description {
  color: #434843;
  line-height: 1.6;
}
.destination-archive__description p:last-child {
  margin-bottom: 0;
}

.destination-section {
  margin-block: 64px;
}
@media (min-width: 992px) {
  .destination-section {
    margin-block: 80px;
  }
}
.destination-section__title {
  font-family: "Source Serif 4", serif;
  font-size: 2.25rem;
  font-weight: 400;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(115, 120, 115, 0.3);
}

.countries-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  margin-block: 48px;
}
.countries-grid[data-view=list] {
  grid-template-columns: 1fr;
}
.countries-grid[data-view=list] .country-card {
  height: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px;
}
.countries-grid[data-view=list] .country-card img {
  position: static;
  width: 96px;
  height: 96px;
  border-radius: 8px;
  flex-shrink: 0;
}
.countries-grid[data-view=list] .country-card::after {
  display: none;
}
.countries-grid[data-view=list] .country-card .country-card__body {
  position: static;
  padding: 0;
}
.countries-grid[data-view=list] .country-card .country-card__name {
  font-size: 1.1875rem;
  color: #1c1d1e;
}

.view-toggle {
  display: flex;
  gap: 12px;
}

.carnets-section,
.favorites-section,
.guides-section,
.about-teaser,
.newsletter {
  margin-block: 64px;
}
@media (min-width: 992px) {
  .carnets-section,
  .favorites-section,
  .guides-section,
  .about-teaser,
  .newsletter {
    margin-block: 80px;
  }
}

.country-intro {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  margin-block: 64px;
}
.country-intro__text {
  flex: 1 1 380px;
}
.country-intro__description {
  font-size: 0.9375rem;
  color: #434843;
  line-height: 1.8;
}
.country-intro__description p:last-child {
  margin-bottom: 24px;
}
.country-intro__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.country-intro__image {
  flex: 1 1 320px;
  width: 100%;
  max-width: 100%;
  height: clamp(260px, 40vw, 420px);
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 16px;
}

.guides-list-section {
  background-color: #f5f4e8;
  margin-inline: -1rem;
  padding: 80px 1rem;
  text-align: center;
}
@media (min-width: 992px) {
  .guides-list-section {
    margin-inline: -1.5rem;
    padding-inline: 1.5rem;
  }
}
.guides-list-section__header {
  margin-bottom: 48px;
}
.guides-list-section__title {
  margin: 12px 0 0;
}

.guides-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  text-align: left;
}
.guides-list__item {
  padding: 32px;
  border-left: 1px solid rgba(115, 120, 115, 0.3);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guides-list__title {
  font-size: 1.1875rem;
  font-weight: 400;
  margin: 0;
}
.guides-list__title a {
  color: #1c1d1e;
}
.guides-list__excerpt {
  font-size: 0.875rem;
  color: #434843;
  line-height: 1.6;
  margin: 0;
}
.guides-list__link {
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #354438;
}

.archive .content {
  margin-top: 80px;
  margin-bottom: 80px;
}

.u-max-h-sm img,
.u-max-h-sm video {
  width: 100%;
  height: auto;
  max-height: 320px;
  -o-object-fit: cover;
  object-fit: cover;
}

.u-max-h-md img,
.u-max-h-md video {
  width: 100%;
  height: auto;
  max-height: 480px;
  -o-object-fit: cover;
  object-fit: cover;
}

.u-max-h-lg img,
.u-max-h-lg video {
  width: 100%;
  height: auto;
  max-height: 640px;
  -o-object-fit: cover;
  object-fit: cover;
}

.u-max-h-xl img,
.u-max-h-xl video {
  width: 100%;
  height: auto;
  max-height: 800px;
  -o-object-fit: cover;
  object-fit: cover;
}
/*# sourceMappingURL=style.css.map */
