@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/ubuntu-300.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/ubuntu-400.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/ubuntu-500.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Ubuntu";
  src: url("../fonts/ubuntu-700.woff2") format("woff2");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Raleway";
  src: url("../fonts/raleway-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: block;
}

:root {
  --ink: #303030;
  --text: #818181;
  --blue: #29abe2;
  --slate: #4a647c;
  --canvas: #f6f6f6;
  --white: #ffffff;
  --footer: #262626;
  --footer-bottom: #1b1b1b;
  --line: #dedede;
  --container: 1100px;
  --header-height: 133px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 150px;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background: var(--canvas);
  font-family: "Ubuntu", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

a:hover,
a:focus-visible {
  color: var(--blue);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 3px;
}

.fa {
  font-family: "FontAwesome";
  font-style: normal;
  font-weight: 400;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 9px 14px;
  color: var(--white);
  background: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  color: var(--white);
  transform: translateY(0);
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 100;
  width: 100%;
  background: var(--white);
}

.topbar {
  height: 33px;
  color: var(--white);
  background: var(--slate);
  font-size: 13px;
  line-height: 33px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding-inline: 72px;
}

.topbar a {
  color: var(--white);
}

.topbar a:hover,
.topbar a:focus-visible {
  color: #d9f3ff;
}

.topbar-separator {
  margin-inline: 4px;
}

.social-link {
  display: inline-grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #3b5998;
  font-size: 14px;
  line-height: 1;
}

.mainbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
  padding-inline: 45px;
  background: var(--white);
}

.brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
}

.brand img {
  width: 328px;
  height: 90px;
  object-fit: contain;
  object-position: left center;
}

.menu-toggle,
.submenu-toggle {
  display: none;
}

.main-nav {
  height: 100%;
}

.main-nav > ul {
  display: flex;
  align-items: stretch;
  height: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
}

.nav-item + .nav-item::before {
  position: absolute;
  top: 50%;
  left: -1px;
  color: var(--ink);
  content: "|";
  font-size: 16px;
  font-weight: 400;
  transform: translateY(-52%);
}

.nav-item > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding-inline: 17px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 100px;
  white-space: nowrap;
}

.nav-item.is-active > a,
.nav-item > a:hover,
.nav-item > a:focus-visible {
  color: var(--blue);
}

.submenu {
  position: absolute;
  top: calc(100% - 1px);
  left: 0;
  width: 330px;
  margin: 0;
  padding: 10px 0;
  list-style: none;
  visibility: hidden;
  opacity: 0;
  background: var(--white);
  border-top: 3px solid var(--blue);
  box-shadow: 0 12px 22px rgb(0 0 0 / 12%);
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.submenu a {
  display: block;
  padding: 9px 18px;
  color: var(--text);
  font-size: 13px;
  line-height: 20px;
}

.submenu a:hover,
.submenu a:focus-visible {
  color: var(--blue);
  background: #f3f8fa;
}

.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.home-hero {
  position: relative;
  height: 550px;
  overflow: hidden;
  color: #111;
  background-color: #8ccce9;
  background-image: url("../images/Paysage_ATA_site-1.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  padding-top: 35px;
  text-align: center;
}

.hero-content h1 {
  margin: 0;
  color: #111;
  font-family: "Ubuntu", sans-serif;
  font-size: clamp(35px, 3.4vw, 48px);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.28;
  opacity: 0;
  transform: translateY(-18px);
  animation: hero-enter 620ms 120ms ease forwards;
}

.hero-content > p {
  margin: 26px 0 0;
  color: #111;
  font-size: 25px;
  font-weight: 400;
  line-height: 1.35;
  opacity: 0;
  transform: translateY(15px);
  animation: hero-enter 600ms 280ms ease forwards;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 44px;
}

.hero-badges img {
  width: 75px;
  height: 107px;
  object-fit: cover;
  opacity: 0;
  transform: translateY(22px);
  animation: hero-enter 520ms var(--badge-delay) ease forwards;
}

@keyframes hero-enter {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-indicator {
  position: absolute;
  z-index: 3;
  bottom: 12px;
  left: 50%;
  width: 37px;
  height: 56px;
  border: 3px solid var(--white);
  border-radius: 19px;
  transform: translateX(-50%);
}

.scroll-indicator span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 10px;
  margin-left: -2px;
  border-radius: 3px;
  background: var(--white);
  animation: scroll-wheel 1.7s ease infinite;
}

@keyframes scroll-wheel {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  30% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(18px);
  }
}

.home-content {
  padding-top: 30px;
  padding-bottom: 0;
}

.callout {
  display: grid;
  min-height: 204px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 45px;
  padding: 35px 21px 35px 70px;
  color: var(--white);
  background: var(--blue);
}

.callout p {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 26px;
  text-align: center;
}

.callout strong {
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 43px;
  align-items: center;
  justify-content: center;
  padding: 0 23px;
  border: 2px solid currentColor;
  border-radius: 3px;
  color: var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 39px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.button-light {
  flex: 0 0 auto;
  color: var(--white);
}

.button-light:hover,
.button-light:focus-visible {
  color: var(--blue);
  background: var(--white);
  border-color: var(--white);
}

.button-dark:hover,
.button-dark:focus-visible {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button-small {
  min-height: 36px;
  padding-inline: 17px;
  font-size: 12px;
  line-height: 32px;
}

.short-rule {
  width: 50px;
  height: 2px;
  margin-top: 61px;
  background: #111;
}

.programmes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-top: 30px;
}

.programme-card {
  min-width: 0;
}

.programme-card img {
  width: auto;
  height: 87px;
  object-fit: contain;
  object-position: left bottom;
}

.programme-card h2 {
  min-height: 25px;
  margin: 16px 0 8px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 25px;
  text-transform: uppercase;
}

.latest-news {
  padding: 58px 0 74px;
}

.latest-news > h2 {
  margin: 0;
  color: #55afd8;
  font-size: 48px;
  font-weight: 300;
  line-height: 1.2;
}

.latest-news > .short-rule {
  margin-top: 17px;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 22px;
  padding-top: 30px;
}

.news-card {
  display: grid;
  min-height: 266px;
  grid-template-columns: 66px 1fr;
  padding: 35px 0 0;
  overflow: hidden;
  background: var(--white);
}

.news-date,
.blog-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: var(--ink);
  line-height: 1.4;
}

.news-date {
  border-right: 1px solid #efefef;
}

.news-date strong,
.blog-date strong {
  font-size: 15px;
  font-weight: 600;
}

.news-date span,
.blog-date span {
  margin-top: 3px;
  color: var(--text);
}

.news-body {
  min-width: 0;
  padding: 0 22px 0 15px;
}

.news-body h3 {
  margin: 0 0 20px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 23.57px;
  text-transform: uppercase;
}

.news-body p {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--text);
  font-size: 14px;
  line-height: 26px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.site-footer {
  color: var(--text);
}

.footer-main {
  min-height: 378px;
  padding: 72px 0 52px;
  background: var(--footer);
}

.footer-grid {
  display: grid;
  width: min(var(--container), calc(100% - 40px));
  grid-template-columns: 260px 1fr 360px;
  gap: 35px;
  margin-inline: auto;
}

.footer-grid h2 {
  margin: 0 0 26px;
  color: var(--white);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 23.57px;
  text-transform: uppercase;
}

.footer-grid p {
  margin: 0 0 14px;
}

.footer-grid a:hover,
.footer-grid a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: var(--white);
}

.footer-icon {
  width: 18px;
  color: #b7b7b7;
}

.footer-bottom {
  display: flex;
  min-height: 53px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: var(--footer-bottom);
  font-size: 12px;
  line-height: 22px;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
}

.page-title {
  display: flex;
  min-height: 300px;
  align-items: center;
  background: var(--canvas);
}

.page-title h1 {
  margin: 0;
  color: var(--ink);
  font-size: 47px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 60px;
  text-transform: uppercase;
}

.page-section {
  padding: 30px 0 63px;
}

.page-intro {
  margin: 0 0 28px;
  color: var(--ink);
  font-size: 16px;
}

.content-copy {
  color: var(--text);
}

.content-copy::after {
  display: table;
  clear: both;
  content: "";
}

.content-copy h2,
.content-copy h3 {
  color: var(--ink);
  font-weight: 600;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}

.content-copy h2 {
  margin: 28px 0 12px;
  font-size: 20px;
  line-height: 28px;
}

.content-copy h2:first-child {
  margin-top: 0;
}

.content-copy h3 {
  margin: 24px 0 10px;
  font-size: 15px;
  line-height: 24px;
}

.content-copy p {
  margin: 0 0 14px;
}

.content-copy ul,
.content-copy ol {
  margin: 0 0 18px;
  padding-left: 21px;
}

.content-copy a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.content-copy blockquote {
  margin: 20px 0;
  padding: 15px 20px;
  color: #6d6d6d;
  border-left: 3px solid var(--blue);
  background: #fff;
}

.atout-france,
.content-photo {
  float: right;
  margin: 0 0 22px 40px;
}

.atout-france {
  width: 300px;
}

.content-photo {
  width: 400px;
}

.tabs-list {
  display: flex;
  align-items: flex-end;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: thin;
}

.tab-button {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0 12px;
  color: #b4b4b4;
  background: transparent;
  border: 1px solid transparent;
  border-bottom: 0;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 40px;
  text-transform: uppercase;
  cursor: pointer;
}

.tab-button:hover,
.tab-button:focus-visible {
  color: var(--ink);
}

.tab-button.is-active {
  color: var(--ink);
  background: var(--canvas);
  border-color: var(--line);
  transform: translateY(1px);
}

.tabs-panels {
  min-height: 350px;
  padding-top: 19px;
}

.tab-panel {
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.tab-panel.is-active {
  opacity: 1;
  transform: translateY(0);
}

.tab-panel[hidden] {
  display: none;
}

.table-scroll {
  width: 100%;
  margin: 18px 0 4px;
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--white);
}

.procedure-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  table-layout: fixed;
}

.procedure-table th,
.procedure-table td {
  padding: 10px 12px;
  border-right: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
  text-align: left;
  vertical-align: top;
}

.procedure-table thead th {
  color: var(--white);
  background: var(--slate);
  font-weight: 700;
  letter-spacing: 0.5px;
}

.procedure-table th:first-child {
  width: 25%;
}

.procedure-table th:last-child,
.procedure-table td:last-child {
  width: 19%;
  border-right: 0;
}

.procedure-table tbody th {
  color: var(--ink);
  background: #fafafa;
  font-weight: 500;
}

.procedure-table tbody tr:last-child > * {
  border-bottom: 0;
}

.commitments {
  max-width: 900px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 38px;
}

.partner-card {
  min-height: 260px;
  padding: 35px;
  background: var(--white);
  text-align: center;
}

.partner-card img {
  width: auto;
  max-width: 100%;
  height: 80px;
  margin: 0 auto 22px;
  object-fit: contain;
}

.partner-card h2 {
  margin: 0 0 8px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.45fr;
  gap: 68px;
}

.contact-details {
  padding-top: 5px;
}

.contact-details h2,
.contact-form h2 {
  margin: 0 0 26px;
  color: var(--ink);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 28px;
  text-transform: uppercase;
}

.contact-form {
  padding: 32px 36px 36px;
  background: var(--white);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 18px;
}

.contact-form label {
  display: block;
  color: var(--ink);
  font-size: 13px;
  font-weight: 500;
}

.contact-form > label {
  margin-top: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  display: block;
  width: 100%;
  margin-top: 6px;
  color: var(--ink);
  background: var(--canvas);
  border: 1px solid #d7d7d7;
  border-radius: 0;
}

.contact-form input,
.contact-form select {
  height: 45px;
  padding: 0 12px;
}

.contact-form textarea {
  min-height: 156px;
  padding: 10px 12px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 1px solid var(--blue);
}

.contact-form .consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text);
  font-weight: 400;
}

.contact-form .consent input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  margin-top: 5px;
}

.contact-form .button {
  margin-top: 22px;
}

.honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.blog-list {
  max-width: 960px;
}

.blog-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 22px;
  padding: 0 0 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--line);
}

.blog-item:last-child {
  margin-bottom: 0;
}

.blog-date {
  align-self: start;
  padding: 13px 8px;
  background: var(--white);
}

.blog-copy h2,
.article-header h2 {
  margin: 0 0 7px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 1px;
  line-height: 31px;
  text-transform: uppercase;
}

.blog-copy > p:not(.post-meta) {
  margin: 15px 0 20px;
}

.post-meta {
  margin: 0;
  color: #a2a2a2;
  font-size: 12px;
}

.article-title h1 {
  max-width: 1020px;
  font-size: clamp(34px, 3.2vw, 47px);
  line-height: 1.25;
}

.article-page .container {
  max-width: 900px;
}

.article-header {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 20px;
  padding-bottom: 28px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.article-header .blog-date {
  padding-block: 10px;
}

.article-content {
  color: #686868;
  font-size: 15px;
  line-height: 27px;
}

.back-link {
  display: inline-block;
  margin-top: 28px;
  color: var(--blue);
  font-weight: 500;
}

.legal-copy {
  max-width: 900px;
}

.hebergement-links {
  min-height: 280px;
}

.hebergement-links ul {
  columns: 2;
  padding-left: 20px;
}

.success-message {
  min-height: 260px;
  text-align: center;
}

.success-message h2 {
  padding-top: 20px;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 520ms var(--reveal-delay, 0ms) ease, transform 520ms var(--reveal-delay, 0ms) ease;
}

@media (max-width: 1260px) {
  .topbar-inner {
    padding-inline: 36px;
  }

  .mainbar {
    padding-inline: 28px;
  }

  .brand img {
    width: 280px;
  }

  .nav-item > a {
    padding-inline: 11px;
    font-size: 12px;
  }
}

@media (max-width: 1000px) {
  :root {
    --header-height: 182px;
  }

  html {
    scroll-padding-top: 112px;
  }

  .topbar {
    height: 82px;
  }

  .topbar-inner {
    position: relative;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0 15px;
    line-height: 33px;
  }

  .topbar-contact {
    white-space: nowrap;
  }

  .topbar .social-link {
    margin-top: 11px;
  }

  .mainbar {
    position: relative;
    justify-content: center;
    height: 100px;
    padding: 0 15px;
  }

  .brand img {
    width: min(290px, calc(100vw - 90px));
    height: 80px;
    object-position: center;
  }

  .menu-toggle {
    position: absolute;
    left: 15px;
    display: grid;
    width: 34px;
    height: 40px;
    place-items: center;
    padding: 0;
    color: var(--text);
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .menu-icon {
    display: grid;
    width: 15px;
    gap: 3px;
  }

  .menu-icon span {
    width: 15px;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] .menu-icon span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] .menu-icon span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] .menu-icon span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .main-nav {
    position: absolute;
    top: 100%;
    left: 15px;
    width: calc(100% - 30px);
    height: auto;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    background: var(--white);
    transition: max-height 260ms ease, visibility 260ms ease;
  }

  .main-nav.is-open {
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    visibility: visible;
    border-bottom: 1px solid var(--line);
  }

  .main-nav > ul {
    display: block;
    height: auto;
  }

  .nav-item {
    display: grid;
    grid-template-columns: 1fr 44px;
    border-bottom: 1px solid #e8e8e8;
  }

  .nav-item:last-child {
    border-bottom: 0;
  }

  .nav-item + .nav-item::before {
    display: none;
  }

  .nav-item > a {
    height: 46px;
    padding: 0;
    color: var(--text);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 46px;
  }

  .nav-item.is-active > a {
    color: var(--blue);
  }

  .submenu-toggle {
    display: grid;
    width: 44px;
    height: 46px;
    place-items: center;
    padding: 0;
    color: var(--text);
    background: transparent;
    border: 0;
    cursor: pointer;
  }

  .submenu-toggle span {
    display: block;
    font-size: 20px;
    transition: transform 180ms ease;
  }

  .submenu-toggle[aria-expanded="true"] span {
    transform: rotate(90deg);
  }

  .submenu {
    position: static;
    display: none;
    width: 100%;
    grid-column: 1 / -1;
    padding: 0 0 5px 16px;
    visibility: visible;
    opacity: 1;
    border-top: 0;
    box-shadow: none;
    transform: none;
  }

  .submenu.is-open {
    display: block;
  }

  .submenu a {
    padding: 6px 0 6px 12px;
    border-left: 1px solid var(--line);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-grid section:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .container {
    width: calc(100% - 90px);
  }

  .home-hero {
    height: 173px;
    background-size: auto 173px;
  }

  .hero-content {
    width: 100%;
    padding: 8px 12px 0;
  }

  .hero-content h1 {
    font-size: 18px;
    line-height: 21px;
  }

  .hero-content > p {
    margin-top: 4px;
    font-size: 10px;
    line-height: 14px;
  }

  .hero-badges {
    gap: 13px;
    margin-top: 10px;
  }

  .hero-badges img {
    width: 28px;
    height: 40px;
  }

  .scroll-indicator {
    bottom: -10px;
    width: 37px;
    height: 56px;
  }

  .home-content {
    padding-top: 30px;
  }

  .callout {
    display: flex;
    min-height: 398px;
    flex-direction: column;
    justify-content: center;
    gap: 22px;
    padding: 43px 22px;
  }

  .callout p {
    font-size: 20px;
    line-height: 26px;
  }

  .short-rule {
    margin-top: 60px;
  }

  .programmes-grid {
    grid-template-columns: 1fr;
    gap: 0;
    padding-top: 30px;
  }

  .programme-card {
    min-height: 178px;
  }

  .programme-card img {
    height: 87px;
  }

  .programme-card h2 {
    margin: 16px 0 8px;
  }

  .latest-news {
    padding-top: 58px;
  }

  .latest-news > h2 {
    font-size: 48px;
    line-height: 1.12;
  }

  .news-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .news-card {
    min-height: 330px;
  }

  .page-title {
    min-height: 210px;
  }

  .page-title h1 {
    font-size: 34px;
    line-height: 1.28;
  }

  .article-title {
    min-height: 250px;
  }

  .article-title h1 {
    font-size: 29px;
  }

  .page-section {
    padding: 28px 0 55px;
  }

  .tabs-list {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
  }

  .tab-button {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .tab-button:last-child {
    border-bottom: 0;
  }

  .tab-button.is-active {
    color: var(--white);
    background: var(--slate);
    transform: none;
  }

  .tabs-panels {
    min-height: 0;
  }

  .atout-france,
  .content-photo {
    float: none;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 24px;
  }

  .partners-grid,
  .contact-layout,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    gap: 34px;
  }

  .contact-form {
    padding: 26px 22px 30px;
  }

  .blog-item {
    grid-template-columns: 60px 1fr;
    gap: 14px;
  }

  .blog-copy h2,
  .article-header h2 {
    font-size: 18px;
    line-height: 26px;
  }

  .article-header {
    grid-template-columns: 58px 1fr;
    gap: 14px;
  }

  .hebergement-links ul {
    columns: 1;
  }

  .footer-main {
    padding: 58px 0 45px;
  }

  .footer-grid {
    width: calc(100% - 90px);
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .footer-grid section:last-child {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .topbar {
    font-size: 12px;
  }

  .topbar-separator {
    margin-inline: 1px;
  }

  .container,
  .footer-grid {
    width: calc(100% - 90px);
  }

  .callout p {
    font-size: 20px;
  }

  .page-title h1 {
    font-size: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
