/* #region CONTENT */

.content__tag {
  color: #767676;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;

  span {
    display: inline-flex;
    padding: 4px;
    color: #fff;
    border-radius: 5px;
    background: #c60304;
  }
}

.content__title {
  margin-bottom: 20px;
}
.content__subtitle {
  margin-bottom: 20px;
}

.content__author {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.42;
  margin-bottom: 20px;

  img {
    margin-right: 8px;
  }

  p {
    color: #545454;
  }
}

.content__author-name {
  color: #0550c8;
  margin-right: 4px;
}

.content__text-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content__photo {
  margin-block: 30px;
  padding-bottom: 8px;
  border-bottom: 2px solid #808080;

  figcaption {
    padding-top: 18px;
    color: #808080;
    text-align: center;
    font-size: 16px;
    line-height: 1.2;
  }
}

.content__screen {
  margin-block: 30px;
  max-width: 361px;
  margin-inline: auto;
}
/* calculator */

.content__calculator {
  margin-block: 50px;
}

.calculator-container {
  margin-bottom: 40px;
}

.slider-wrapper {
  position: relative;
  margin-bottom: 40px;
}

.value-bubble {
  position: relative;
  margin-inline: auto;
  font-size: 25px;
  line-height: 0.86;
  text-align: center;
  color: #fff;
  border-radius: 4px;
  max-width: 184px;
  background: linear-gradient(180deg, #fd0000 0%, #880101 100%);
  padding: 25px 46px;
  margin-bottom: 16px;

  &::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 15px solid transparent;
    border-right: 15px solid transparent;
    border-top: 15px solid #b71c1c;
  }
}

input[type="range"] {
  width: 100%;
  appearance: none;
  height: 12px;
  border-radius: 50px;
  background: linear-gradient(90deg, #810000 0%, #f00 100%);
  outline: none;

  &::-webkit-slider-thumb {
    appearance: none;
    width: 24px;
    height: 24px;
    background: #7a1107;
    border: 6px solid #e53935;
    border-radius: 50%;
    cursor: pointer;
  }
}

.slider-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  color: #000;
  text-align: center;
  font-size: 20px;
  line-height: 1.1;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.result-card {
  border-radius: 5px;
  background: #880101;
  color: #fff;
  padding: 25px 16px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card-title {
  line-height: 1.2;
  margin-bottom: 10px;
}

.divider {
  height: 1px;
  background: rgba(203, 203, 203, 0.4);
  width: 80%;
  margin: 0 auto 25px;
}

.card-value {
  font-size: 30px;
  font-weight: 700;
  line-height: 0.8;
}

/* calculator end */

.content__btn {
  margin-inline: auto;
}

.content__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content__img {
  margin-block: 30px;
}

.content__offer {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 50px;
}

.content__offer-list {
  display: flex;
  flex-direction: column;
  gap: 16px;

  li {
    display: flex;
    padding: 20px 15px;
    align-items: center;
    border-radius: 4px;
    background: linear-gradient(90deg, #650000 0%, #f00 100%);

    color: #fff;
    font-weight: 700;
  }
}

.content__form {
  display: flex;
  padding: 16px;
  flex-direction: column;
  gap: 4px;
  border-radius: 10px;
  border: 1px solid #eaeaea;
  background: rgba(255, 255, 255, 0);
  box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.25);
}

/* #region COMMENTS */
.content__comments {
  margin-block: 50px 115px;
}

.content__comments-title {
  margin-bottom: 32px;
}
.content__comments-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 16px;
}

.content__comments-count {
  color: #4b4f56;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}
.content__comments-sort {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #4b4f56;

  span {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
  }

  a {
    display: flex;
    padding: 1px 5px;
    border-radius: 2px;
    border: 1px solid #ccd0d5;
    background: #f5f6f7;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.8;

    &:hover {
      border: 1px solid #4b4f56;
    }
  }
}
.content__comments-form {
  display: flex;
  gap: 12px;

  img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
  }
}

.content__comments-input {
  display: flex;
  flex-direction: column;
  width: 100%;
  border: 1px solid #d3d6db;

  textarea {
    padding: 12px;
    padding-bottom: 30px;
    border: none;
    resize: none;
    color: #4b4f56;

    &::placeholder {
      color: #767676;
      font-size: 16px;
    }
  }
}

.content__comments-post {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  padding: 8px;
  background: #f5f6f7;
  line-height: 1.2;

  a {
    display: flex;
    padding: 5px 10px;
    border-radius: 2px;
    background: #9cb4d8;
    color: #fff;
    font-size: 14px;
    font-weight: 700;

    transition: background 0.3s;

    &:hover {
      background: #4b4f56;
    }
  }
}

.content__comments-checkbox {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #90949c;
  font-size: 12px;
  font-weight: 400;
}

.content__comments-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 16px;
}

.content__comments-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.content__comments-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 14px;

  h4 {
    color: #365899;
    font-weight: 700;
    line-height: 1.4;
  }

  p {
    color: #4b4f56;
    font-weight: 400;
    line-height: 1.7;
  }
}
.content__comments-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  color: #90949c;

  a {
    color: #4267b2;

    &:hover {
      text-decoration: underline;
    }
  }

  .content__comments-like {
    display: flex;
    gap: 4px;
  }
}
.content__comments-replies {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.content__comments-reply {
  margin-left: 65px;
  padding-left: 12px;
  border-left: 1px dashed #d3d6db;
}
/* #endregion COMMENTS */

.content__news {
  display: flex;
  flex-direction: column;
  margin-block: 40px;
  gap: 16px;
  color: #353535;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;

  a {
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
  }
}

.content__news-legal {
  font-size: 14px;

  img {
    display: inline;
    vertical-align: middle;
  }
}

.content__related {
  h2 {
    font-size: 20px;
    line-height: 1.7;
    text-transform: uppercase;
    border-bottom: 1px solid #000;
    margin-bottom: 18px;
  }

  ul {
    display: flex;
    flex-direction: column;
    list-style: disc;
    padding-left: 40px;
    gap: 16px;

    li {
      border-bottom: 1px solid #d8d8d8;
      a {
        color: #0550c8;
        font-size: 16px;
        font-weight: 700;
        line-height: 1.2;
      }
      span {
        color: #e60505;
        text-transform: uppercase;
      }
    }
  }
}

@media (width < 1024px) {
}

@media (width < 744px) {
  .content {
    padding-inline: 16px;
  }
  .content__news,
  .content__related {
    display: none;
  }

  .slider-labels {
    font-size: 12px;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .content__comments {
    margin-block: 50px 0;
  }
  .content__comments-post {
    a {
      width: 100%;
      text-align: center;
      justify-content: center;
    }
  }
  .content__comments-info {
    h4 {
      font-size: 14px;
    }
  }
}

/* #endregion CONTENT */

/* #region SIDEBAR */

.sidebar {
  position: relative;
  /* padding-top: 50px; */
  min-width: 360px;
}

.sidebar__inner {
  position: sticky;
  top: 20px;
  display: flex;
  flex-direction: column;
  max-width: 360px;
  padding: 40px 20px;
  gap: 10px;
  overflow-y: auto;
  background: #f6f4f4;

  h3 {
    color: #f90000;
    text-transform: uppercase;
  }
}

.sidebar__list {
  display: flex;
  flex-direction: column;
  gap: 16px;

  li {
    padding-bottom: 20px;
    border-bottom: 1px solid #d1d1d1;

    &:last-child {
      padding-bottom: 0;
      border-bottom: none;
    }

    a {
      &:hover p {
        text-decoration: underline;
      }
    }

    h4 {
      margin-bottom: 10px;
    }

    p {
      font-size: 16px;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 10px;
    }

    span {
      color: #535353;
      font-size: 14px;
    }
  }
}

@media (width < 1024px) {
  .sidebar {
    padding-top: 0;
  }

  .sidebar__inner {
    position: static;
    max-width: 100%;
    padding-inline: 30px;
  }
}

@media (width < 744px) {
  .sidebar {
    min-width: 0;
  }
  .sidebar__inner {
    padding-inline: 20px;
  }
}

/* #endregion SIDEBAR */

/* #region FOOTER */
.footer {
  margin-top: 70px;
  padding-top: 50px;
  border-top: 1px solid #eaeaea;
}

.footer__top {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
}
.footer__links {
  h4 {
    margin-bottom: 16px;
  }

  ul {
    display: flex;
    flex-direction: column;
    gap: 6px;

    a {
      color: #0550c8;
      font-size: 14px;
      line-height: 1.2;
    }

    p {
      a {
        font-size: 18px;
        border-bottom: 1px solid #d8d8d8;
      }
    }
  }
}
.footer__bottom {
  margin-top: 16px;
  padding-block: 16px;
  background-color: #000;
}
.footer__bottom-content {
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

@media (width < 1024px) {
  .footer__top {
    grid-template-columns: repeat(4, 1fr);

    > :last-child {
      grid-column: 3 / 5;
      grid-row: 2 / 3;
    }
  }
}

@media (width < 744px) {
  .footer {
    margin-top: 50px;
    padding-top: 0;
    border: unset;
  }
  .footer__top {
    grid-template-columns: 1fr;

    > :last-child {
      grid-column: auto;
      grid-row: auto;
    }
  }

  .footer__bottom-content {
    flex-direction: column;
  }
}

.content-images {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  margin-block: 30px;
}
/*new header*/
button {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}
header,
nav {
  display: block;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 14px;
}
*,
:after,
:before {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}
:root {
  --border-radius-none: 0;
  --border-radius-round: 9999px;
  --border-radius-xl: 12px;
  --border-radius-xs: 4px;
  --border-width-3xs: 4px;
  --border-width-4xs: 2px;
  --border-width-5xs: 1px;
  --border-width-none: 0;
  --border-width-xs: 8px;
  --color-bg-accent-blending-enabled: #8c8e97;
  --color-bg-accent-blending-focus: #8c8e97;
  --color-bg-accent-blending-hover: #8c8e97;
  --color-bg-accent-blending-press: #8c8e97;
  --color-bg-decorative-base-static: #ffc300;
  --color-bg-live-base-static: #d0021b;
  --color-bg-neutral-blending-enabled: #8c8e97;
  --color-bg-neutral-blending-focus: #8c8e97;
  --color-bg-neutral-blending-hover: #8c8e97;
  --color-bg-neutral-blending-press: #8c8e97;
  --color-fg-live-base-static: #d0021b;
  --color-fg-on-decorative-base-static: #323232;
  --color-fg-on-live-base-static: #fff;
  --color-fg-on-neutral-base-enabled: #fff;
  --color-inner-border-accent-weakest-disabled: #323232;
  --color-inner-border-decorative-base-static: #ffc300;
  --color-inner-border-live-base-static: #d0021b;
  --font-size-body-lg: 1rem;
  --font-size-body-md: 0.875rem;
  --font-size-body-sm: 0.75rem;
  --font-size-body-xl: 1.125rem;
  --font-size-label-lg: 1rem;
  --font-size-label-md: 0.875rem;
  --font-size-label-sm: 0.75rem;
  --font-size-label-xl: 1.25rem;
  --font-size-lead-md: 1.25rem;
  --font-size-lead-sm: 1rem;
  --font-size-subtitle-md: 1rem;
  --font-size-subtitle-sm: 1rem;
  --font-size-subtitle-xl: 1.125rem;
  --font-size-subtitle-xs: 0.875rem;
  --font-size-title-xs: 1rem;
  --layout-gap-section-none: 0;
  --layout-padding-horizontal-section-none: 0;
  --layout-padding-vertical-section-none: 0;
  --line-height-body-lg: 1.25rem;
  --line-height-body-md: 1.25rem;
  --line-height-body-sm: 1rem;
  --line-height-body-xl: 1.5rem;
  --line-height-label-lg: 1.5rem;
  --line-height-label-md: 1.25rem;
  --line-height-label-sm: 1rem;
  --line-height-label-xl: 1.5rem;
  --line-height-lead-md: 1.5rem;
  --line-height-lead-sm: 1.5rem;
  --line-height-meta-lg: 1.5rem;
  --line-height-subtitle-lg: 1.5rem;
  --line-height-subtitle-md: 1.5rem;
  --line-height-subtitle-sm: 1.5rem;
  --line-height-subtitle-xl: 1.5rem;
  --line-height-subtitle-xs: 1.125rem;
  --line-height-title-sm: 1.5rem;
  --line-height-title-xs: 1.5rem;
  --sizing-icon-height-2xl: 32px;
  --sizing-icon-height-2xs: 8px;
  --sizing-icon-height-3xl: 40px;
  --sizing-icon-height-4xl: 48px;
  --sizing-icon-height-lg: 20px;
  --sizing-icon-height-md: 16px;
  --sizing-icon-height-sm: 12px;
  --sizing-icon-height-xl: 24px;
  --sizing-icon-height-xs: 10px;
  --sizing-icon-width-2xl: 32px;
  --sizing-icon-width-2xs: 8px;
  --sizing-icon-width-3xl: 40px;
  --sizing-icon-width-4xl: 48px;
  --sizing-icon-width-lg: 20px;
  --sizing-icon-width-md: 16px;
  --sizing-icon-width-sm: 12px;
  --sizing-icon-width-xl: 24px;
  --sizing-icon-width-xs: 10px;
  --spacing-around-comp-2xl: 16px;
  --spacing-around-comp-2xs: 2px;
  --spacing-around-comp-3xl: 24px;
  --spacing-around-comp-4xl: 32px;
  --spacing-around-comp-5xl: 40px;
  --spacing-around-comp-6xl: 48px;
  --spacing-around-comp-7xl: 56px;
  --spacing-around-comp-8xl: 64px;
  --spacing-around-comp-9xl: 72px;
  --spacing-around-comp-10xl: 80px;
  --spacing-around-comp-lg: 10px;
  --spacing-around-comp-md: 8px;
  --spacing-around-comp-sm: 6px;
  --spacing-around-comp-xl: 12px;
  --spacing-around-comp-xs: 4px;
  --spacing-between-comp-2xl: 20px;
  --spacing-between-comp-2xs: 2px;
  --spacing-between-comp-3xl: 24px;
  --spacing-between-comp-4xl: 32px;
  --spacing-between-comp-5xl: 40px;
  --spacing-between-comp-lg: 12px;
  --spacing-between-comp-md: 8px;
  --spacing-between-comp-sm: 6px;
  --spacing-between-comp-xl: 16px;
  --spacing-between-comp-xs: 4px;
  --color-bg-accent-base-disabled: #323232;
  --color-bg-accent-base-enabled: #323232;
  --color-bg-accent-base-focus: #414141;
  --color-bg-accent-base-hover: #414141;
  --color-bg-accent-base-press: #53555a;
  --color-bg-accent-blending-disabled: #8c8e97;
  --color-bg-info-weakest-static: #e9effc;
  --color-bg-neutral-base-static: #53555a;
  --color-bg-neutral-blending-disabled: #323232;
  --color-bg-neutral-weaker-static: #f2f3f8;
  --color-bg-neutral-weakest-disabled: #323232;
  --color-bg-neutral-weakest-enabled: #fff;
  --color-bg-neutral-weakest-focus: #fff;
  --color-bg-neutral-weakest-hover: #fff;
  --color-bg-neutral-weakest-static: #fff;
  --color-fg-error-base-static: #c8250e;
  --color-fg-info-base-static: #1656e3;
  --color-fg-neutral-base-static: #53555a;
  --color-fg-neutral-strong-activated: #323232;
  --color-fg-neutral-strong-disabled: #323232;
  --color-fg-neutral-strong-enabled: #323232;
  --color-fg-neutral-strong-focus: #323232;
  --color-fg-neutral-strong-hover: #323232;
  --color-fg-neutral-strong-press: #323232;
  --color-fg-neutral-strong-static: #323232;
  --color-fg-neutral-weak-static: #6d6f78;
  --color-fg-on-accent-base-disabled: #323232;
  --color-fg-on-accent-base-enabled: #fff;
  --color-fg-on-accent-base-focus: #fff;
  --color-fg-on-accent-base-hover: #fff;
  --color-fg-on-accent-base-press: #fff;
  --color-fg-on-accent-blending-disabled: #323232;
  --color-fg-on-accent-blending-enabled: #323232;
  --color-fg-on-accent-blending-focus: #323232;
  --color-fg-on-accent-blending-hover: #323232;
  --color-fg-on-accent-blending-press: #323232;
  --color-fg-on-neutral-blending-activated: #323232;
  --color-fg-on-neutral-blending-disabled: #323232;
  --color-fg-on-neutral-blending-enabled: #414141;
  --color-fg-on-neutral-blending-focus: #414141;
  --color-fg-on-neutral-blending-hover: #414141;
  --color-fg-on-neutral-blending-press: #414141;
  --color-fg-success-base-static: #167e16;
  --color-inner-border-accent-base-disabled: #323232;
  --color-inner-border-accent-base-enabled: #323232;
  --color-inner-border-accent-base-focus: #323232;
  --color-inner-border-accent-base-hover: #323232;
  --color-inner-border-accent-base-press: #323232;
  --color-inner-border-accent-weaker-disabled: #323232;
  --color-inner-border-accent-weaker-enabled: #53555a;
  --color-inner-border-accent-weaker-focus: #53555a;
  --color-inner-border-accent-weaker-hover: #53555a;
  --color-inner-border-accent-weaker-press: #53555a;
  --color-inner-border-accent-weakest-enabled: #dcdee5;
  --color-inner-border-accent-weakest-focus: #dcdee5;
  --color-inner-border-accent-weakest-hover: #dcdee5;
  --color-inner-border-accent-weakest-press: #dcdee5;
  --color-inner-border-neutral-base-activated: #323232;
  --color-inner-border-neutral-base-disabled: #323232;
  --color-inner-border-neutral-base-enabled: #53555a;
  --color-inner-border-neutral-base-focus: #53555a;
  --color-inner-border-neutral-base-hover: #53555a;
  --color-inner-border-neutral-base-press: #53555a;
  --color-inner-border-neutral-strongest-static: #323232;
  --color-inner-border-neutral-weaker-static: #dcdee5;
  --color-outer-border-interaction-base-focus: #346ae5;
  --font-body-lg-bold:
    700 normal 1rem/1.25rem system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Noto Sans, sans-serif;
  --font-body-lg-regular:
    400 normal 1rem/1.25rem system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Noto Sans, sans-serif;
  --font-body-md-bold:
    700 normal 0.875rem/1.25rem system-ui, -apple-system, Segoe UI, Roboto,
    Ubuntu, Cantarell, Noto Sans, sans-serif;
  --font-body-md-regular:
    400 normal 0.875rem/1.25rem system-ui, -apple-system, Segoe UI, Roboto,
    Ubuntu, Cantarell, Noto Sans, sans-serif;
  --font-body-sm-bold:
    700 normal 0.75rem/1rem system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Noto Sans, sans-serif;
  --font-body-sm-regular:
    400 normal 0.75rem/1rem system-ui, -apple-system, Segoe UI, Roboto, Ubuntu,
    Cantarell, Noto Sans, sans-serif;
  --font-body-xl-bold:
    700 normal 1.125rem/1.5rem system-ui, -apple-system, Segoe UI, Roboto,
    Ubuntu, Cantarell, Noto Sans, sans-serif;
  --font-body-xl-regular:
    400 normal 1.125rem/1.5rem system-ui, -apple-system, Segoe UI, Roboto,
    Ubuntu, Cantarell, Noto Sans, sans-serif;
  --font-label-lg-bold: 700 normal 1rem/1.5rem "FranceTV Brown";
  --font-label-lg-regular: 400 normal 1rem/1.5rem "FranceTV Brown";
  --font-label-md-bold: 700 normal 0.875rem/1.25rem "FranceTV Brown";
  --font-label-md-regular: 400 normal 0.875rem/1.25rem "FranceTV Brown";
  --font-label-sm-bold: 700 normal 0.75rem/1rem "FranceTV Brown";
  --font-label-sm-regular: 400 normal 0.75rem/1rem "FranceTV Brown";
  --font-label-xl-bold: 700 normal 1.25rem/1.5rem "FranceTV Brown";
  --font-label-xl-regular: 400 normal 1.25rem/1.5rem "FranceTV Brown";
  --font-lead-md: 400 normal 1.25rem/1.5rem "FranceTV Brown";
  --font-lead-sm: 400 normal 1rem/1.5rem "FranceTV Brown";
  --font-meta-lg-bold: 700 normal 1rem/1.5rem "FranceTV Brown";
  --font-meta-lg-regular: 400 normal 1rem/1.5rem "FranceTV Brown";
  --font-meta-sm-bold: 700 normal 0.75rem/1rem "FranceTV Brown";
  --font-meta-sm-regular: 400 normal 0.75rem/1rem "FranceTV Brown";
  --font-quote-md: 400 normal 1.25rem/1.75rem "FranceTV Brown";
  --font-size-meta-lg: 1rem;
  --font-size-meta-sm: 0.75rem;
  --font-size-quote-md: 1.25rem;
  --font-size-subtitle-2xl: 1.125rem;
  --font-size-subtitle-lg: 1rem;
  --font-size-title-2xl: 1.5rem;
  --font-size-title-lg: 1.25rem;
  --font-size-title-md: 1.125rem;
  --font-size-title-sm: 1rem;
  --font-size-title-xl: 1.25rem;
  --font-subtitle-2xl: 400 normal 1.125rem/1.5rem "FranceTV Brown";
  --font-subtitle-lg: 400 normal 1rem/1.5rem "FranceTV Brown";
  --font-subtitle-md: 400 normal 1rem/1.5rem "FranceTV Brown";
  --font-subtitle-sm: 400 normal 1rem/1.5rem "FranceTV Brown";
  --font-subtitle-xl: 400 normal 1.125rem/1.5rem "FranceTV Brown";
  --font-subtitle-xs: 400 normal 0.875rem/1.125rem "FranceTV Brown";
  --font-title-2xl: 700 normal 1.5rem/1.875rem "FranceTV Brown";
  --font-title-lg: 700 normal 1.25rem/1.625rem "FranceTV Brown";
  --font-title-md: 700 normal 1.125rem/1.5rem "FranceTV Brown";
  --font-title-sm: 700 normal 1rem/1.5rem "FranceTV Brown";
  --font-title-xl: 700 normal 1.25rem/1.625rem "FranceTV Brown";
  --font-title-xs: 400 normal 1rem/1.5rem "FranceTV Brown";
  --layout-gap-block-md: 24px;
  --layout-padding-horizontal-section-md: 16px;
  --layout-padding-vertical-section-md: 24px;
  --layout-padding-vertical-section-sm: 20px;
  --line-height-meta-sm: 1rem;
  --line-height-quote-md: 1.75rem;
  --line-height-subtitle-2xl: 1.5rem;
  --line-height-title-2xl: 1.875rem;
  --line-height-title-lg: 1.625rem;
  --line-height-title-md: 1.5rem;
  --line-height-title-xl: 1.625rem;
}
@media (min-width: 768px) {
  :root {
    --font-body-lg-bold:
      700 normal 1rem/1.25rem system-ui, -apple-system, Segoe UI, Roboto,
      Ubuntu, Cantarell, Noto Sans, sans-serif;
    --font-body-lg-regular:
      400 normal 1rem/1.25rem system-ui, -apple-system, Segoe UI, Roboto,
      Ubuntu, Cantarell, Noto Sans, sans-serif;
    --font-body-md-bold:
      700 normal 0.875rem/1.25rem system-ui, -apple-system, Segoe UI, Roboto,
      Ubuntu, Cantarell, Noto Sans, sans-serif;
    --font-body-md-regular:
      400 normal 0.875rem/1.25rem system-ui, -apple-system, Segoe UI, Roboto,
      Ubuntu, Cantarell, Noto Sans, sans-serif;
    --font-body-sm-bold:
      700 normal 0.75rem/1rem system-ui, -apple-system, Segoe UI, Roboto,
      Ubuntu, Cantarell, Noto Sans, sans-serif;
    --font-body-sm-regular:
      400 normal 0.75rem/1rem system-ui, -apple-system, Segoe UI, Roboto,
      Ubuntu, Cantarell, Noto Sans, sans-serif;
    --font-body-xl-bold:
      700 normal 1.125rem/1.5rem system-ui, -apple-system, Segoe UI, Roboto,
      Ubuntu, Cantarell, Noto Sans, sans-serif;
    --font-body-xl-regular:
      400 normal 1.125rem/1.5rem system-ui, -apple-system, Segoe UI, Roboto,
      Ubuntu, Cantarell, Noto Sans, sans-serif;
    --font-label-lg-bold: 700 normal 1rem/1.5rem "FranceTV Brown";
    --font-label-lg-regular: 400 normal 1rem/1.5rem "FranceTV Brown";
    --font-label-md-bold: 700 normal 0.875rem/1.25rem "FranceTV Brown";
    --font-label-md-regular: 400 normal 0.875rem/1.25rem "FranceTV Brown";
    --font-label-sm-bold: 700 normal 0.75rem/1rem "FranceTV Brown";
    --font-label-sm-regular: 400 normal 0.75rem/1rem "FranceTV Brown";
    --font-label-xl-bold: 700 normal 1.25rem/1.5rem "FranceTV Brown";
    --font-label-xl-regular: 400 normal 1.25rem/1.5rem "FranceTV Brown";
    --font-lead-md: 400 normal 1.25rem/1.5rem "FranceTV Brown";
    --font-lead-sm: 400 normal 1rem/1.5rem "FranceTV Brown";
    --font-meta-lg-bold: 700 normal 1rem/1.5rem "FranceTV Brown";
    --font-meta-lg-regular: 400 normal 1rem/1.5rem "FranceTV Brown";
    --font-meta-sm-bold: 700 normal 0.75rem/1rem "FranceTV Brown";
    --font-meta-sm-regular: 400 normal 0.75rem/1rem "FranceTV Brown";
    --font-quote-md: 400 normal 1.25rem/1.75rem "FranceTV Brown";
    --font-size-meta-lg: 1rem;
    --font-size-meta-sm: 0.75rem;
    --font-size-quote-md: 1.25rem;
    --font-size-subtitle-2xl: 1.125rem;
    --font-size-subtitle-lg: 1rem;
    --font-size-title-2xl: 1.5rem;
    --font-size-title-lg: 1.25rem;
    --font-size-title-md: 1.125rem;
    --font-size-title-sm: 1rem;
    --font-size-title-xl: 1.25rem;
    --font-subtitle-2xl: 400 normal 1.125rem/1.5rem "FranceTV Brown";
    --font-subtitle-lg: 400 normal 1rem/1.5rem "FranceTV Brown";
    --font-subtitle-md: 400 normal 1rem/1.5rem "FranceTV Brown";
    --font-subtitle-sm: 400 normal 1rem/1.5rem "FranceTV Brown";
    --font-subtitle-xl: 400 normal 1.125rem/1.5rem "FranceTV Brown";
    --font-subtitle-xs: 400 normal 0.875rem/1.125rem "FranceTV Brown";
    --font-title-2xl: 700 normal 1.5rem/1.875rem "FranceTV Brown";
    --font-title-lg: 700 normal 1.25rem/1.625rem "FranceTV Brown";
    --font-title-md: 700 normal 1.125rem/1.5rem "FranceTV Brown";
    --font-title-sm: 700 normal 1rem/1.5rem "FranceTV Brown";
    --font-title-xl: 700 normal 1.25rem/1.625rem "FranceTV Brown";
    --font-title-xs: 400 normal 1rem/1.5rem "FranceTV Brown";
    --layout-gap-block-md: 32px;
    --layout-padding-horizontal-section-md: 32px;
    --layout-padding-vertical-section-md: 32px;
    --layout-padding-vertical-section-sm: 24px;
    --line-height-meta-sm: 1rem;
    --line-height-quote-md: 1.75rem;
    --line-height-subtitle-2xl: 1.5rem;
    --line-height-title-2xl: 1.875rem;
    --line-height-title-lg: 1.625rem;
    --line-height-title-md: 1.5rem;
    --line-height-title-xl: 1.625rem;
  }
}
@media (min-width: 1200px) {
  :root {
    --font-body-lg-bold:
      700 normal 1rem/1.25rem system-ui, -apple-system, Segoe UI, Roboto,
      Ubuntu, Cantarell, Noto Sans, sans-serif;
    --font-body-lg-regular:
      400 normal 1rem/1.25rem system-ui, -apple-system, Segoe UI, Roboto,
      Ubuntu, Cantarell, Noto Sans, sans-serif;
    --font-body-md-bold:
      700 normal 0.875rem/1.25rem system-ui, -apple-system, Segoe UI, Roboto,
      Ubuntu, Cantarell, Noto Sans, sans-serif;
    --font-body-md-regular:
      400 normal 0.875rem/1.25rem system-ui, -apple-system, Segoe UI, Roboto,
      Ubuntu, Cantarell, Noto Sans, sans-serif;
    --font-body-sm-bold:
      700 normal 0.75rem/1rem system-ui, -apple-system, Segoe UI, Roboto,
      Ubuntu, Cantarell, Noto Sans, sans-serif;
    --font-body-sm-regular:
      400 normal 0.75rem/1rem system-ui, -apple-system, Segoe UI, Roboto,
      Ubuntu, Cantarell, Noto Sans, sans-serif;
    --font-body-xl-bold:
      700 normal 1.125rem/1.5rem system-ui, -apple-system, Segoe UI, Roboto,
      Ubuntu, Cantarell, Noto Sans, sans-serif;
    --font-body-xl-regular:
      400 normal 1.125rem/1.5rem system-ui, -apple-system, Segoe UI, Roboto,
      Ubuntu, Cantarell, Noto Sans, sans-serif;
    --font-label-lg-bold: 700 normal 1rem/1.5rem "FranceTV Brown";
    --font-label-lg-regular: 400 normal 1rem/1.5rem "FranceTV Brown";
    --font-label-md-bold: 700 normal 0.875rem/1.25rem "FranceTV Brown";
    --font-label-md-regular: 400 normal 0.875rem/1.25rem "FranceTV Brown";
    --font-label-sm-bold: 700 normal 0.75rem/1rem "FranceTV Brown";
    --font-label-sm-regular: 400 normal 0.75rem/1rem "FranceTV Brown";
    --font-label-xl-bold: 700 normal 1.25rem/1.5rem "FranceTV Brown";
    --font-label-xl-regular: 400 normal 1.25rem/1.5rem "FranceTV Brown";
    --font-lead-md: 400 normal 1.25rem/1.5rem "FranceTV Brown";
    --font-lead-sm: 400 normal 1rem/1.5rem "FranceTV Brown";
    --font-meta-lg-bold: 700 normal 1.125rem/1.5rem "FranceTV Brown";
    --font-meta-lg-regular: 400 normal 1.125rem/1.5rem "FranceTV Brown";
    --font-meta-sm-bold: 700 normal 0.875rem/1.25rem "FranceTV Brown";
    --font-meta-sm-regular: 400 normal 0.875rem/1.25rem "FranceTV Brown";
    --font-quote-md: 400 normal 1.5rem/2rem "FranceTV Brown";
    --font-size-meta-lg: 1.125rem;
    --font-size-meta-sm: 0.875rem;
    --font-size-quote-md: 1.5rem;
    --font-size-subtitle-2xl: 1.25rem;
    --font-size-subtitle-lg: 1.125rem;
    --font-size-title-2xl: 2rem;
    --font-size-title-lg: 1.5rem;
    --font-size-title-md: 1.25rem;
    --font-size-title-sm: 1.125rem;
    --font-size-title-xl: 1.75rem;
    --font-subtitle-2xl: 400 normal 1.25rem/1.625rem "FranceTV Brown";
    --font-subtitle-lg: 400 normal 1.125rem/1.5rem "FranceTV Brown";
    --font-subtitle-md: 400 normal 1rem/1.5rem "FranceTV Brown";
    --font-subtitle-sm: 400 normal 1rem/1.5rem "FranceTV Brown";
    --font-subtitle-xl: 400 normal 1.125rem/1.5rem "FranceTV Brown";
    --font-subtitle-xs: 400 normal 0.875rem/1.125rem "FranceTV Brown";
    --font-title-2xl: 700 normal 2rem/3rem "FranceTV Brown";
    --font-title-lg: 700 normal 1.5rem/1.875rem "FranceTV Brown";
    --font-title-md: 700 normal 1.25rem/1.625rem "FranceTV Brown";
    --font-title-sm: 700 normal 1.125rem/1.5rem "FranceTV Brown";
    --font-title-xl: 700 normal 1.75rem/2.25rem "FranceTV Brown";
    --font-title-xs: 400 normal 1rem/1.5rem "FranceTV Brown";
    --layout-gap-block-md: 32px;
    --layout-padding-horizontal-section-md: 56px;
    --layout-padding-vertical-section-md: 40px;
    --layout-padding-vertical-section-sm: 24px;
    --line-height-meta-sm: 1.25rem;
    --line-height-quote-md: 2rem;
    --line-height-subtitle-2xl: 1.625rem;
    --line-height-title-2xl: 3rem;
    --line-height-title-lg: 1.875rem;
    --line-height-title-md: 1.625rem;
    --line-height-title-xl: 2.25rem;
  }
}
:root {
  --small: 560px;
  --medium: 880px;
  --large: 1200px;
  --header-mobile-height: 60px;
  --container-max-width: 1440px;
  --z-index-sticky-nav: 10;
  --z-index-snackbar: 20;
  --z-index-notification: 30;
  --z-index-sticky: 40;
  --z-index-dropdown: 50;
  --z-index-header: 60;
  --z-index-dialog: 70;
  --z-index-drawer: 80;
  --z-index-debug-grid: 90;
}
.sr-only {
  border: 0;
  height: 1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
@media screen and (min-width: 1200px) {
  .hidden-on-large {
    display: none !important;
    visibility: hidden !important;
  }
}
@media screen and (max-width: 1199px) {
  .hidden-on-xs-small-medium {
    display: none !important;
    visibility: hidden !important;
  }
}
body {
  background-color: #fff;
}
.taxonomy-title:has(+ .common-nav),
.taxonomy-title:has(+ .taxonomy-result-menu) {
  margin-bottom: 0;
}
.fi-button:focus-visible {
  outline-offset: 2px;
}
.fi-button:focus-visible {
  background-color: var(--background-color-hover);
  opacity: 1;
}
.fi-button--dark:focus-visible {
  background-color: var(--background-color-dark-hover);
}
.fi-button--hidden:focus-visible {
  pointer-events: inherit;
}
.animated-icon {
  --color: var(--icon-color, #5c5c5c);
  --color-played: var(--icon-color-played, #202020);
  --color-dark: var(--icon-color-dark, #b9b9b9);
  --color-played-dark: var(--icon-color-played-dark, #f8f8f8);
  min-height: 20px;
  min-width: 20px;
}
.animated-icon--dark {
  --color: var(--color-dark);
  --color-played: var(--color-played-dark);
}
.animated-icon--menu-cross {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.animated-icon--menu-cross-line,
.animated-icon--menu-cross-line:after,
.animated-icon--menu-cross-line:before {
  background-color: var(--color);
  height: 1.5px;
  width: 16px;
}
.animated-icon--menu-cross-line {
  position: relative;
}
.animated-icon--menu-cross-line:after,
.animated-icon--menu-cross-line:before {
  content: "";
  left: 0;
  position: absolute;
}
.animated-icon--menu-cross-line:before {
  top: -5px;
}
.animated-icon--menu-cross-line:after {
  top: 5px;
}
.animated-icon--search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.animated-icon--search-circle {
  border: 1.5px solid var(--color);
  border-radius: 50%;
  height: 14px;
  left: -2px;
  position: relative;
  top: -2px;
  width: 14px;
}
.animated-icon--search-circle:after {
  background-color: var(--color);
  content: "";
  height: 1.5px;
  position: absolute;
  -webkit-transform: translate(9px, 12px) rotate(45deg);
  transform: translate(9px, 12px) rotate(45deg);
  width: 7px;
}
.navigation-item {
  --outline-offset: -2px;
  color: #b9b9b9;
  font-family: BrownRegular, sans-serif;
  font-weight: 400;
  height: 100%;
  line-height: normal;
  position: relative;
  -webkit-transition: color 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: color 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.navigation-item__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  min-width: 32px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background-color: transparent;
  color: inherit;
  cursor: pointer;
  justify-content: center;
  -webkit-text-decoration: none;
  text-decoration: none;
}
@media screen and (max-width: 879px) {
  .navigation-item__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2px;
    padding: 10px 4px;
  }
}
@media screen and (min-width: 880px) {
  .navigation-item__link {
    gap: 8px;
    padding: 18px 4px;
  }
}
.navigation-item__label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 1200px) {
  .navigation-item__label {
    max-width: 180px;
  }
}
@media screen and (min-width: 1444px) {
  .navigation-item__label {
    max-width: 260px;
  }
}
.navigation-item:after,
.navigation-item__right-icon {
  -webkit-transition: -webkit-transform 0.5s
    cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition:
    transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1),
    -webkit-transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.navigation-item:after {
  background-color: #f8f8f8;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 4px;
  position: absolute;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  width: calc(100% - 8px);
}
.navigation-item--accent,
.navigation-item--accent:not(.navigation-item--live),
.navigation-item:active,
.navigation-item:active:not(.navigation-item--live),
.navigation-item:hover,
.navigation-item:hover:not(.navigation-item--live) {
  color: #f8f8f8;
}
.navigation-item:has(.navigation-item__link[aria-expanded="true"]):after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}
@media screen and (max-width: 879px) {
  .navigation-item {
    font-size: 1.2rem;
  }
}
@media screen and (min-width: 880px) {
  .navigation-item {
    font-size: 1.4rem;
  }
  .navigation-item:active:after,
  .navigation-item:hover:after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
}
.animated-icon--tv {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.animated-icon--tv,
.animated-icon--tv-frame {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.animated-icon--tv-frame {
  border-radius: 2px;
  -webkit-box-shadow: inset 0 0 0 1.5px var(--color);
  box-shadow: inset 0 0 0 1.5px var(--color);
  height: 12px;
  margin-top: -4px;
  width: 16px;
}
.animated-icon--tv-frame:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1.5px;
  position: relative;
  top: 9.5px;
  width: 8px;
  -ms-flex-item-align: center;
  align-self: center;
  background-color: var(--color);
  content: "";
}
.animated-icon--radio {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.animated-icon--radio,
.animated-icon--radio-headset {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.animated-icon--radio-headset {
  border: 1.5px solid var(--color);
  border-bottom: none;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  height: 14px;
  position: relative;
  width: 12px;
}
.animated-icon--radio-headset:after,
.animated-icon--radio-headset:before {
  border: 1.5px solid var(--color);
  content: "";
  height: 7px;
  position: absolute;
  width: 5px;
}
.animated-icon--radio-headset:before {
  border-radius: 5px 0 0 5px;
  border-right: none;
  left: -5px;
  top: 6px;
}
.animated-icon--radio-headset:after {
  border-left: none;
  border-radius: 0 5px 5px 0;
  right: -5px;
  top: 6px;
}
.animated-icon--live {
  --icon-color: #e61e00;
  --icon-color-played: var(--icon-color);
  --icon-color-dark: #e61e00;
  --icon-color-played-dark: var(--icon-color-dark);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.animated-icon--live-bullet,
.animated-icon--live-bullet:before {
  background-color: var(--color);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}
.animated-icon--live-bullet {
  position: relative;
}
.animated-icon--live-bullet:before {
  content: "";
  opacity: 0;
  position: absolute;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-property:
    opacity,
    -webkit-transform;
  transition-property:
    opacity,
    -webkit-transform;
  transition-property: transform, opacity;
  transition-property:
    transform,
    opacity,
    -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
}
.dropdown {
  --background-color: #fff;
  --link-hover-background-color: #eef0f8;
  --link-color: #202020;
  --separator-color: #dcdee8;
  position: relative;
}
.dropdown__list {
  --outline-offset: -2px;
  background-color: var(--background-color);
  border-radius: 8px;
  -webkit-box-shadow:
    0 2px 8px -6px rgba(65, 65, 65, 0.149),
    0 6px 16px 6px rgba(65, 65, 65, 0.102);
  box-shadow:
    0 2px 8px -6px rgba(65, 65, 65, 0.149),
    0 6px 16px 6px rgba(65, 65, 65, 0.102);
  left: 50%;
  max-height: 50dvh;
  max-width: 200px;
  min-width: 100%;
  min-width: -webkit-max-content;
  min-width: -moz-max-content;
  min-width: max-content;
  opacity: 0;
  overflow-y: auto;
  position: absolute;
  top: 100%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
  -webkit-transition-property:
    opacity,
    visibility,
    -webkit-transform;
  transition-property:
    opacity,
    visibility,
    -webkit-transform;
  transition-property: transform, opacity, visibility;
  transition-property:
    transform,
    opacity,
    visibility,
    -webkit-transform;
  -webkit-transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  transition-timing-function: cubic-bezier(0.645, 0.045, 0.355, 1);
  visibility: hidden;
  z-index: var(--z-index-dropdown);
}
.dropdown__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 200px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: 0;
  color: var(--link-color);
  -webkit-column-gap: 8px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  font-family: BrownRegular, sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 125%;
  padding: 12px 16px;
  -webkit-text-decoration: none;
  text-decoration: none;
  -webkit-transition: background-color 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: background-color 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.dropdown__link[target="_blank"]:after {
  background-color: var(--link-color);
  content: "-";
  display: inline;
  margin-left: auto;
  -webkit-mask: url(https://www.franceinfo.fr/assets/common/images/galaxie-icons/external-link-e092162c.svg)
    center no-repeat;
  mask: url(https://www.franceinfo.fr/assets/common/images/galaxie-icons/external-link-e092162c.svg)
    center no-repeat;
  min-width: 16px;
  padding-top: 1px;
  vertical-align: middle;
}
.dropdown__link:focus-visible,
.dropdown__link:hover {
  background-color: var(--link-hover-background-color);
}
.dropdown__link:active {
  border-radius: 8px;
}
.dropdown__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}
.dropdown__item:not(:last-of-type) {
  border-bottom: 1px solid var(--separator-color);
}
.dropdown__item:first-child .dropdown__link {
  border-radius: 8px 8px 0 0;
}
.dropdown__item:last-child .dropdown__link {
  border-radius: 0 0 8px 8px;
}
.dropdown--alternative {
  --background-color: #fafbff;
}
.dropdown--dark {
  --background-color: #202020;
  --link-hover-background-color: #414141;
  --link-color: #f8f8f8;
  --separator-color: #414141;
}
.dropdown--dark .dropdown__list {
  -webkit-box-shadow:
    0 2px 8px -6px rgba(65, 65, 65, 0.149),
    0 6px 16px 6px rgba(65, 65, 65, 0.102);
  box-shadow:
    0 2px 8px -6px rgba(65, 65, 65, 0.149),
    0 6px 16px 6px rgba(65, 65, 65, 0.102);
}
.dropdown--dark.dropdown--alternative {
  --background-color: #323232;
}
.animated-icon--menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.animated-icon--menu-line,
.animated-icon--menu-line:after,
.animated-icon--menu-line:before {
  background-color: var(--color);
  height: 1.5px;
  width: 16px;
}
.animated-icon--menu-line {
  position: relative;
  top: -5px;
}
.animated-icon--menu-line:after,
.animated-icon--menu-line:before {
  content: "";
  left: 0;
  position: absolute;
}
.animated-icon--menu-line:before {
  top: 5px;
}
.animated-icon--menu-line:after {
  top: 10px;
}
.search-bar .input-field__input:focus-visible {
  outline: none;
}
.search-bar .input-field--dark .input-field__input:focus-visible {
  outline: none;
}
.header {
  --header-border-color: #414141;
  --header-separator-color: #414141;
  --sub-header-bg-color: transparent;
  --outline-color: #fff;
  --baseIndex: 1;
  background-color: #202020;
  position: sticky;
  top: 0;
  -webkit-transition: -webkit-transform 0.5s
    cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: -webkit-transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition:
    transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1),
    -webkit-transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
  will-change: transform;
  z-index: calc(var(--z-index-header));
}
.header-main,
.header-sub {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 1200px;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  gap: 12px;
}
@media screen and (max-width: 879px) {
  .header-main,
  .header-sub {
    margin-left: auto;
    margin-right: auto;
    padding-left: 12px;
    padding-right: 12px;
    width: 100%;
  }
}
@media screen and (min-width: 880px) and (max-width: 1199px) {
  .header-main,
  .header-sub {
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .header-main,
  .header-sub {
    margin-left: auto;
    margin-right: auto;
    padding-left: 56px;
    padding-right: 56px;
    width: 100%;
  }
}
.header-main__nav,
.header-sub__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.header-main__entries,
.header-sub__entries {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 1199px) {
  .header-main__entries,
  .header-sub__entries {
    gap: 4px;
  }
}
@media screen and (min-width: 1200px) {
  .header-main__entries,
  .header-sub__entries {
    gap: 8px;
  }
}
.header-main {
  background: transparent;
  margin-bottom: 1px;
  position: relative;
  z-index: calc(var(--baseIndex) + 1);
}
.header-main:before {
  background: transparent;
  border-bottom: 1px solid var(--header-border-color);
  content: "";
  display: block;
  height: 100%;
  height: calc(100% + 1px);
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: absolute;
  right: 50%;
  top: 0;
  width: 99vw;
  z-index: -1;
}
@media screen and (max-width: 1199px) {
  .header-main {
    --header-border-color: #414141;
    height: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .header-main {
    height: 56px;
  }
}
.header-main__menu {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}
.header-main__logo-link {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}
.header-main__nav {
  -webkit-box-ordinal-group: 5;
  -ms-flex-order: 4;
  order: 4;
}
.header-main__menu {
  --outline-offset: 2px;
  min-height: 24px;
  min-width: 24px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-item-align: center;
  align-self: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  background-color: transparent;
  border: none;
  border-radius: 24px;
  color: #fff;
  justify-content: center;
}
.header-main__logo-link,
.header-main__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.header-main__logo-link {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  flex-shrink: 0;
}
.header-main__logo {
  -ms-flex-item-align: center;
  align-self: center;
}
@media screen and (max-width: 1199px) {
  .header-main__logo {
    height: 32px;
    width: auto;
  }
}
@media screen and (max-width: 375px) {
  .header-main__logo {
    height: auto;
    max-height: 32px;
    max-width: 100%;
  }
}
.header-main__nav {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.header-main .header-main__radio-entry,
.header-main .header-main__tv-entry {
  white-space: nowrap;
}
.header-main .header-main__account-entry.user--not-logged .account--logged {
  display: none;
}
@media screen and (max-width: 879px) {
  .header-main__account-entry .navigation-item__label,
  .header-main__account-entry .navigation-item__right-icon,
  .header-main__search-entry,
  .header-main__services-entry {
    display: none;
  }
  .header-main__account-entry.mobile-last-entry {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
  }
}
@media screen and (min-width: 880px) and (max-width: 1199px) {
  .header-main .header-main__search-entry .navigation-item__label {
    display: none;
  }
  .header-main .header-main__search-entry .navigation-item__link {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
@media screen and (min-width: 1200px) {
  .header-main__menu {
    display: none;
  }
}
.header-sub {
  background: transparent;
  margin-bottom: 1px;
  position: relative;
  z-index: var(--baseIndex);
}
.header-sub:before {
  background: var(--sub-header-bg-color);
  border-bottom: 1px solid var(--header-border-color);
  content: "";
  display: block;
  height: 100%;
  height: calc(100% + 1px);
  left: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  position: absolute;
  right: 50%;
  top: 0;
  width: 99vw;
  z-index: -1;
}
@media screen and (max-width: 1199px) {
  .header-sub {
    display: none;
    visibility: hidden;
  }
  .header .navigation-item.left-separator {
    margin-left: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .header .navigation-item.left-separator {
    margin-left: 16px;
  }
}
.header .navigation-item.left-separator:before {
  background-color: var(--header-separator-color);
  content: "";
  height: 32px;
  position: absolute;
  width: 1px;
}
@media screen and (max-width: 1199px) {
  .header .navigation-item.left-separator:before {
    left: -8px;
    top: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .header .navigation-item.left-separator:before {
    left: -12px;
    top: 12px;
  }
}
@media screen and (max-width: 1199px) {
  .header .navigation-item.right-separator {
    margin-right: 12px;
  }
}
@media screen and (min-width: 1200px) {
  .header .navigation-item.right-separator {
    margin-right: 16px;
  }
}
.header .navigation-item.right-separator:before {
  background-color: var(--header-separator-color);
  content: "";
  height: 32px;
  position: absolute;
  width: 1px;
}
@media screen and (max-width: 1199px) {
  .header .navigation-item.right-separator:before {
    right: -8px;
    top: 14px;
  }
}
@media screen and (min-width: 1200px) {
  .header .navigation-item.right-separator:before {
    right: -12px;
    top: 12px;
  }
}
.disclaimer-text a:focus-visible {
  border-bottom: 1px solid;
  cursor: pointer;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.disclaimer-text a:focus-visible {
  border-radius: 2px;
  outline: 2px solid #2c69f6;
  outline: 2px solid var(--outline-color, #2c69f6);
  outline-offset: 2px;
  outline-offset: var(--outline-offset, 2px);
}
.taxonomy-title__page a:focus-visible {
  border-bottom: 1px solid;
  cursor: pointer;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.taxonomy-title__page a:focus-visible {
  border-radius: 2px;
  outline: 2px solid #2c69f6;
  outline: 2px solid var(--outline-color, #2c69f6);
  outline-offset: 2px;
  outline-offset: var(--outline-offset, 2px);
}
.fi-tag:focus-visible {
  background-color: var(--bg-color-hover);
  border: 1px solid transparent;
  border: 1px solid var(--border-color-hover, transparent);
  color: var(--text-color-hover);
}
.fi-tag:focus-visible {
  outline: 2px solid #2c69f6;
  outline: 2px solid var(--outline-color, #2c69f6);
  outline-offset: 2px;
  outline-offset: var(--outline-offset, 2px);
}
.fi-tag--dark:focus-visible {
  outline: 2px solid #5687f8;
  outline: 2px solid var(--outline-color, #5687f8);
  outline-offset: 2px;
  outline-offset: var(--outline-offset, 2px);
}
.card-article-hero__link:focus-visible .card-article-hero__title {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-underline-position: under;
}
.card-article-list-l__link:focus-visible .card-article-list-l__title {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-underline-position: under;
}
@media (min-width: 1200px) {
  @container (width < 340px) {
  }
}
.card-folder__nb-contents a:focus-visible {
  border-bottom: 1px solid;
  cursor: pointer;
  -webkit-text-decoration: none;
  text-decoration: none;
}
.card-folder__nb-contents a:focus-visible {
  border-radius: 2px;
  outline: 2px solid #2c69f6;
  outline: 2px solid var(--outline-color, #2c69f6);
  outline-offset: 2px;
  outline-offset: var(--outline-offset, 2px);
}
@media screen and (min-width: 1200px) {
  @container (width < 340px) {
  }
}
.card-folder__link:focus-visible .card-folder__title {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-underline-position: under;
}
.card-folder__link:focus-visible .card-folder__img {
  -webkit-transform: scale(1.02);
  transform: scale(1.02);
}
.card-article-highlight__link:focus-visible .card-article-highlight__title {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-underline-position: under;
}
.card-article-m__link:focus-visible .card-article-m__title {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-underline-position: under;
}
.card-article-m__metadatas a:focus-visible {
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-underline-position: under;
}
