/*
 * DO NOT EDIT THIS FILE.
 * See the following change record for more information,
 * https://www.drupal.org/node/3084859
 * @preserve
 */
/* ========================================
=                 Country                 =
======================================== */
@layer sdc {
  .country {
    --country-color: var(--color-black-main);
    --country-brefore-content: "";
  }
  .country--background {
    --country-color: var(--color-white);
    --country-brefore-content: none;
  }
  .country-hero {
    display: grid;
    overflow: hidden;
    grid-template-areas: "one";
    grid-template-columns: auto;
    border-block-end: solid 1px var(--color-grey-three);
  }
  .country-hero__content,
  .country-hero__image {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    grid-area: one;
  }
  .country-hero__image img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 11.25rem;
    object-fit: cover;
    border-block-end: solid 0.25rem var(--color-secondary);
  }
  .country-hero__content {
    z-index: 2;
    width: 100%;
  }
  .country-hero__header {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem;
    padding-block: 3.75rem;
  }
  .country-hero__header:before {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    width: calc(100vw - var(--scrollbar-width));
    height: 100%;
    content: var(--country-brefore-content);
    transform: translateX(-50%);
    border-block-end: solid 0.25rem var(--color-secondary);
    background-color: var(--color-grey-three);
  }
  .country-hero__header__flag svg {
    display: block;
    width: 5.625rem;
    height: auto;
  }
  .country-hero__header__title {
    letter-spacing: -1px;
    color: var(--country-color);
    font-size: clamp(2rem, 0.3057rem + 3.8554vw, 3.125rem);
    font-weight: 500;
    line-height: 1.05;
    margin-block: 0;
  }
  .country-hero__info {
    display: flex;
    flex-direction: column;
    row-gap: 2.5rem;
    padding-block: 3.75rem;
  }
  @media (width >= 56.3125em) {
    .country-hero__info {
      flex-direction: row;
      flex-wrap: wrap;
      column-gap: 3.75rem;
    }
  }
  @media (min-width: 64em) {
    .country-hero__info {
      column-gap: 5rem;
    }
  }
  .country-hero__info__section {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    column-gap: 1.25rem;
  }
  .country-hero__info__section__img {
    max-width: 2.75rem;
    height: auto;
  }
  .country-hero__info__section__content {
    display: flex;
    flex-direction: column;
    row-gap: clamp(0.625rem, 0.5rem + 1vw, 1.25rem);
    color: var(--color-black-main);
  }
  .country-hero__info__section__content__title {
    margin: 0;
    font-family: var(--font-primary);
    font-size: clamp(1.125rem, 0.625rem + 1.25vw, 1.3125rem);
    font-weight: 250;
  }
  .country-hero__info__section__content__text {
    display: flex;
    flex-direction: row;
    align-items: baseline;
    column-gap: 0.3125rem;
    letter-spacing: -1.08px;
    font-size: clamp(1.5rem, 0.75rem + 1.875vw, 2.25rem);
    font-weight: 400;
  }
  .country-hero__info__section__content__text span {
    letter-spacing: -0.51px;
    font-size: 1.0625rem;
    font-weight: 400;
    line-height: 2rem;
  }
  .country__components__description {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--gap-layout);
  }
  .country__components__description p {
    max-width: var(--max-width-text);
  }
}
