@charset "UTF-8";
/*!
Theme Name: Noviclous
Theme URI: https://blog.noviclous.fr
Description: Thème développé pour l'usage exclusif de https://blog.noviclous.fr
Author: Agence hiboost • www.hiboost.fr
Version: 1.0.0
*/
/* ================================
   VARIABLES & CONFIGURATION
   ================================ */
:root {
  /* Couleurs */
  --black-100: #262626;
  --black-90: #3c3c3c;
  --black-50: #939393;
  --black-10: #eaeaea;
  --bg: #faf8f6;
  --white: #ffffff;
  --white-50: rgba(255, 255, 255, 0.5);
  --white-10: rgba(255, 255, 255, 0.1);
  --yellow: #f7a81b;
  --yellow-80: #f9b949;
  --yellow-10: #ffeccb;
  --grey: #666666;
  /* Polices */
  --font-body: "Poppins", sans-serif;
  --font-heading: "Poppins", sans-serif;
  /* Layout */
  --max-width: 1024px;
}

/* ================================
   RESET & BASE
   ================================ */
*,
*:after,
*:before {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

html {
  color: #000;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
  margin: 0;
  padding: 0;
}

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

ol,
ul {
  padding-left: 40px;
  margin-left: 15px;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: 0;
  border-radius: 0;
  *font-size: 100%;
}

legend {
  color: var(--black-100);
}

body {
  font-family: var(--font-body), Helvetica, Arial, sans-serif;
  font-size: 16px;
  color: var(--black-100);
  font-weight: 300;
  line-height: 1.5;
  background: var(--bg);
  padding-top: 113px;
}
@media screen and (min-width: 1024px) {
  body {
    padding-top: 108px;
  }
}

.container {
  max-width: var(--max-width);
  width: 100%;
  margin: 0 auto;
}

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

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

::selection {
  background-color: var(--yellow-80);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ================================
   TYPOGRAPHY
   ================================ */
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

h1,
h2 {
  font-weight: 700;
}

h1 {
  font-size: 23px;
}

h2 {
  font-size: 23px;
}

h3 {
  font-size: 23px;
}

h4 {
  font-size: 16px;
}

h5 {
  font-size: 18px;
}

h6 {
  font-size: 16px;
}

a {
  text-decoration: none;
  -moz-transition-duration: 0.3s;
  -o-transition-duration: 0.3s;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
a:hover {
  text-decoration: underline;
}

/* ================================
   COMPONENTS
   ================================ */
.button {
  font-size: 14px;
  letter-spacing: -5%;
  padding-left: 16px;
  padding-right: 16px;
  padding-top: 8px;
  padding-bottom: 8px;
  color: var(--black-100);
  text-align: center;
  background-color: var(--yellow);
  border: 1px solid var(--yellow);
  border-radius: 4px;
  font-weight: 400;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  max-width: max-content;
}
.button:hover {
  transition: 0.4s;
  text-decoration: none;
  color: var(--black-100);
  background-color: var(--yellow-80);
}

.back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--yellow);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.3s ease;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
@media screen and (min-width: 768px) {
  .back-to-top {
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
  }
}
.back-to-top svg {
  color: var(--black-100);
  transition: transform 0.3s ease;
}
.back-to-top:hover {
  background-color: var(--yellow-80);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.back-to-top:hover svg {
  transform: translateY(-2px);
}
.back-to-top:active {
  transform: translateY(0);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.card {
  display: block;
  width: 100%;
  list-style-type: none;
  background-color: var(--white);
  border: 1px solid var(--black-10);
  border-bottom: solid 2px var(--yellow);
  border-radius: 4px;
  transition: all 0.3s ease;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-4px);
}
.card .card__link {
  text-decoration: none;
  display: block;
}
.card .card__thumbnail {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.card .card__thumbnail img {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.card .card__content {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card .card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black-100);
  letter-spacing: -0.02em;
  line-height: 1.3;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .card .card__title {
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  .card .card__title {
    font-size: 18px;
  }
}
.card .card__date {
  font-size: 14px;
  font-weight: 600;
  color: var(--yellow);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .card .card__date {
    font-size: 13px;
  }
}
@media screen and (min-width: 1024px) {
  .card .card__date {
    font-size: 14px;
  }
}
.card .card__date svg {
  width: 16px;
  height: 16px;
}

/* Card Featured - Composant carte article mise en avant */
a.card-featured {
  display: grid;
  grid-template-columns: 1fr;
  background-color: var(--white);
  border: 1px solid var(--black-10);
  border-bottom: 3px solid var(--yellow);
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
@media screen and (min-width: 768px) {
  a.card-featured {
    grid-template-columns: 1fr 1fr;
  }
}
a.card-featured:hover {
  transform: translateY(-4px);
  text-decoration: none;
}
a.card-featured div.card-featured__img {
  aspect-ratio: 16/9;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  a.card-featured div.card-featured__img {
    aspect-ratio: unset;
    min-height: 280px;
  }
}
a.card-featured div.card-featured__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}
a.card-featured div.card-featured__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  a.card-featured div.card-featured__content {
    padding: 32px 36px;
    gap: 16px;
  }
}
a.card-featured p.card-featured__tag {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--yellow);
  margin: 0;
}
a.card-featured .card-featured__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--black-100);
  letter-spacing: -0.025em;
  line-height: 1.25;
  margin: 0;
  text-wrap: balance;
}
@media screen and (min-width: 768px) {
  a.card-featured .card-featured__title {
    font-size: 26px;
  }
}
a.card-featured p.card-featured__excerpt {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.6;
  margin: 0;
}
@media screen and (min-width: 768px) {
  a.card-featured p.card-featured__excerpt {
    font-size: 15px;
  }
}
a.card-featured span.card-featured__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  margin-top: 4px;
}
a.card-featured span.card-featured__cta svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}
a.card-featured:hover span.card-featured__cta svg {
  transform: translateX(5px);
}

/* Breadcrumb - Composant fil d'Ariane */
nav.ariane {
  background-color: var(--white);
}
nav.ariane ol.breadcrumbs {
  list-style: none;
  padding: 12px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  font-size: 11px;
}
@media screen and (min-width: 768px) {
  nav.ariane ol.breadcrumbs {
    padding: 16px 0;
    font-size: 12px;
  }
}
nav.ariane ol.breadcrumbs li {
  display: flex;
  align-items: center;
  gap: 4px;
}
nav.ariane ol.breadcrumbs a {
  color: var(--black-50);
}
nav.ariane ol.breadcrumbs span.crochet {
  color: var(--black-50);
}
nav.ariane ol.breadcrumbs li:last-child span:first-child {
  font-weight: 600;
}

.block-a-lire {
  margin: 16px 0;
  padding: 16px;
  background-color: var(--white);
  border: 1px solid var(--black-10);
  border-left: 4px solid var(--yellow);
  border-radius: 4px;
}
.block-a-lire div.block-a-lire__container {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media screen and (min-width: 768px) {
  .block-a-lire div.block-a-lire__container {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
  }
}
.block-a-lire div.block-a-lire__container .block-a-lire__label {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 0;
}
.block-a-lire div.block-a-lire__container .block-a-lire__link {
  color: var(--yellow);
  font-size: 15px;
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.block-a-lire div.block-a-lire__container .block-a-lire__link:hover {
  color: var(--yellow);
  text-decoration-color: var(--yellow);
}

.block-produit-boutique {
  margin: 16px 0;
  padding: 16px;
  background-color: var(--white);
  border: 1px solid var(--black-10);
  border-left: 4px solid var(--yellow);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .block-produit-boutique {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
}
.block-produit-boutique .block-produit-boutique__thumb {
  display: block;
  width: 100%;
  max-width: 200px;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .block-produit-boutique .block-produit-boutique__thumb {
    flex-shrink: 0;
  }
}
.block-produit-boutique .block-produit-boutique__image {
  display: block;
  width: 100%;
  height: auto;
}
.block-produit-boutique .block-produit-boutique__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.block-produit-boutique .block-produit-boutique__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--black-100);
  line-height: 1.3;
  margin: 0 !important;
}
.block-produit-boutique .block-produit-boutique__description {
  font-size: 15px;
  color: var(--black-90);
  line-height: 1.6;
}
.block-produit-boutique .block-produit-boutique__description p {
  margin: 0;
}
.block-produit-boutique .block-produit-boutique__description strong {
  color: var(--black-100);
  font-weight: 600;
}
.block-produit-boutique .block-produit-boutique__cta {
  display: inline-flex;
  width: fit-content;
  margin-top: 4px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 600;
  color: var(--black-100) !important;
  background-color: var(--yellow);
  border: 1px solid var(--yellow);
  border-radius: 4px;
  text-decoration: none;
}
.block-produit-boutique .block-produit-boutique__cta:hover {
  background-color: var(--yellow-80);
  border-color: var(--yellow-80);
  text-decoration: none;
}

div.ai-summary {
  padding-top: 24px;
}
div.ai-summary p {
  margin-bottom: 8px !important;
  font-size: 14px;
  font-style: italic;
}
div.ai-summary div.ai-sumary__list {
  display: flex;
  flex-direction: row;
  gap: 16px;
}
div.ai-summary div.ai-sumary__list .ai-icon {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
div.ai-summary div.ai-sumary__list .ai-icon .ai-icon__tooltip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background-color: #333;
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  pointer-events: none;
  margin-bottom: 4px;
}
div.ai-summary div.ai-sumary__list .ai-icon .ai-icon__tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: #333;
}
div.ai-summary div.ai-sumary__list .ai-icon:hover .ai-icon__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
div.ai-summary div.ai-sumary__list svg {
  height: 32px;
  width: 32px;
}

.newsletter {
  background-color: var(--black-90);
  padding: 48px 16px;
  border-bottom: 1px solid var(--white-10);
}
@media (min-width: 768px) {
  .newsletter {
    padding: 80px 0;
  }
}
.newsletter .newsletter__container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .newsletter .newsletter__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
  }
}
.newsletter .newsletter__content {
  flex: 1;
}
.newsletter .newsletter__title {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -5%;
}
@media (min-width: 768px) {
  .newsletter .newsletter__title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
@media (min-width: 1024px) {
  .newsletter .newsletter__title {
    font-size: 28px;
  }
}
.newsletter .newsletter__desc {
  color: var(--white-50);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .newsletter .newsletter__desc {
    font-size: 16px;
  }
}
.newsletter .newsletter__form {
  flex: 1;
  max-width: 100%;
}
@media (min-width: 768px) {
  .newsletter .newsletter__form {
    max-width: 400px;
  }
}
@media (min-width: 1024px) {
  .newsletter .newsletter__form {
    max-width: 424px;
  }
}
.newsletter .newsletter__form .sib_signup_form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.newsletter .newsletter__form .sib_loader {
  display: none !important;
}
.newsletter .newsletter__form .sib_signup_box_inside_1 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (min-width: 480px) {
  .newsletter .newsletter__form .sib_signup_box_inside_1 {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.newsletter .newsletter__form .sib_signup_box_inside_1 .sib_msg_disp {
  display: none !important;
}
.newsletter .newsletter__form .sib_signup_box_inside_1 .sib-email-area {
  flex: 1;
  min-width: 0;
  margin: 0;
  font-size: 0;
  order: 0;
}
@media (min-width: 480px) {
  .newsletter .newsletter__form .sib_signup_box_inside_1 .sib-email-area {
    min-width: 200px;
  }
}
.newsletter .newsletter__form .sib_signup_box_inside_1 .sib-email-area input[type=email] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--white-10);
  border-radius: 8px;
  background-color: var(--white-10);
  color: var(--white);
  font-size: 16px;
  font-family: var(--font-body);
  transition: border-color 0.3s ease;
}
.newsletter .newsletter__form .sib_signup_box_inside_1 .sib-email-area input[type=email]::placeholder {
  color: var(--black-50);
}
.newsletter .newsletter__form .sib_signup_box_inside_1 .sib-email-area input[type=email]:focus {
  outline: none;
  border-color: var(--yellow);
}
.newsletter .newsletter__form .sib_signup_box_inside_1 p:last-child {
  margin: 0;
  order: 1;
}
.newsletter .newsletter__form .sib_signup_box_inside_1 p:last-child .sib-default-btn {
  width: 100%;
  padding: 12px 24px;
  background-color: var(--yellow);
  color: var(--black-100);
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
@media (min-width: 480px) {
  .newsletter .newsletter__form .sib_signup_box_inside_1 p:last-child .sib-default-btn {
    width: auto;
    min-width: 112px;
  }
}
.newsletter .newsletter__form .sib_signup_box_inside_1 p:last-child .sib-default-btn:hover {
  background-color: var(--yellow-80);
}
.newsletter .newsletter__form .sib_signup_box_inside_1 p:last-child .sib-default-btn:disabled {
  cursor: wait;
}
.newsletter .newsletter__form .sib_signup_box_inside_1 p:last-child .sib-default-btn .btn-spinner {
  display: none;
  width: 16px;
  height: 16px;
  border: 2px solid var(--black-100);
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 0.8s linear infinite;
}
.newsletter .newsletter__form .sib_signup_box_inside_1 p:last-child .sib-default-btn.loading {
  pointer-events: none;
}
.newsletter .newsletter__form .sib_signup_box_inside_1 p:last-child .sib-default-btn.loading .btn-text {
  display: none;
}
.newsletter .newsletter__form .sib_signup_box_inside_1 p:last-child .sib-default-btn.loading .btn-spinner {
  display: inline-block;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.newsletter-toast {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  padding: 16px 24px;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  z-index: 9999;
  transform: translateY(100px);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
@media (min-width: 480px) {
  .newsletter-toast {
    bottom: 24px;
    right: 24px;
    left: auto;
    max-width: 400px;
  }
}
.newsletter-toast.show {
  transform: translateY(0);
  opacity: 1;
}
.newsletter-toast.success {
  background-color: #cbebd7;
  border: 1px solid rgba(34, 197, 94, 0.4);
  color: #22c55e;
}
.newsletter-toast.error {
  background-color: #f4dada;
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #ef4444;
}

.pagination {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
@media (min-width: 768px) {
  .pagination {
    margin-top: 48px;
    gap: 8px;
  }
}
.pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  background-color: var(--white);
  border: 1px solid var(--black-10);
  border-radius: 8px;
  text-decoration: none;
  color: var(--black-100);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease;
}
@media (min-width: 768px) {
  .pagination .page-numbers {
    min-width: 48px;
    height: 48px;
    padding: 0 16px;
  }
}
.pagination .page-numbers:hover {
  background-color: var(--yellow);
  border-color: var(--yellow);
}
.pagination .page-numbers.current {
  background-color: var(--yellow);
  border-color: var(--yellow);
}
.pagination .page-numbers.dots {
  border: none;
  background: none;
  min-width: auto;
  padding: 0 4px;
}
.pagination .page-numbers.dots:hover {
  background: none;
}

/* ================================
   COOKIE BANNER
   ================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--black-10);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner__text {
  font-size: 13px;
  color: var(--grey);
  margin: 0;
  line-height: 1.5;
}
.cookie-banner__link {
  color: var(--black-90);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-banner__link:hover {
  color: var(--yellow);
}
.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-banner__btn {
  font-size: 13px;
  padding: 6px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.cookie-banner__btn--refuse {
  background: transparent;
  border: 1px solid var(--black-10);
  color: var(--grey);
}
.cookie-banner__btn--refuse:hover {
  background: var(--black-10);
  color: var(--black-90);
}
.cookie-banner__btn--accept {
  background: var(--yellow);
  border: 1px solid var(--yellow);
  color: var(--white);
  font-weight: 600;
}
.cookie-banner__btn--accept:hover {
  background: var(--yellow-80);
  border-color: var(--yellow-80);
}
@media (max-width: 600px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
  }
  .cookie-banner .cookie-banner__actions {
    width: 100%;
  }
  .cookie-banner .cookie-banner__btn {
    flex: 1;
    text-align: center;
  }
}

/* ================================
   LAYOUT - HEADER & NAVIGATION
   ================================ */
header {
  background-color: var(--black-90);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.admin-bar header {
  top: 46px;
}
@media screen and (min-width: 783px) {
  .admin-bar header {
    top: 32px;
  }
}
header div.pre-header {
  background-color: var(--black-100);
  padding: 0 16px;
}
@media screen and (min-width: 1024px) {
  header div.pre-header {
    padding: 0;
  }
}
header div.pre-header div.pre-header__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  gap: 8px;
}
header div.pre-header div.pre-header__container div.social_header {
  display: flex;
  flex-direction: row;
  gap: 2px;
}
header div.pre-header div.pre-header__container div.social_header a.sociaux_head {
  padding: 8px;
  background-color: var(--black-90);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 36px;
}
header div.pre-header div.pre-header__container div.social_header a.sociaux_head:first-child {
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
}
header div.pre-header div.pre-header__container div.social_header a.sociaux_head:last-child {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}
header div.pre-header div.pre-header__container div.social_header a.sociaux_head:hover {
  background-color: var(--yellow);
  text-decoration: none;
}
header div.pre-header div.pre-header__container div.social_header a.sociaux_head i {
  font-size: 14px;
}
header div.pre-header div.pre-header__container div.social_header a.sociaux_head p.talkbubble {
  visibility: hidden;
}
header div.pre-header div.pre-header__container form.search {
  overflow: hidden;
  border-radius: 4px;
  background-color: var(--grey);
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  gap: 8px;
  flex: 1;
  max-width: 200px;
}
@media screen and (min-width: 768px) {
  header div.pre-header div.pre-header__container form.search {
    gap: 16px;
    max-width: none;
  }
}
header div.pre-header div.pre-header__container form.search input.search__input {
  font-size: 13px;
  color: var(--white) !important;
  background-color: transparent;
  width: 100%;
  min-width: auto;
}
@media screen and (min-width: 768px) {
  header div.pre-header div.pre-header__container form.search input.search__input {
    min-width: 250px;
  }
}
header div.pre-header div.pre-header__container form.search input.search__input::placeholder {
  color: var(--white) !important;
  opacity: 0.8;
  width: 100%;
}
header div.pre-header div.pre-header__container form.search svg {
  display: block;
  cursor: pointer;
  flex-shrink: 0;
}
header div.pre-header div.pre-header__container a.pre-header__cta {
  display: none;
}
@media screen and (min-width: 768px) {
  header div.pre-header div.pre-header__container a.pre-header__cta {
    display: flex;
    flex-direction: row;
    padding-right: 16px;
    padding-left: 16px;
    padding-top: 8px;
    padding-bottom: 8px;
    align-items: center;
    background-color: var(--yellow);
    text-decoration: none;
    gap: 8px;
    border-radius: 4px;
    flex-shrink: 0;
  }
  header div.pre-header div.pre-header__container a.pre-header__cta:hover {
    background-color: var(--yellow-80);
  }
  header div.pre-header div.pre-header__container a.pre-header__cta:hover p {
    text-decoration: none;
    transition-duration: 0.5s;
  }
  header div.pre-header div.pre-header__container a.pre-header__cta img {
    width: 14px;
    height: 14px;
    margin-top: 4px;
    margin-left: 10px;
    margin-right: 10px;
  }
  header div.pre-header div.pre-header__container a.pre-header__cta p {
    font-size: 14px;
    color: var(--black-100);
    text-decoration: none;
    font-weight: 500;
    letter-spacing: -5%;
  }
}
header div.post-header {
  overflow: hidden;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 16px 16px;
}
@media screen and (min-width: 1024px) {
  header div.post-header {
    padding: 0;
  }
}
header div.post-header h1.logo,
header div.post-header span.logo {
  display: block;
  width: 118px;
  height: 29px;
  background-image: url("img/logo-noviclous.webp");
  background-repeat: no-repeat;
  background-size: contain;
}
header div.post-header h1.logo a,
header div.post-header span.logo a {
  display: block;
  width: 118px;
  height: 29px;
  overflow: hidden;
  text-indent: -5000px;
}
header div.post-header {
  /* Bouton menu mobile */
}
header div.post-header .menu-mobile-button {
  display: block;
  width: 30px;
  height: 24px;
  position: relative;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 0;
}
@media screen and (min-width: 768px) {
  header div.post-header .menu-mobile-button {
    display: none;
  }
}
header div.post-header .menu-mobile-button span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: var(--white);
  border-radius: 2px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
header div.post-header .menu-mobile-button span:nth-child(1) {
  top: 0;
}
header div.post-header .menu-mobile-button span:nth-child(2) {
  top: 10px;
}
header div.post-header .menu-mobile-button span:nth-child(3) {
  top: 20px;
}
header div.post-header .menu-mobile-button.active {
  opacity: 0;
  pointer-events: none;
}
header div.post-header nav {
  display: none;
}
@media screen and (min-width: 768px) {
  header div.post-header nav {
    display: block;
  }
  header div.post-header nav ul.menu {
    margin: 0;
    padding: 0;
    margin: auto;
    width: 100%;
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 8px;
  }
  header div.post-header nav ul.menu li.current-category-active a {
    background-color: var(--grey);
  }
  header div.post-header nav ul.menu li a {
    font-size: 16px;
    padding: 16px 8px;
    color: var(--white);
    display: block;
    text-decoration: none;
  }
  header div.post-header nav ul.menu li a:hover {
    background-color: var(--white-10);
  }
}
header div.post-header {
  /* Overlay menu mobile */
}
header div.post-header .mobile-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.65);
  z-index: 998;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  backdrop-filter: blur(2px);
}
header div.post-header .mobile-menu__overlay.active {
  visibility: visible;
  opacity: 1;
}
@media screen and (min-width: 768px) {
  header div.post-header .mobile-menu__overlay {
    display: none !important;
  }
}
header div.post-header {
  /* Menu mobile — drawer latéral */
}
header div.post-header nav.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 360px;
  height: 100vh;
  background-color: var(--black-100);
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
}
header div.post-header nav.mobile-menu.active {
  transform: translateX(0);
}
header div.post-header nav.mobile-menu.active .mobile-menu__list li:nth-child(1) {
  animation: slideInMenuItem 0.3s ease 0.08s both;
}
header div.post-header nav.mobile-menu.active .mobile-menu__list li:nth-child(2) {
  animation: slideInMenuItem 0.3s ease 0.13s both;
}
header div.post-header nav.mobile-menu.active .mobile-menu__list li:nth-child(3) {
  animation: slideInMenuItem 0.3s ease 0.18s both;
}
header div.post-header nav.mobile-menu.active .mobile-menu__list li:nth-child(4) {
  animation: slideInMenuItem 0.3s ease 0.23s both;
}
header div.post-header nav.mobile-menu.active .mobile-menu__list li:nth-child(5) {
  animation: slideInMenuItem 0.3s ease 0.28s both;
}
header div.post-header nav.mobile-menu.active .mobile-menu__list li:nth-child(6) {
  animation: slideInMenuItem 0.3s ease 0.33s both;
}
header div.post-header nav.mobile-menu.active .mobile-menu__list li:nth-child(7) {
  animation: slideInMenuItem 0.3s ease 0.38s both;
}
header div.post-header nav.mobile-menu.active .mobile-menu__list li:nth-child(8) {
  animation: slideInMenuItem 0.3s ease 0.43s both;
}
@media screen and (min-width: 768px) {
  header div.post-header nav.mobile-menu {
    display: none !important;
  }
}
header div.post-header nav.mobile-menu .mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--white-10);
  flex-shrink: 0;
}
header div.post-header nav.mobile-menu .mobile-menu__header .mobile-menu__logo {
  display: block;
  width: 100px;
  height: 25px;
  background-image: url("img/logo-noviclous.webp");
  background-repeat: no-repeat;
  background-size: contain;
}
header div.post-header nav.mobile-menu .mobile-menu__header .mobile-menu__logo a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-indent: -5000px;
}
header div.post-header nav.mobile-menu .mobile-menu__header .mobile-menu__close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.2s ease;
  flex-shrink: 0;
}
header div.post-header nav.mobile-menu .mobile-menu__header .mobile-menu__close:hover {
  background-color: var(--white-10);
}
header div.post-header nav.mobile-menu .mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 12px 0;
  flex: 1;
}
header div.post-header nav.mobile-menu .mobile-menu__list li {
  opacity: 0;
}
header div.post-header nav.mobile-menu .mobile-menu__list li.current-menu-item > a, header div.post-header nav.mobile-menu .mobile-menu__list li.current-category-ancestor > a, header div.post-header nav.mobile-menu .mobile-menu__list li.current-category-active > a {
  color: var(--yellow);
  border-left-color: var(--yellow);
  background-color: rgba(247, 168, 27, 0.08);
}
header div.post-header nav.mobile-menu .mobile-menu__list li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 24px;
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-left: 3px solid transparent;
  transition: all 0.2s ease;
}
header div.post-header nav.mobile-menu .mobile-menu__list li a::after {
  content: "›";
  font-size: 22px;
  font-weight: 300;
  opacity: 0.3;
  line-height: 1;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
header div.post-header nav.mobile-menu .mobile-menu__list li a:hover {
  color: var(--yellow);
  border-left-color: var(--yellow);
  background-color: var(--white-10);
  padding-left: 28px;
}
header div.post-header nav.mobile-menu .mobile-menu__list li a:hover::after {
  opacity: 1;
  transform: translateX(4px);
}
header div.post-header nav.mobile-menu .mobile-menu__footer {
  padding: 24px;
  border-top: 1px solid var(--white-10);
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-shrink: 0;
}
header div.post-header nav.mobile-menu .mobile-menu__footer .mobile-menu__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 24px;
  background-color: var(--yellow);
  color: var(--black-100);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease, transform 0.15s ease;
}
header div.post-header nav.mobile-menu .mobile-menu__footer .mobile-menu__cta:hover {
  background-color: var(--yellow-80);
  transform: translateY(-1px);
}
header div.post-header nav.mobile-menu .mobile-menu__footer .mobile-menu__social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
header div.post-header nav.mobile-menu .mobile-menu__footer .mobile-menu__social .mobile-menu__social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--white-10);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 15px;
  transition: background-color 0.2s ease, color 0.2s ease;
}
header div.post-header nav.mobile-menu .mobile-menu__footer .mobile-menu__social .mobile-menu__social-link:hover {
  background-color: var(--yellow);
  color: var(--black-100);
}

@keyframes slideInMenuItem {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* ================================
   SECTIONS - HOMEPAGE
   ================================ */
section.hero {
  width: 100%;
  background: url("img/img_entete.png");
  background-size: cover;
}
section.hero div.hero__shadow {
  background-color: rgba(38, 38, 38, 0.5);
  width: 100%;
}
section.hero div.hero__shadow div.hero__container {
  padding: 16px;
  padding-top: 80px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  color: var(--white);
  gap: 24px;
}
@media screen and (min-width: 768px) {
  section.hero div.hero__shadow div.hero__container {
    padding: 16px;
    padding-top: 112px;
    padding-bottom: 112px;
  }
}
@media screen and (min-width: 1024px) {
  section.hero div.hero__shadow div.hero__container {
    padding: 112px 0;
  }
}
section.hero div.hero__shadow div.hero__container h2 {
  max-width: 700px;
  font-size: 32px;
  letter-spacing: -5%;
  line-height: 120%;
  animation: fadeInUp 0.5s ease-out 0.1s both;
}
@media screen and (min-width: 768px) {
  section.hero div.hero__shadow div.hero__container h2 {
    font-size: 41px;
  }
}
section.hero div.hero__shadow div.hero__container p {
  font-size: 16px;
  animation: fadeInUp 0.5s ease-out 0.25s both;
}

/* Dossiers Homepage - Stories Strip - Mobile First */
section.dossiers-home {
  margin-top: 40px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  section.dossiers-home {
    margin-top: 56px;
  }
}
section.dossiers-home div.dossiers-home__strip {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 12px;
  padding-left: 16px;
  padding-right: 16px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
section.dossiers-home div.dossiers-home__strip::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 1024px) {
  section.dossiers-home div.dossiers-home__strip {
    padding-left: 0;
    padding-right: 0;
    flex-wrap: wrap;
    overflow-x: visible;
    gap: 24px;
  }
}
section.dossiers-home a.dossier-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  text-decoration: none;
  width: 72px;
}
@media screen and (min-width: 768px) {
  section.dossiers-home a.dossier-story {
    width: 88px;
  }
}
section.dossiers-home a.dossier-story:hover {
  text-decoration: none;
}
section.dossiers-home a.dossier-story div.dossier-story__ring {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  padding: 3px;
  background: var(--black-10);
  transition: background 0.25s ease;
}
@media screen and (min-width: 768px) {
  section.dossiers-home a.dossier-story div.dossier-story__ring {
    width: 88px;
    height: 88px;
  }
}
section.dossiers-home a.dossier-story:hover div.dossier-story__ring {
  background: var(--yellow);
}
section.dossiers-home a.dossier-story div.dossier-story__img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background-color: var(--black-100);
  border: 3px solid var(--bg);
}
section.dossiers-home a.dossier-story div.dossier-story__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
section.dossiers-home a.dossier-story:hover div.dossier-story__img img {
  transform: scale(1.08);
}
section.dossiers-home a.dossier-story span.dossier-story__name {
  font-size: 11px;
  font-weight: 600;
  color: var(--black-100);
  text-align: center;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  section.dossiers-home a.dossier-story span.dossier-story__name {
    font-size: 12px;
  }
}

section.last-post {
  margin-top: 48px;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 1024px) {
  section.last-post {
    padding-left: 0;
    padding-right: 0;
  }
}
section.last-post h3.last-post__header {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: bold;
}
section.last-post h3.last-post__header:after {
  content: "";
  left: 0;
  display: block;
  width: 70px;
  height: 5px;
  background-color: var(--yellow-80);
}
section.last-post div.last-post__block {
  padding-top: 24px;
}

section.categories {
  margin-top: 88px;
  margin-bottom: 88px;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}
@media screen and (min-width: 1024px) {
  section.categories {
    padding-left: 0;
    padding-right: 0;
  }
}
section.categories div.categories__item div.categories__item-title {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  section.categories div.categories__item div.categories__item-title {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
  }
}
section.categories div.categories__item div.categories__item-title h3 {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
}
section.categories div.categories__item div.categories__item-title h3:after {
  content: "";
  left: 0;
  display: block;
  width: 70px;
  height: 5px;
  background-color: var(--yellow-80);
}
section.categories div.categories__item div.categories__item-title a.categories__item-button {
  font-size: 14px;
  color: var(--black-90);
  text-decoration: none;
  white-space: nowrap;
}
section.categories div.categories__item div.categories__item-title a.categories__item-button:hover {
  color: var(--yellow);
}
section.categories div.categories__item ul.categories-post {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  section.categories div.categories__item ul.categories-post {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  section.categories div.categories__item ul.categories-post {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

section.about {
  padding: 40px 16px;
  background-color: var(--white);
}
@media screen and (min-width: 768px) {
  section.about {
    padding: 56px 16px;
  }
}
@media screen and (min-width: 1024px) {
  section.about {
    padding: 80px 0;
  }
}
section.about div.about__container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  section.about div.about__container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  section.about div.about__container {
    grid-template-columns: 2fr 5fr;
  }
}
section.about div.about__container div.about__left {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
section.about div.about__container div.about__left p.about__title {
  font-weight: bold;
  color: var(--yellow);
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 8px;
}
@media screen and (min-width: 768px) {
  section.about div.about__container div.about__left p.about__title {
    font-size: 16px;
  }
}
section.about div.about__container p.about__desc {
  font-size: 14px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  section.about div.about__container p.about__desc {
    font-size: 16px;
    line-height: 1.5;
  }
}

/* ================================
   FOOTER
   ================================ */
footer.footer {
  background-color: var(--black-100);
  padding: 40px 16px;
}
@media screen and (min-width: 768px) {
  footer.footer {
    padding: 48px 16px;
  }
}
@media screen and (min-width: 1024px) {
  footer.footer {
    padding: 64px 0;
  }
}
footer.footer div.footer__container {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
@media screen and (min-width: 768px) {
  footer.footer div.footer__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}
@media screen and (min-width: 1024px) {
  footer.footer div.footer__container {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
}
@media screen and (min-width: 768px) {
  footer.footer div.footer__container div.footer-col:nth-child(2), footer.footer div.footer__container div.footer-col:nth-child(3) {
    padding-left: 16px;
    border-left: 1px solid var(--white-50);
  }
}
footer.footer div.footer__container div.footer-col img.footer-col__logo {
  width: 120px;
  height: auto;
  margin-bottom: 16px;
}
footer.footer div.footer__container div.footer-col p.footer-col__desc {
  font-size: 13px;
  color: var(--white);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  footer.footer div.footer__container div.footer-col p.footer-col__desc {
    font-size: 14px;
  }
}
footer.footer div.footer__container div.footer-col p.footer-col__copy {
  font-size: 13px;
  color: var(--white-50);
  line-height: 1.6;
  margin-top: 8px;
}
footer.footer div.footer__container div.footer-col span.footer-col__titre {
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  footer.footer div.footer__container div.footer-col span.footer-col__titre {
    font-size: 16px;
  }
}
footer.footer div.footer__container div.footer-col span.footer-col__titre:after {
  content: "";
  left: 0;
  display: block;
  width: 70px;
  height: 5px;
  background-color: var(--yellow-80);
}
footer.footer div.footer__container div.footer-col ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  padding-top: 12px;
  list-style: none;
}
footer.footer div.footer__container div.footer-col ul a.footer-col__link {
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  footer.footer div.footer__container div.footer-col ul a.footer-col__link {
    font-size: 14px;
  }
}
footer.footer div.footer__container div.footer-col ul a.footer-col__link:hover {
  color: var(--yellow);
}
footer.footer div.footer__container div.footer-col a.footer-col__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  padding-top: 8px;
}
@media screen and (min-width: 768px) {
  footer.footer div.footer__container div.footer-col a.footer-col__link {
    font-size: 14px;
  }
}
footer.footer div.footer__container div.footer-col a.footer-col__link:hover {
  color: var(--yellow);
}
footer.footer div.footer__container div.footer-col a.footer-col__link img.footer-col__thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  footer.footer div.footer__container div.footer-col a.footer-col__link img.footer-col__thumb {
    width: 64px;
    height: 64px;
  }
}

/* ================================
   PAGES
   ================================ */
/* Single - Mobile First */
article.single div.single-header {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 0px;
  position: relative;
}
article.single div.single-header div.single-header__shadow {
  background-color: rgba(38, 38, 38, 0.5);
  width: 100%;
}
article.single div.single-header div.single-header__container {
  z-index: 100;
  position: relative;
  color: var(--white);
  padding: 48px 16px;
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
}
@media screen and (min-width: 768px) {
  article.single div.single-header div.single-header__container {
    padding: 64px 16px;
  }
}
@media screen and (min-width: 1024px) {
  article.single div.single-header div.single-header__container {
    padding: 80px 0;
  }
}
article.single div.single-header div.single-header__container div.single-header__date {
  padding: 24px 16px;
  text-align: center;
  border-right: 2px solid var(--white);
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  article.single div.single-header div.single-header__container div.single-header__date {
    padding: 40px 24px;
    border-right: 3px solid var(--white);
  }
}
article.single div.single-header div.single-header__container div.single-header__date p#day {
  font-size: 28px;
  font-weight: bold;
  color: var(--white);
}
@media screen and (min-width: 768px) {
  article.single div.single-header div.single-header__container div.single-header__date p#day {
    font-size: 36px;
  }
}
article.single div.single-header div.single-header__container div.single-header__date p#month {
  font-size: 11px;
  color: var(--white);
}
@media screen and (min-width: 768px) {
  article.single div.single-header div.single-header__container div.single-header__date p#month {
    font-size: 12px;
  }
}
article.single div.single-header div.single-header__container div.single-header__content {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (min-width: 768px) {
  article.single div.single-header div.single-header__container div.single-header__content {
    padding-left: 24px;
    gap: 16px;
  }
}
article.single div.single-header div.single-header__container div.single-header__content h1.single-header__title {
  max-width: 700px;
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-wrap: balance;
  animation: fadeInUp 0.5s ease-out 0.1s both;
}
@media screen and (min-width: 768px) {
  article.single div.single-header div.single-header__container div.single-header__content h1.single-header__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1024px) {
  article.single div.single-header div.single-header__container div.single-header__content h1.single-header__title {
    font-size: 40px;
  }
}
article.single div.single-header div.single-header__container div.single-header__content div.single-header__infos {
  display: flex;
  flex-direction: column;
  gap: 8px;
  animation: fadeInUp 0.5s ease-out 0.25s both;
}
@media screen and (min-width: 580px) {
  article.single div.single-header div.single-header__container div.single-header__content div.single-header__infos {
    flex-direction: row;
    gap: 24px;
  }
}
article.single div.single-header div.single-header__container div.single-header__content div.single-header__infos p.single-header__infos-time,
article.single div.single-header div.single-header__container div.single-header__content div.single-header__infos p.single-header__infos-cat {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: -0.03em;
}
@media screen and (min-width: 768px) {
  article.single div.single-header div.single-header__container div.single-header__content div.single-header__infos p.single-header__infos-time,
  article.single div.single-header div.single-header__container div.single-header__content div.single-header__infos p.single-header__infos-cat {
    font-size: 12px;
    gap: 8px;
  }
}
article.single div.single-header div.single-header__container div.single-header__content div.single-header__infos p.single-header__infos-time a,
article.single div.single-header div.single-header__container div.single-header__content div.single-header__infos p.single-header__infos-cat a {
  color: var(--white);
  text-decoration: none;
}
article.single div.single-header div.single-header__container div.single-header__content div.single-header__infos p.single-header__infos-time a:hover,
article.single div.single-header div.single-header__container div.single-header__content div.single-header__infos p.single-header__infos-cat a:hover {
  color: var(--yellow);
}
article.single div.body {
  max-width: 67ch;
  margin: 0 auto;
  padding: 32px 16px;
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  article.single div.body {
    padding: 48px 16px;
    font-size: 16px;
  }
}
@media screen and (min-width: 1024px) {
  article.single div.body {
    padding: 64px 0;
  }
}
article.single div.body div.body__summary {
  padding: 24px;
  background-color: var(--yellow-10);
  margin-bottom: 40px;
  border-radius: 8px;
  border-left: 4px solid var(--yellow);
}
article.single div.body div.body__summary .body__summary-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-weight: 600;
  font-size: 18px;
  color: var(--black);
}
article.single div.body div.body__summary .body__summary-header i {
  color: var(--yellow);
  font-size: 20px;
}
article.single div.body div.body__summary p {
  margin-bottom: 0;
}
article.single div.body {
  /* Titres */
}
article.single div.body h2,
article.single div.body h3,
article.single div.body h4,
article.single div.body h5,
article.single div.body h6 {
  font-weight: 600;
  color: var(--black-100);
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  article.single div.body h2,
  article.single div.body h3,
  article.single div.body h4,
  article.single div.body h5,
  article.single div.body h6 {
    margin-top: 40px;
    margin-bottom: 16px;
  }
}
article.single div.body h2 {
  font-size: 22px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  article.single div.body h2 {
    font-size: 24px;
    margin-top: 48px;
  }
}
@media screen and (min-width: 1024px) {
  article.single div.body h2 {
    font-size: 28px;
  }
}
article.single div.body h3 {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  article.single div.body h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  article.single div.body h3 {
    font-size: 24px;
  }
}
article.single div.body h4 {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  article.single div.body h4 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1024px) {
  article.single div.body h4 {
    font-size: 20px;
  }
}
article.single div.body h5,
article.single div.body h6 {
  font-size: 15px;
}
@media screen and (min-width: 768px) {
  article.single div.body h5,
  article.single div.body h6 {
    font-size: 16px;
  }
}
article.single div.body {
  /* Paragraphes */
}
article.single div.body p {
  margin-bottom: 16px;
}
article.single div.body {
  /* Texte gras */
}
article.single div.body strong,
article.single div.body b {
  font-weight: 500;
  color: var(--black-100);
}
article.single div.body {
  /* Liens */
}
article.single div.body a {
  color: var(--yellow);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 2px;
}
article.single div.body a:hover {
  color: var(--yellow-80);
  text-decoration-color: var(--yellow-80);
}
article.single div.body a:visited {
  color: var(--yellow-80);
}
article.single div.body {
  /* Images et captions - sans effets visuels */
}
article.single div.body figure {
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  article.single div.body figure {
    margin: 32px 0;
  }
}
article.single div.body figure img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
  margin: 0;
}
article.single div.body figure figcaption {
  font-size: 12px;
  color: var(--black-50);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  article.single div.body figure figcaption {
    font-size: 13px;
  }
}
article.single div.body {
  /* Images sans figure */
}
article.single div.body > img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 20px 0;
  display: block;
}
@media screen and (min-width: 768px) {
  article.single div.body > img {
    margin: 32px 0;
  }
}
article.single div.body {
  /* Tableaux — breakout + scroll horizontal */
}
article.single div.body figure.wp-block-table,
article.single div.body .table-wrapper {
  width: calc(100vw - 32px);
  max-width: var(--max-width);
  margin-left: 50%;
  transform: translateX(-50%);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 24px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  article.single div.body figure.wp-block-table,
  article.single div.body .table-wrapper {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
article.single div.body figure.wp-block-table table,
article.single div.body .table-wrapper table {
  min-width: 600px;
}
article.single div.body table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  background-color: var(--white);
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid var(--black-10);
}
article.single div.body table thead {
  background-color: var(--yellow);
}
article.single div.body table thead th {
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
  color: var(--black-100);
  border-bottom: 2px solid var(--yellow-80);
  font-size: 13px;
}
@media screen and (min-width: 768px) {
  article.single div.body table thead th {
    padding: 16px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  article.single div.body table thead th {
    padding: 16px 24px;
    font-size: 16px;
  }
}
article.single div.body table tbody tr {
  border-bottom: 1px solid var(--black-10);
}
article.single div.body table tbody tr:last-child {
  border-bottom: none;
}
article.single div.body table tbody tr td {
  padding: 10px 16px;
  color: var(--black-90);
  font-size: 13px;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  article.single div.body table tbody tr td {
    padding: 12px 16px;
    font-size: 14px;
  }
}
@media screen and (min-width: 1024px) {
  article.single div.body table tbody tr td {
    padding: 16px 24px;
    font-size: 15px;
  }
}
article.single div.body {
  /* Fallback sans JS — breakout direct */
}
article.single div.body > table {
  width: calc(100vw - 32px);
  max-width: var(--max-width);
  margin-left: 50%;
  transform: translateX(-50%);
  margin-top: 24px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  article.single div.body > table {
    margin-top: 32px;
    margin-bottom: 32px;
  }
}
article.single div.body {
  /* Listes */
}
article.single div.body ul,
article.single div.body ol {
  margin: 12px 0;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  article.single div.body ul,
  article.single div.body ol {
    margin: 16px 0;
    padding-left: 24px;
  }
}
article.single div.body ul li,
article.single div.body ol li {
  margin-bottom: 6px;
  color: var(--black-90);
}
@media screen and (min-width: 768px) {
  article.single div.body ul li,
  article.single div.body ol li {
    margin-bottom: 8px;
  }
}
article.single div.body ul {
  list-style-type: disc;
}
article.single div.body ul li::marker {
  color: var(--yellow);
}
article.single div.body ol {
  list-style-type: decimal;
}
article.single div.body ol li::marker {
  color: var(--yellow);
  font-weight: 600;
}
article.single div.body {
  /* Blockquote */
}
article.single div.body blockquote {
  border-left: 3px solid var(--yellow);
  padding-left: 16px;
  margin: 24px 0;
  font-style: italic;
  color: var(--black-90);
}
@media screen and (min-width: 768px) {
  article.single div.body blockquote {
    border-left: 4px solid var(--yellow);
    padding-left: 24px;
    margin: 32px 0;
  }
}
article.single div.body blockquote p {
  margin-bottom: 0;
}
article.single div.body {
  /* Code */
}
article.single div.body code {
  background-color: var(--black-10);
  padding: 2px 6px;
  border-radius: 3px;
  font-family: monospace;
  font-size: 13px;
  color: var(--black-100);
}
@media screen and (min-width: 768px) {
  article.single div.body code {
    font-size: 14px;
  }
}
article.single div.body pre {
  background-color: var(--black-100);
  padding: 12px;
  border-radius: 4px;
  overflow-x: auto;
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  article.single div.body pre {
    padding: 16px;
    margin: 24px 0;
  }
}
article.single div.body pre code {
  background-color: transparent;
  color: var(--white);
  padding: 0;
}
article.single div.body {
  /* Sommaire (Table of Contents) */
}
article.single div.body .toc {
  background-color: var(--white);
  border-radius: 6px;
  margin: 32px 0 40px;
  overflow: hidden;
  border-left: 4px solid var(--yellow);
}
article.single div.body .toc .toc__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 20px;
  cursor: pointer;
  user-select: none;
  transition: background-color 0.2s ease;
}
article.single div.body .toc .toc__header:hover {
  background-color: var(--white);
}
article.single div.body .toc .toc__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--yellow);
  margin: 0;
}
article.single div.body .toc .toc__toggle {
  background: none;
  border: none;
  padding: 4px;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  align-items: center;
  border-radius: 4px;
  transition: color 0.2s ease;
}
article.single div.body .toc .toc__toggle:hover {
  color: var(--yellow);
}
article.single div.body .toc .toc__toggle svg {
  transition: transform 0.25s ease;
}
article.single div.body .toc.toc--expanded .toc__toggle svg {
  transform: rotate(180deg);
}
article.single div.body .toc .toc__content {
  padding: 4px 20px 20px;
  transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.3s ease;
}
article.single div.body .toc.toc--collapsed .toc__content {
  max-height: 0;
  padding: 0 20px;
  opacity: 0;
  overflow: hidden;
}
article.single div.body .toc.toc--expanded .toc__content {
  max-height: 2000px;
  opacity: 1;
}
article.single div.body .toc .toc__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
article.single div.body .toc .toc__sublist {
  list-style: none;
  margin: 0;
  padding: 0 0 0 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  margin-left: 4px;
  margin-top: 2px;
}
article.single div.body .toc .toc__item {
  margin: 0;
  padding: 0;
}
article.single div.body .toc .toc__link {
  display: flex;
  align-items: flex-start;
  color: var(--black-90);
  text-decoration: none;
  font-size: 13px;
  line-height: 1.5;
  padding: 5px 0;
  gap: 8px;
  transition: color 0.2s ease;
}
article.single div.body .toc .toc__link:hover {
  color: var(--yellow);
}
article.single div.body .toc .toc__link:hover .toc__number {
  opacity: 1;
}
article.single div.body .toc .toc__link:visited {
  color: rgba(255, 255, 255, 0.7);
}
article.single div.body .toc .toc__number {
  color: var(--yellow);
  font-weight: 700;
  font-size: 11px;
  min-width: 14px;
  flex-shrink: 0;
  opacity: 0.7;
  margin-top: 2px;
  transition: opacity 0.2s ease;
}
article.single div.body .toc .toc__text {
  flex: 1;
}
article.single div.body .toc .toc__item--level-2 .toc__link {
  font-weight: 500;
  color: var(--black-90);
}
article.single div.body .toc .toc__item--level-3 .toc__link {
  font-size: 12px;
  color: var(--black-50);
}
article.single div.body .toc .toc__item--level-3 .toc__link:hover {
  color: var(--yellow);
}
article.single div.body .toc .toc__item--level-4 .toc__link {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
}
article.single div.body .toc .toc__item--level-4 .toc__link:hover {
  color: var(--yellow);
}
article.single div.body {
  /* Ancres des titres */
}
article.single div.body h2[id^=section-],
article.single div.body h3[id^=section-],
article.single div.body h4[id^=section-] {
  scroll-margin-top: 80px;
}
@media screen and (min-width: 768px) {
  article.single div.body h2[id^=section-],
  article.single div.body h3[id^=section-],
  article.single div.body h4[id^=section-] {
    scroll-margin-top: 100px;
  }
}
article.single div.body {
  /* ================================
     CLASSES WORDPRESS
     ================================ */
  /* Alignements classiques */
}
article.single div.body .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
article.single div.body .alignleft {
  float: left;
  margin: 4px 20px 12px 0;
}
article.single div.body .alignright {
  float: right;
  margin: 4px 0 12px 20px;
}
article.single div.body .alignnone {
  display: block;
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  article.single div.body .alignnone {
    margin: 32px 0;
  }
}
article.single div.body {
  /* Clear après les floats */
}
article.single div.body .alignleft + *,
article.single div.body .alignright + * {
  clear: none;
}
article.single div.body h2,
article.single div.body h3,
article.single div.body h4,
article.single div.body h5,
article.single div.body h6 {
  clear: both;
}
article.single div.body {
  /* WP Caption (éditeur classique) */
}
article.single div.body .wp-caption {
  max-width: 100%;
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  article.single div.body .wp-caption {
    margin: 32px 0;
  }
}
article.single div.body .wp-caption.aligncenter {
  margin-left: auto;
  margin-right: auto;
}
article.single div.body .wp-caption img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}
article.single div.body .wp-caption .wp-caption-text {
  font-size: 12px;
  color: var(--black-50);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  article.single div.body .wp-caption .wp-caption-text {
    font-size: 13px;
  }
}
article.single div.body {
  /* Bloc Image (Gutenberg) */
}
article.single div.body .wp-block-image {
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  article.single div.body .wp-block-image {
    margin: 32px 0;
  }
}
article.single div.body .wp-block-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
  display: block;
}
article.single div.body .wp-block-image figcaption {
  font-size: 12px;
  color: var(--black-50);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  article.single div.body .wp-block-image figcaption {
    font-size: 13px;
  }
}
article.single div.body .wp-block-image {
  /* Alignement sur le bloc ou sur le figure enfant */
}
article.single div.body .wp-block-image.aligncenter,
article.single div.body .wp-block-image figure.aligncenter {
  text-align: center;
}
article.single div.body .wp-block-image.aligncenter img,
article.single div.body .wp-block-image figure.aligncenter img {
  margin-left: auto;
  margin-right: auto;
}
article.single div.body .wp-block-image.alignleft,
article.single div.body .wp-block-image figure.alignleft {
  float: left;
  margin: 4px 20px 12px 0;
}
article.single div.body .wp-block-image.alignright,
article.single div.body .wp-block-image figure.alignright {
  float: right;
  margin: 4px 0 12px 20px;
}
article.single div.body {
  /* Bloc Embed / Vidéo (YouTube, etc.) */
}
article.single div.body .wp-block-embed {
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  article.single div.body .wp-block-embed {
    margin: 32px 0;
  }
}
article.single div.body .wp-block-embed .wp-block-embed__wrapper {
  position: relative;
  padding-bottom: 56.25%; /* ratio 16:9 */
  height: 0;
  overflow: hidden;
}
article.single div.body .wp-block-embed .wp-block-embed__wrapper iframe,
article.single div.body .wp-block-embed .wp-block-embed__wrapper object,
article.single div.body .wp-block-embed .wp-block-embed__wrapper embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
}
article.single div.body .wp-block-embed figcaption {
  font-size: 12px;
  color: var(--black-50);
  text-align: center;
  margin-top: 8px;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  article.single div.body .wp-block-embed figcaption {
    font-size: 13px;
  }
}
article.single div.body {
  /* Bloc Galerie */
}
article.single div.body .wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  article.single div.body .wp-block-gallery {
    gap: 12px;
    margin: 32px 0;
  }
}
article.single div.body .wp-block-gallery .wp-block-image {
  margin: 0;
  flex-grow: 1;
}
article.single div.body .wp-block-gallery .wp-block-image img {
  width: 100%;
  object-fit: cover;
}
article.single div.body {
  /* Bloc Séparateur */
}
article.single div.body .wp-block-separator {
  border: none;
  border-top: 2px solid var(--black-10);
  margin: 32px auto;
  max-width: 100px;
}
@media screen and (min-width: 768px) {
  article.single div.body .wp-block-separator {
    margin: 40px auto;
  }
}
article.single div.body .wp-block-separator.is-style-wide {
  max-width: 100%;
}
article.single div.body .wp-block-separator.is-style-dots {
  border: none;
  max-width: 100%;
  text-align: center;
}
article.single div.body .wp-block-separator.is-style-dots::before {
  content: "···";
  font-size: 24px;
  letter-spacing: 16px;
  color: var(--black-30);
}
article.single div.body {
  /* Alignement texte Gutenberg */
}
article.single div.body .has-text-align-center {
  text-align: center;
}
article.single div.body .has-text-align-left {
  text-align: left;
}
article.single div.body .has-text-align-right {
  text-align: right;
}
article.single div.body {
  /* Bloc Colonnes */
}
article.single div.body .wp-block-columns {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  article.single div.body .wp-block-columns {
    flex-direction: row;
    gap: 24px;
    margin: 32px 0;
  }
}
article.single div.body .wp-block-columns .wp-block-column {
  flex: 1;
}
article.single div.body {
  /* Bloc Bouton */
}
article.single div.body .wp-block-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0;
}
@media screen and (min-width: 768px) {
  article.single div.body .wp-block-buttons {
    margin: 32px 0;
  }
}
article.single div.body .wp-block-button__link {
  display: inline-block;
  padding: 10px 20px;
  background-color: var(--yellow);
  color: var(--black-100);
  text-decoration: none;
  border-radius: 4px;
  font-weight: 600;
  font-size: 14px;
}
article.single div.body .wp-block-button__link:hover {
  background-color: var(--yellow-80);
}
article.single div.body .wp-block-button__link:visited {
  color: var(--black-100);
}
article.single div.author {
  max-width: 67ch;
  margin: 0 auto;
  padding: 16px;
  font-size: 15px;
  line-height: 1.6;
  background-color: var(--white);
  border: 1px solid var(--black-10);
  border-radius: 4px;
  margin-top: 64px;
  gap: 16px;
  display: grid;
  grid-template-columns: 60px 1fr;
}
@media screen and (min-width: 768px) {
  article.single div.author {
    padding: 20px;
    font-size: 16px;
    margin-top: 80px;
    gap: 20px;
    grid-template-columns: 80px 1fr;
  }
}
@media screen and (min-width: 1024px) {
  article.single div.author {
    padding: 24px;
    margin-top: 80px;
    gap: 24px;
    grid-template-columns: 1fr 7fr;
  }
}
article.single div.author div.author__avatar {
  width: 100%;
}
article.single div.author div.author__avatar img {
  border-radius: 4px;
}
article.single div.author div.author__info h3.author__name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  article.single div.author div.author__info h3.author__name {
    font-size: 17px;
  }
}
@media screen and (min-width: 1024px) {
  article.single div.author div.author__info h3.author__name {
    font-size: 18px;
  }
}
article.single div.author div.author__info p.author__count {
  font-size: 13px;
  margin-bottom: 8px;
  color: var(--black-50);
}
@media screen and (min-width: 768px) {
  article.single div.author div.author__info p.author__count {
    font-size: 14px;
    margin-bottom: 12px;
  }
}
article.single div.author div.author__info p.author__bio {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  article.single div.author div.author__info p.author__bio {
    font-size: 15px;
    line-height: 1.6;
  }
}
@media screen and (min-width: 1024px) {
  article.single div.author div.author__info p.author__bio {
    font-size: 16px;
  }
}
article.single div.related-articles {
  margin-bottom: 64px;
  padding: 0 16px;
}
@media screen and (min-width: 768px) {
  article.single div.related-articles {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 1024px) {
  article.single div.related-articles {
    margin-bottom: 112px;
  }
}
article.single div.related-articles h2.related-articles__title {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: bold;
  padding-bottom: 24px;
}
@media screen and (min-width: 768px) {
  article.single div.related-articles h2.related-articles__title {
    font-size: 15px;
    padding-bottom: 28px;
  }
}
@media screen and (min-width: 1024px) {
  article.single div.related-articles h2.related-articles__title {
    font-size: 16px;
    padding-bottom: 32px;
  }
}
article.single div.related-articles h2.related-articles__title:after {
  content: "";
  left: 0;
  display: block;
  width: 70px;
  height: 5px;
  background-color: var(--yellow-80);
}
article.single div.related-articles div.related-articles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 768px) {
  article.single div.related-articles div.related-articles__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media screen and (min-width: 1024px) {
  article.single div.related-articles div.related-articles__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
}

/* Category Archive - Mobile First */
section.category {
  margin-top: 48px;
  margin-bottom: 48px;
  min-height: 60vh;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 768px) {
  section.category {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
@media screen and (min-width: 1024px) {
  section.category {
    padding-left: 0;
    padding-right: 0;
  }
}
section.category div.category__container div.category__heading {
  padding: 12px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background-color: var(--yellow);
  border-radius: 4px;
  margin-bottom: 24px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  section.category div.category__container div.category__heading {
    padding: 16px 24px;
    gap: 24px;
  }
}
section.category div.category__container div.category__heading img.category__icon {
  position: absolute;
  right: 7px;
  top: 5px;
  width: 69px;
  height: auto;
  mix-blend-mode: soft-light;
  pointer-events: none;
  transform: rotate(359deg);
}
section.category div.category__container div.category__heading h1.category__title {
  position: relative;
  z-index: 100;
  letter-spacing: -5%;
  font-size: 20px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  section.category div.category__container div.category__heading h1.category__title {
    font-size: 24px;
  }
}
section.category div.category__container div.category-post {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  section.category div.category__container div.category-post {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  section.category div.category__container div.category-post {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

/* Dossier Archive - Mobile First */
section.dossier div.dossier-header {
  background-color: var(--black-100);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
section.dossier div.dossier-header div.dossier-header__shadow {
  background-color: rgba(38, 38, 38, 0.7);
  width: 100%;
}
section.dossier div.dossier-header div.dossier-header__container {
  color: var(--white);
  padding: 48px 16px;
}
@media screen and (min-width: 768px) {
  section.dossier div.dossier-header div.dossier-header__container {
    padding: 64px 16px;
  }
}
@media screen and (min-width: 1024px) {
  section.dossier div.dossier-header div.dossier-header__container {
    padding: 80px 0;
  }
}
section.dossier div.dossier-header div.dossier-header__container div.dossier-header__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
section.dossier div.dossier-header div.dossier-header__container span.dossier-header__label {
  background-color: var(--yellow);
  color: var(--black-100);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 2px;
  line-height: 1;
}
section.dossier div.dossier-header div.dossier-header__container span.dossier-header__count {
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
}
section.dossier div.dossier-header div.dossier-header__container span.dossier-header__count::before {
  content: "—";
  margin-right: 8px;
  opacity: 0.4;
}
section.dossier div.dossier-header div.dossier-header__container h1.dossier-header__title {
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  max-width: 680px;
  margin-bottom: 16px;
  text-wrap: balance;
  animation: fadeInUp 0.5s ease-out 0.1s both;
}
@media screen and (min-width: 768px) {
  section.dossier div.dossier-header div.dossier-header__container h1.dossier-header__title {
    font-size: 32px;
  }
}
@media screen and (min-width: 1024px) {
  section.dossier div.dossier-header div.dossier-header__container h1.dossier-header__title {
    font-size: 40px;
  }
}
section.dossier div.dossier-header div.dossier-header__container div.dossier-header__description {
  max-width: 580px;
  animation: fadeInUp 0.5s ease-out 0.25s both;
}
section.dossier div.dossier-header div.dossier-header__container div.dossier-header__description div.dossier-header__description-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.65;
  overflow: hidden;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media screen and (min-width: 768px) {
  section.dossier div.dossier-header div.dossier-header__container div.dossier-header__description div.dossier-header__description-text {
    font-size: 16px;
  }
}
section.dossier div.dossier-header div.dossier-header__container div.dossier-header__description div.dossier-header__description-text p {
  margin: 0;
}
section.dossier div.dossier-header div.dossier-header__container div.dossier-header__description button.dossier-header__description-toggle {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: opacity 0.2s ease;
}
section.dossier div.dossier-header div.dossier-header__container div.dossier-header__description button.dossier-header__description-toggle:hover {
  opacity: 0.75;
}
section.dossier div.dossier-header div.dossier-header__container div.dossier-header__description button.dossier-header__description-toggle svg {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}
section.dossier div.dossier-header div.dossier-header__container div.dossier-header__description.is-collapsible button.dossier-header__description-toggle {
  display: inline-flex;
}
section.dossier div.dossier-header div.dossier-header__container div.dossier-header__description.is-collapsed div.dossier-header__description-text {
  -webkit-mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 55%, transparent 100%);
}
section.dossier div.dossier-header div.dossier-header__container div.dossier-header__description.is-expanded div.dossier-header__description-text {
  -webkit-mask-image: none;
  mask-image: none;
}
section.dossier div.dossier-header div.dossier-header__container div.dossier-header__description.is-expanded button.dossier-header__description-toggle svg {
  transform: rotate(180deg);
}
section.dossier div.dossier-editorial {
  padding: 0 16px 64px;
}
@media screen and (min-width: 768px) {
  section.dossier div.dossier-editorial {
    padding: 0 16px 80px;
  }
}
@media screen and (min-width: 1024px) {
  section.dossier div.dossier-editorial {
    padding: 0 0 80px;
  }
}
section.dossier div.dossier-editorial div.dossier-editorial__content {
  max-width: 67ch;
  margin: 0 auto;
  border-top: 1px solid var(--black-10);
  padding-top: 48px;
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  section.dossier div.dossier-editorial div.dossier-editorial__content {
    font-size: 16px;
  }
}
section.dossier div.dossier-editorial div.dossier-editorial__content h2,
section.dossier div.dossier-editorial div.dossier-editorial__content h3,
section.dossier div.dossier-editorial div.dossier-editorial__content h4 {
  font-weight: 600;
  color: var(--black-100);
  margin-top: 32px;
  margin-bottom: 12px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  section.dossier div.dossier-editorial div.dossier-editorial__content h2,
  section.dossier div.dossier-editorial div.dossier-editorial__content h3,
  section.dossier div.dossier-editorial div.dossier-editorial__content h4 {
    margin-top: 40px;
    margin-bottom: 16px;
  }
}
section.dossier div.dossier-editorial div.dossier-editorial__content h2 {
  font-size: 22px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  section.dossier div.dossier-editorial div.dossier-editorial__content h2 {
    font-size: 24px;
    margin-top: 48px;
  }
}
@media screen and (min-width: 1024px) {
  section.dossier div.dossier-editorial div.dossier-editorial__content h2 {
    font-size: 28px;
  }
}
section.dossier div.dossier-editorial div.dossier-editorial__content h2:first-child {
  margin-top: 0;
}
section.dossier div.dossier-editorial div.dossier-editorial__content h3 {
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  section.dossier div.dossier-editorial div.dossier-editorial__content h3 {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  section.dossier div.dossier-editorial div.dossier-editorial__content h3 {
    font-size: 24px;
  }
}
section.dossier div.dossier-editorial div.dossier-editorial__content p {
  margin-bottom: 16px;
}
section.dossier div.dossier-editorial div.dossier-editorial__content strong,
section.dossier div.dossier-editorial div.dossier-editorial__content b {
  font-weight: 500;
  color: var(--black-100);
}
section.dossier div.dossier-editorial div.dossier-editorial__content a {
  color: var(--yellow);
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-underline-offset: 2px;
}
section.dossier div.dossier-editorial div.dossier-editorial__content a:hover {
  color: var(--yellow-80);
  text-decoration-color: var(--yellow-80);
}
section.dossier div.dossier-editorial div.dossier-editorial__content ul,
section.dossier div.dossier-editorial div.dossier-editorial__content ol {
  margin: 12px 0;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  section.dossier div.dossier-editorial div.dossier-editorial__content ul,
  section.dossier div.dossier-editorial div.dossier-editorial__content ol {
    margin: 16px 0;
    padding-left: 24px;
  }
}
section.dossier div.dossier-editorial div.dossier-editorial__content ul li,
section.dossier div.dossier-editorial div.dossier-editorial__content ol li {
  margin-bottom: 6px;
  color: var(--black-90);
}
@media screen and (min-width: 768px) {
  section.dossier div.dossier-editorial div.dossier-editorial__content ul li,
  section.dossier div.dossier-editorial div.dossier-editorial__content ol li {
    margin-bottom: 8px;
  }
}
section.dossier div.dossier-editorial div.dossier-editorial__content ul {
  list-style-type: disc;
}
section.dossier div.dossier-editorial div.dossier-editorial__content ul li::marker {
  color: var(--yellow);
}
section.dossier div.dossier-editorial div.dossier-editorial__content ol {
  list-style-type: decimal;
}
section.dossier div.dossier-editorial div.dossier-editorial__content ol li::marker {
  color: var(--yellow);
  font-weight: 600;
}
section.dossier div.dossier-editorial div.dossier-editorial__content blockquote {
  border-left: 3px solid var(--yellow);
  padding-left: 16px;
  margin: 24px 0;
  font-style: italic;
  color: var(--black-90);
}
@media screen and (min-width: 768px) {
  section.dossier div.dossier-editorial div.dossier-editorial__content blockquote {
    border-left: 4px solid var(--yellow);
    padding-left: 24px;
    margin: 32px 0;
  }
}
section.dossier div.dossier-editorial div.dossier-editorial__content blockquote p {
  margin-bottom: 0;
}
section.dossier div.dossier__body {
  padding: 48px 16px 64px;
}
@media screen and (min-width: 768px) {
  section.dossier div.dossier__body {
    padding: 64px 16px 80px;
  }
}
@media screen and (min-width: 1024px) {
  section.dossier div.dossier__body {
    padding: 64px 0 80px;
  }
}
section.dossier div.dossier__body div.dossier__section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
section.dossier div.dossier__body div.dossier__section-header span {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black-50);
  white-space: nowrap;
}
section.dossier div.dossier__body div.dossier__section-header::after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: var(--black-10);
}
section.dossier div.dossier__body div.dossier__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  section.dossier div.dossier__body div.dossier__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  section.dossier div.dossier__body div.dossier__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

section.search {
  margin-top: 48px;
  margin-bottom: 48px;
  min-height: 60vh;
  padding-left: 16px;
  padding-right: 16px;
}
@media screen and (min-width: 768px) {
  section.search {
    margin-top: 64px;
    margin-bottom: 64px;
  }
}
@media screen and (min-width: 1024px) {
  section.search {
    padding-left: 0;
    padding-right: 0;
  }
}
section.search div.search__container div.search__heading {
  padding: 12px 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  background-color: var(--yellow);
  border-radius: 4px;
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  section.search div.search__container div.search__heading {
    padding: 16px 24px;
    gap: 24px;
  }
}
section.search div.search__container div.search__heading svg {
  width: 36px;
  height: auto;
  flex-shrink: 0;
  color: var(--black-100);
}
@media screen and (min-width: 768px) {
  section.search div.search__container div.search__heading svg {
    width: 48px;
  }
}
section.search div.search__container div.search__heading h1.search__title {
  letter-spacing: -0.05em;
  font-size: 20px;
  line-height: 1.3;
}
@media screen and (min-width: 768px) {
  section.search div.search__container div.search__heading h1.search__title {
    font-size: 24px;
  }
}
section.search div.search__container div.search__heading h1.search__title span {
  font-weight: 400;
}
section.search div.search__container p.search__count {
  font-size: 14px;
  color: var(--black-50);
  margin-bottom: 24px;
}
@media screen and (min-width: 768px) {
  section.search div.search__container p.search__count {
    font-size: 16px;
  }
}
section.search div.search__container div.search__results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  section.search div.search__container div.search__results {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media screen and (min-width: 1024px) {
  section.search div.search__container div.search__results {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
section.search div.search__container .search-glossaire-term {
  background-color: var(--white);
  border: 1px solid var(--black-10);
  border-radius: 4px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
section.search div.search__container .search-glossaire-term__badge {
  display: inline-block;
  align-self: flex-start;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--yellow);
  background-color: rgba(247, 168, 27, 0.1);
  padding: 3px 8px;
  border-radius: 3px;
}
section.search div.search__container .search-glossaire-term__name {
  font-size: 17px;
  font-weight: 600;
  color: var(--black-100);
}
section.search div.search__container .search-glossaire-term__def {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
}
section.search div.search__container .search-glossaire-term__def strong {
  color: var(--black-100);
  font-weight: 600;
}
section.search div.search__container div.search__empty {
  text-align: center;
  padding: 48px 24px;
  background-color: var(--white);
  border: 1px solid var(--black-10);
  border-radius: 4px;
}
section.search div.search__container div.search__empty p.search__empty-text {
  font-size: 18px;
  font-weight: 600;
  color: var(--black-100);
  margin-bottom: 12px;
}
section.search div.search__container div.search__empty p.search__empty-suggestion {
  font-size: 14px;
  color: var(--black-50);
  margin-bottom: 24px;
}
section.search div.search__container div.search__empty form {
  max-width: 400px;
  margin: 0 auto;
}
section.search div.search__container div.search__empty form input[type=search] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--black-10);
  border-radius: 4px;
  font-size: 16px;
  margin-bottom: 12px;
}
section.search div.search__container div.search__empty form input[type=search]:focus {
  outline: none;
  border-color: var(--yellow);
}
section.search div.search__container div.search__empty form button[type=submit],
section.search div.search__container div.search__empty form input[type=submit] {
  width: 100%;
  padding: 12px 24px;
  background-color: var(--yellow);
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--black-100);
  cursor: pointer;
  transition: background-color 0.2s ease;
}
section.search div.search__container div.search__empty form button[type=submit]:hover,
section.search div.search__container div.search__empty form input[type=submit]:hover {
  background-color: var(--yellow-80);
}

.politique {
  padding: 60px 24px 80px;
  max-width: 780px;
  margin: 0 auto;
}
.politique__titre {
  font-size: 32px;
  font-weight: 700;
  color: var(--black-100);
  margin-bottom: 48px;
}
.politique__section {
  margin-bottom: 40px;
}
.politique__section h2 {
  font-size: 18px;
  font-weight: 600;
  color: var(--black-100);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--black-10);
}
.politique__section p {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 10px;
}
.politique__section ul {
  margin: 10px 0 10px 20px;
  list-style: disc;
}
.politique__section ul li {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
  margin-bottom: 4px;
}
.politique__section a {
  color: var(--black-90);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.politique__section a:hover {
  color: var(--yellow);
}

section.not-found {
  margin-top: 48px;
  margin-bottom: 80px;
  min-height: 60vh;
  padding-left: 16px;
  padding-right: 16px;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  section.not-found {
    margin-top: 64px;
    margin-bottom: 96px;
  }
}
@media screen and (min-width: 1024px) {
  section.not-found {
    padding-left: 0;
    padding-right: 0;
  }
}
section.not-found div.not-found__container {
  text-align: center;
}
section.not-found div.not-found__container div.not-found__code {
  font-size: 96px;
  font-weight: 800;
  line-height: 1;
  color: var(--yellow);
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}
@media screen and (min-width: 768px) {
  section.not-found div.not-found__container div.not-found__code {
    font-size: 140px;
  }
}
section.not-found div.not-found__container h1.not-found__title {
  font-size: 24px;
  font-weight: 700;
  color: var(--black-100);
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}
@media screen and (min-width: 768px) {
  section.not-found div.not-found__container h1.not-found__title {
    font-size: 32px;
  }
}
section.not-found div.not-found__container p.not-found__text {
  font-size: 15px;
  color: var(--black-50);
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  section.not-found div.not-found__container p.not-found__text {
    font-size: 16px;
  }
}
section.not-found div.not-found__container div.not-found__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  section.not-found div.not-found__container div.not-found__actions {
    flex-direction: row;
    justify-content: center;
  }
}
section.not-found div.not-found__container div.not-found__actions a.not-found__btn--primary {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--yellow);
  color: var(--black-100);
  font-size: 15px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.2s ease;
  white-space: nowrap;
}
section.not-found div.not-found__container div.not-found__actions a.not-found__btn--primary:hover {
  background-color: var(--yellow-80);
}
section.not-found div.not-found__container div.not-found__actions form.not-found__search {
  display: flex;
  align-items: center;
  border: 1px solid var(--black-10);
  border-radius: 4px;
  overflow: hidden;
  background-color: var(--white);
  width: 100%;
  max-width: 320px;
}
section.not-found div.not-found__container div.not-found__actions form.not-found__search input.not-found__search-input {
  flex: 1;
  padding: 11px 16px;
  border: none;
  font-size: 14px;
  color: var(--black-100);
  background: transparent;
}
section.not-found div.not-found__container div.not-found__actions form.not-found__search input.not-found__search-input:focus {
  outline: none;
}
section.not-found div.not-found__container div.not-found__actions form.not-found__search input.not-found__search-input::placeholder {
  color: var(--black-50);
}
section.not-found div.not-found__container div.not-found__actions form.not-found__search button.not-found__search-btn {
  padding: 11px 14px;
  background-color: transparent;
  border: none;
  color: var(--black-50);
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
section.not-found div.not-found__container div.not-found__actions form.not-found__search button.not-found__search-btn:hover {
  color: var(--black-100);
}

.about-page .about-hero {
  background-color: var(--yellow);
  padding: 64px 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .about-page .about-hero {
    padding: 96px 24px;
  }
}
.about-page .about-hero__tagline {
  display: inline-block;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 8px;
  background-color: var(--yellow-80);
}
.about-page .about-hero__title {
  color: var(--white);
  font-size: clamp(26px, 5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.about-page .about-hero__subtitle {
  color: var(--white);
  font-size: 17px;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.about-page .about-story {
  padding: 64px 24px;
  background-color: var(--white);
}
@media screen and (min-width: 768px) {
  .about-page .about-story {
    padding: 96px 24px;
  }
}
.about-page .about-story__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .about-page .about-story__container {
    grid-template-columns: 1fr 1fr;
  }
}
.about-page .about-story__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.about-page .about-story__title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--black-100);
  margin-bottom: 24px;
  line-height: 1.3;
}
.about-page .about-story__content p {
  color: var(--grey);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: 15px;
}
.about-page .about-story__content p:last-child {
  margin-bottom: 0;
}
.about-page .about-story__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}
.about-page .about-story__placeholder {
  width: 100%;
  height: 420px;
  background-color: var(--black-10);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: var(--black-50);
  font-size: 14px;
  text-align: center;
  line-height: 1.7;
}
.about-page .about-story__placeholder strong {
  color: var(--black-90);
}
.about-page .about-values {
  background-color: var(--bg);
  padding: 64px 24px;
}
@media screen and (min-width: 768px) {
  .about-page .about-values {
    padding: 96px 24px;
  }
}
.about-page .about-values__label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  text-align: center;
  margin-bottom: 12px;
}
.about-page .about-values__title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 48px;
  color: var(--black-100);
}
.about-page .about-values__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 640px) {
  .about-page .about-values__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.about-page .about-values__item {
  background-color: var(--white);
  padding: 32px 28px;
  border: 1px solid var(--black-10);
  border-bottom: 3px solid var(--yellow);
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.about-page .about-values__item:hover {
  transform: translateY(-4px);
}
.about-page .about-values__item h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--black-100);
  margin-bottom: 12px;
  margin-top: 20px;
}
.about-page .about-values__item p {
  font-size: 14px;
  color: var(--grey);
  line-height: 1.7;
}
.about-page .about-values__icon {
  width: 52px;
  height: 52px;
  background-color: rgba(247, 168, 27, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-page .about-mission {
  background-color: var(--black-100);
  padding: 64px 24px;
}
@media screen and (min-width: 768px) {
  .about-page .about-mission {
    padding: 96px 24px;
  }
}
.about-page .about-mission__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .about-page .about-mission__container {
    grid-template-columns: 1fr 1fr;
  }
}
.about-page .about-mission__label {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--yellow);
  margin-bottom: 16px;
}
.about-page .about-mission__title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.3;
}
.about-page .about-mission__text p {
  color: var(--white-50);
  line-height: 1.8;
  font-size: 15px;
  margin-bottom: 16px;
}
.about-page .about-mission__text p strong {
  color: var(--white);
  font-weight: 600;
}
.about-page .about-mission__text p:last-of-type {
  margin-bottom: 32px;
}
.about-page .about-mission__btn {
  font-weight: 600;
}
.about-page .about-mission__stats {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.about-page .about-mission__stat {
  border-left: 3px solid var(--yellow);
  padding-left: 24px;
}
.about-page .about-mission__stat-number {
  display: block;
  font-size: clamp(36px, 5vw, 54px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.about-page .about-mission__stat-label {
  font-size: 14px;
  color: var(--white-50);
  font-weight: 300;
  letter-spacing: 0.5px;
}
.about-page .about-cta {
  padding: 80px 24px;
  text-align: center;
  background-color: var(--bg);
  border-top: 1px solid var(--black-10);
}
.about-page .about-cta__title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 700;
  color: var(--black-100);
  margin-bottom: 16px;
}
.about-page .about-cta__desc {
  font-size: 16px;
  color: var(--grey);
  margin-bottom: 40px;
  line-height: 1.6;
}
.about-page .about-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 480px) {
  .about-page .about-cta__actions {
    flex-direction: row;
    justify-content: center;
  }
}
.about-page .about-cta__contact {
  font-size: 15px;
  color: var(--black-50);
  text-decoration: none;
  font-weight: 500;
  border-bottom: 1px solid var(--black-10);
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.about-page .about-cta__contact:hover {
  color: var(--black-100);
  border-color: var(--black-100);
  text-decoration: none;
}

.glossaire-page .glossaire-hero {
  background-color: var(--yellow);
  padding: 64px 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .glossaire-page .glossaire-hero {
    padding: 96px 24px;
  }
}
.glossaire-page .glossaire-hero__label {
  display: inline-block;
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding: 6px 10px;
  background-color: var(--yellow-80);
}
.glossaire-page .glossaire-hero__title {
  color: var(--white);
  font-size: clamp(24px, 4.5vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}
.glossaire-page .glossaire-hero__subtitle {
  color: var(--white);
  font-size: 16px;
  font-weight: 300;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}
.glossaire-page .glossaire-nav {
  position: sticky;
  top: 0;
  z-index: 10;
  background-color: var(--white);
  border-bottom: 1px solid var(--black-10);
  padding: 12px 24px;
}
.glossaire-page .glossaire-nav__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  justify-content: center;
}
.glossaire-page .glossaire-nav__letter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.glossaire-page .glossaire-nav__letter--active {
  color: var(--black-100);
  border: 1px solid var(--black-10);
}
.glossaire-page .glossaire-nav__letter--active:hover {
  background-color: var(--yellow);
  border-color: var(--yellow);
  color: var(--white);
}
.glossaire-page .glossaire-nav__letter--disabled {
  color: var(--black-10);
  cursor: default;
  pointer-events: none;
}
.glossaire-page .glossaire-content {
  padding: 64px 24px;
  background-color: var(--bg);
}
@media screen and (min-width: 768px) {
  .glossaire-page .glossaire-content {
    padding: 80px 24px;
  }
}
.glossaire-page .glossaire-content__container {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.glossaire-page .glossaire-group {
  scroll-margin-top: 72px;
}
.glossaire-page .glossaire-group__letter {
  font-size: 28px;
  font-weight: 700;
  color: var(--yellow);
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 8px;
  margin-bottom: 24px;
}
.glossaire-page .glossaire-group__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.glossaire-page .glossaire-term {
  padding: 24px 0;
  border-bottom: 1px solid var(--black-10);
}
.glossaire-page .glossaire-term:last-child {
  border-bottom: none;
}
.glossaire-page .glossaire-term__name {
  font-size: 17px;
  font-weight: 600;
  color: var(--black-100);
  margin-bottom: 8px;
}
.glossaire-page .glossaire-term__def {
  font-size: 15px;
  color: var(--grey);
  line-height: 1.7;
  max-width: 680px;
}
.glossaire-page .glossaire-term__def strong {
  color: var(--black-100);
  font-weight: 600;
}
.glossaire-page .glossaire-term__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--yellow);
  text-decoration: none;
  transition: gap 0.15s ease;
}
.glossaire-page .glossaire-term__link:hover {
  gap: 10px;
}
.glossaire-page .glossaire-cta {
  background-color: var(--black-100);
  padding: 64px 24px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .glossaire-page .glossaire-cta {
    padding: 80px 24px;
  }
}
.glossaire-page .glossaire-cta__title {
  font-size: clamp(20px, 3.5vw, 30px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.glossaire-page .glossaire-cta__desc {
  font-size: 16px;
  color: var(--white-50);
  margin-bottom: 32px;
  line-height: 1.6;
}
.glossaire-page .glossaire-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
}
.glossaire-page .glossaire-cta__contact {
  font-size: 14px;
  font-weight: 500;
  color: var(--white-50);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.15s ease;
}
.glossaire-page .glossaire-cta__contact:hover {
  color: var(--white);
}

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