:root {
      --blue-900: #003ca8;
      --blue-800: #0b47b8;
      --blue-700: #1a57ca;
      --blue-200: #d7e5ff;
      --blue-100: #eef4ff;
      --text: #0f1830;
      --muted: #5c6a85;
      --white: #ffffff;
      --line: #d5e0f7;
      --shadow: 0 8px 24px rgba(11, 71, 184, 0.12);
      --radius: 16px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: "Segoe UI", "Helvetica Neue", sans-serif;
      color: var(--text);
      background: linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
      line-height: 1.4;
    }

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

    .container {
      width: min(1200px, 92%);
      margin-inline: auto;
    }

    .top-header {
      background: var(--white);
      position: static;
      z-index: 20;
      border-bottom: 1px solid #e9efff;
    }

    .top-header .container {
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      column-gap: 1.2rem;
      min-height: 86px;
      padding: 0.9rem 0;
    }

    .brand {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      min-width: 0;
    }

    .brand-logo {
      display: block;
      width: 78px;
      max-width: 78px;
      height: auto;
    }

    .nav-toggle {
      display: none;
      border: 0;
      background: var(--blue-900);
      color: var(--white);
      width: 40px;
      height: 40px;
      border-radius: 10px;
      cursor: pointer;
      font-size: 1.2rem;
    }

    .main-nav ul {
      display: flex;
      align-items: center;
      justify-content: center;
      list-style: none;
      gap: 2rem;
      font-weight: 700;
      color: #1f2a44;
    }

    .main-nav {
      justify-self: center;
      width: 100%;
    }

    #topWitnessBtn {
      justify-self: end;
    }

    .main-nav a {
      padding: 0.3rem 0;
      position: relative;
      transition: color 0.2s;
    }

    .main-nav a:hover,
    .main-nav a.active {
      color: var(--blue-900);
    }

    .main-nav a.active::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.6rem;
      width: 100%;
      height: 3px;
      border-radius: 3px;
      background: var(--blue-900);
    }

    .btn {
      border: 0;
      border-radius: 12px;
      background: linear-gradient(145deg, var(--blue-700), var(--blue-900));
      color: var(--white);
      padding: 0.9rem 1.3rem;
      font-weight: 800;
      cursor: pointer;
      transition: transform 0.2s, filter 0.2s;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .btn:hover {
      transform: translateY(-1px);
      filter: brightness(1.05);
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 3.2rem 0 2.8rem;
      min-height: clamp(500px, 58vh, 680px);
      background: #f3f7ff;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    .hero-bg img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(241, 246, 255, 0.78) 100%);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      text-align: center;
    }

    .hero h1 {
      color: var(--blue-900);
      font-size: clamp(1.9rem, 2.4vw + 1rem, 3.1rem);
      font-weight: 900;
      text-transform: uppercase;
      margin-bottom: 0.8rem;
    }

    .countdown {
      display: grid;
      grid-template-columns: repeat(4, minmax(150px, 1fr));
      gap: 1.2rem;
      margin: 1.6rem auto 1.2rem;
      max-width: 1160px;
    }

    .counter-box {
      background: var(--white);
      border: 2px solid #d6e2fb;
      border-radius: var(--radius);
      padding: 1.25rem 1rem 0.95rem;
      box-shadow: 0 5px 14px rgba(36, 80, 175, 0.08);
    }

    .counter-value {
      font-size: clamp(3.5rem, 5.8vw, 7.2rem);
      line-height: 0.9;
      font-weight: 900;
      color: var(--blue-700);
      letter-spacing: 2px;
      font-variant-numeric: tabular-nums;
    }

    .counter-label {
      margin-top: 0.65rem;
      font-size: clamp(1.15rem, 1.25vw, 1.9rem);
      font-weight: 900;
      color: var(--blue-900);
      text-transform: uppercase;
    }

    .countdown-note {
      font-size: clamp(1.15rem, 1.05vw + 0.85rem, 1.6rem);
      color: #1f2b46;
      margin-top: 0.85rem;
    }

    .impact {
      background: linear-gradient(135deg, #0444b9 0%, #00349a 100%);
      color: var(--white);
      padding: 1.8rem 0;
    }

    .impact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1rem;
      align-items: stretch;
    }

    .impact-card {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1rem;
      padding: 0.5rem 1rem;
      border-right: 1px solid rgba(255, 255, 255, 0.35);
    }

    .impact-card:last-child {
      border-right: 0;
    }

    .impact-icon {
      width: 86px;
      height: 86px;
      border-radius: 999px;
      border: 3px solid rgba(255, 255, 255, 0.85);
      display: grid;
      place-items: center;
      font-size: 2rem;
      font-weight: 800;
    }

    .impact-value {
      font-size: clamp(2.2rem, 3.4vw, 4rem);
      font-weight: 900;
      line-height: 0.9;
    }

    .impact-title {
      text-transform: uppercase;
      font-weight: 900;
      margin-top: 0.3rem;
      font-size: 1.1rem;
    }

    .impact-text {
      margin-top: 0.35rem;
      font-size: 1.02rem;
      color: #ffffff;
      opacity: 0.95;
    }

    .details {
      background: #ffffff;
      padding: 1.8rem 0;
    }

    .details-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.8rem;
      align-items: start;
    }

    .col {
      padding-right: 0;
      border-right: 0;
    }

    .full-row {
      grid-column: 1 / -1;
      padding-bottom: 1.2rem;
    }

    h2,
    h3 {
      color: var(--blue-900);
      text-transform: uppercase;
      font-weight: 900;
      margin-bottom: 0.8rem;
      line-height: 1.1;
    }

    h2 {
      font-size: clamp(1.3rem, 1.7vw, 2rem);
    }

    h3 {
      font-size: clamp(1.2rem, 1.4vw, 1.65rem);
    }

    p {
      font-size: 1.05rem;
      margin-bottom: 0.8rem;
      color: #1d2946;
    }

    .peq-orphans-container p {
      text-align: justify;
      line-height: 1.65;
      margin-bottom: 0.95rem;
    }

    .peq-orphans-container > ul {
      margin: 0.8rem 0 1.05rem;
      padding: 0 1rem 0 1.4rem;
      list-style-position: outside;
    }

    .peq-orphans-container > ul li {
      padding-right: 0.6rem;
      margin-bottom: 0.35rem;
      line-height: 1.55;
      word-break: normal;
      overflow-wrap: anywhere;
    }

    .peq-orphans-container .strong-line {
      color: var(--blue-900);
      font-weight: 900;
      font-size: 1.12rem;
      text-transform: uppercase;
    }

    .peq-orphans-container .identity-list,
    .peq-orphans-container .call-to-action {
      color: var(--blue-900);
      font-weight: 800;
      font-size: 1.1rem;
    }

    .peq-orphans-container .identity-list {
      list-style: none;
      margin: 1.4rem 0 1.3rem;
      padding: 0.9rem;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
      border: 1px solid #cdddfb;
      border-radius: 16px;
      background:
        radial-gradient(circle at 12% 8%, rgba(31, 99, 231, 0.14), transparent 48%),
        linear-gradient(180deg, #fafdff 0%, #f1f6ff 100%);
      box-shadow: 0 10px 24px rgba(18, 67, 164, 0.1);
    }

    .peq-orphans-container .identity-list li {
      margin: 0;
      display: flex;
      align-items: center;
      gap: 0.58rem;
      padding: 0.68rem 0.78rem;
      border: 1px solid #d9e6ff;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.88);
      color: #0c3b95;
      line-height: 1.28;
      font-size: 1.22rem;
      font-weight: 900;
      letter-spacing: 0.1px;
      animation: identityRise 0.6s ease both;
    }

    .peq-orphans-container .identity-list li::before {
      content: "•";
      width: 1.65rem;
      height: 1.65rem;
      display: inline-grid;
      place-items: center;
      border-radius: 999px;
      background: linear-gradient(145deg, #1f5fd2, #0b43ad);
      color: #ffffff;
      font-size: 0.95rem;
      font-weight: 900;
      flex: 0 0 auto;
      box-shadow: 0 4px 10px rgba(11, 67, 173, 0.28);
    }

    .peq-orphans-container .identity-list li:nth-child(1)::before { content: "♥"; }
    .peq-orphans-container .identity-list li:nth-child(2)::before { content: "⚒"; }
    .peq-orphans-container .identity-list li:nth-child(3)::before { content: "⌂"; }
    .peq-orphans-container .identity-list li:nth-child(4)::before { content: "✦"; }
    .peq-orphans-container .identity-list li:nth-child(5)::before { content: "∞"; }
    .peq-orphans-container .identity-list li:nth-child(6)::before { content: "◎"; }

    .peq-orphans-container .identity-list li:nth-child(1) { animation-delay: 0.02s; }
    .peq-orphans-container .identity-list li:nth-child(2) { animation-delay: 0.1s; }
    .peq-orphans-container .identity-list li:nth-child(3) { animation-delay: 0.18s; }
    .peq-orphans-container .identity-list li:nth-child(4) { animation-delay: 0.26s; }
    .peq-orphans-container .identity-list li:nth-child(5) { animation-delay: 0.34s; }
    .peq-orphans-container .identity-list li:nth-child(6) { animation-delay: 0.42s; }

    @keyframes identityRise {
      from {
        opacity: 0;
        transform: translateY(10px) scale(0.985);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .peq-orphans-container .identity-list li,
      .peq-orphans-container .call-to-action .cta-line,
      .peq-orphans-container .final-line {
        animation: none;
      }

      .peq-orphans-container .call-to-action::before {
        animation: none;
      }
    }

    .peq-orphans-container .call-to-action {
      margin: 1.35rem 0 1.05rem;
      padding: 0.9rem 1rem;
      border: 1px solid #d2dff8;
      border-radius: 14px;
      background:
        radial-gradient(circle at 9% 18%, rgba(76, 145, 255, 0.12), transparent 42%),
        linear-gradient(180deg, #fafdff 0%, #edf4ff 100%);
      box-shadow: 0 8px 18px rgba(16, 56, 136, 0.1);
      position: relative;
      overflow: hidden;
    }

    .peq-orphans-container .call-to-action::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.32) 36%, transparent 54%);
      transform: translateX(-120%);
      animation: ctaShine 8s ease-in-out infinite;
      pointer-events: none;
    }

    .peq-orphans-container .call-to-action .cta-line {
      display: block;
      color: #0f3f9e;
      font-size: clamp(1.08rem, 1.05vw, 1.35rem);
      line-height: 1.26;
      font-weight: 800;
      letter-spacing: 0.1px;
      text-wrap: balance;
      text-shadow: none;
      animation: ctaRise 0.5s ease both;
      position: relative;
      z-index: 1;
    }

    .peq-orphans-container .call-to-action .cta-line + .cta-line {
      margin-top: 0.42rem;
    }

    .peq-orphans-container .call-to-action .cta-line:nth-child(1) { animation-delay: 0.04s; }
    .peq-orphans-container .call-to-action .cta-line:nth-child(2) { animation-delay: 0.16s; }
    .peq-orphans-container .call-to-action .cta-line:nth-child(3) { animation-delay: 0.28s; }

    .peq-orphans-container .final-line {
      margin-top: 0.95rem;
      padding: 0.85rem 1rem;
      border-left: 4px solid #7ea9ef;
      border-radius: 0 12px 12px 0;
      background: linear-gradient(90deg, rgba(126, 169, 239, 0.16), rgba(255, 255, 255, 0.9));
      color: #0f2e67;
      font-weight: 800;
      font-size: clamp(1.02rem, 1vw, 1.2rem);
      line-height: 1.45;
      box-shadow: 0 6px 14px rgba(16, 56, 136, 0.09);
      animation: finalLinePulse 5s ease-in-out infinite;
    }

    @keyframes ctaRise {
      from {
        opacity: 0;
        transform: translateY(8px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes ctaShine {
      0%,
      78% {
        transform: translateX(-120%);
      }
      100% {
        transform: translateX(120%);
      }
    }

    @keyframes finalLinePulse {
      0%,
      100% {
        box-shadow: 0 6px 14px rgba(16, 56, 136, 0.09);
        transform: translateX(0);
      }
      50% {
        box-shadow: 0 8px 16px rgba(16, 56, 136, 0.12);
        transform: translateX(1px);
      }
    }

    .cards-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
      margin-top: 0.9rem;
    }

    .mini-card {
      border: 1px solid #d7e2fb;
      border-radius: 12px;
      overflow: hidden;
      background: #fbfdff;
      box-shadow: 0 4px 10px rgba(30, 71, 159, 0.08);
    }

    .measure-content {
      padding: 1rem 1rem 0.9rem;
      background: #ffffff;
      border-top: 1px solid #e3ecff;
    }

    .measure-title {
      margin: 0 0 0.6rem 0;
      color: var(--blue-900);
      font-weight: 700;
      font-size: 1.12rem;
      line-height: 1.35;
      text-align: justify;
    }

    .measure-points {
      margin: 0;
      padding-left: 1.1rem;
      color: #000000;
    }

    .measure-points li {
      margin-bottom: 0.45rem;
      font-size: 1.08rem;
      line-height: 1.55;
      text-align: justify;
    }

    .measure-points li:last-child {
      margin-bottom: 0;
    }

    .measure-content p {
      color: #000000;
      font-size: 1.08rem;
      line-height: 1.6;
      text-align: justify;
    }

    .social-links-section {
      float: none !important;
      position: relative;
      left: 0;
      right: 0;
      width: min(1200px, 92%);
      margin-left: auto !important;
      margin-right: auto !important;
      clear: both;
      margin-top: 1.1rem;
      margin-bottom: 1.2rem;
    }

    .fiasco-section {
      float: none !important;
      position: relative;
      left: 0;
      right: 0;
      width: min(1200px, 92%);
      margin-left: auto !important;
      margin-right: auto !important;
      clear: both;
      margin-top: 1rem;
      margin-bottom: 1.25rem;
    }

    .details-grid {
      float: none !important;
      position: relative;
      left: 0;
      right: 0;
      width: min(1200px, 92%);
      margin-left: auto !important;
      margin-right: auto !important;
      clear: both;
      margin-top: 1.1rem;
    }

    .fiasco-head h3 {
      margin: 0 0 0.8rem;
      font-size: clamp(1.7rem, 1.7vw + 1rem, 2.5rem);
      color: var(--blue-900);
      text-transform: none;
      letter-spacing: 0;
      line-height: 1.1;
    }

    .fiasco-links-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.9rem;
    }

    .fiasco-link-card {
      width: 100%;
      min-height: 72px;
      font-size: 1.1rem;
      line-height: 1.35;
    }

    .fiasco-empty {
      margin: 0.55rem 0 0;
      color: #1a3668;
      font-size: 1rem;
    }

    .actualites-section {
      margin-bottom: 1.15rem;
    }

    .actualites-head {
      margin-bottom: 0.8rem;
    }

    .actualites-head h3 {
      margin: 0 0 0.35rem;
      font-size: clamp(1.7rem, 1.7vw + 1rem, 2.5rem);
      line-height: 1.1;
      color: var(--blue-900);
      text-transform: none;
      letter-spacing: 0;
    }

    .actualites-head p {
      margin: 0;
      color: #1a3668;
      font-size: 1.02rem;
      line-height: 1.45;
      max-width: 72ch;
    }

    .actualites-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1.25rem;
    }

    .actualite-card {
      display: grid;
      grid-template-rows: auto auto auto;
      border: 1px solid #d7e4ff;
      border-radius: 14px;
      box-shadow: 0 4px 10px rgba(30, 71, 159, 0.08);
      overflow: hidden;
      background: #ffffff;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .actualite-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(16, 56, 136, 0.14);
      border-color: #b7cff8;
    }

    .actualite-date {
      margin: 0;
      font-size: 0.88rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      color: var(--blue-700);
      padding: 0.7rem 1rem 0.95rem;
    }

    .actualite-card h4 {
      margin: 0;
      color: #0c357f;
      font-size: 1.32rem;
      line-height: 1.25;
      text-wrap: pretty;
      padding: 0.95rem 1rem 0.78rem;
    }

    .actualite-media {
      display: block;
      width: 100%;
      overflow: hidden;
      border-top: 1px solid #e3ecff;
      border-bottom: 1px solid #e3ecff;
      background: #ffffff;
    }

    .actualite-media-image img {
      display: block;
      width: 100%;
      aspect-ratio: 4 / 3;
      border: 0;
      object-fit: contain;
      background: #ffffff;
    }

    .actualite-media-video {
      display: grid;
      place-items: center;
      padding: 0.85rem;
      background: #f8fbff;
    }

    .actualite-media-video iframe {
      width: min(420px, 100%);
      aspect-ratio: 9 / 16;
      border: 0;
      border-radius: 12px;
      background: #000000;
      box-shadow: 0 6px 16px rgba(16, 56, 136, 0.16);
      pointer-events: none;
    }

    .actualite-media-image {
      transition: filter 0.2s ease;
    }

    .actualite-media-image:hover {
      filter: brightness(0.98);
    }

    .social-links-head h3 {
      margin: 0 0 0.8rem;
      font-size: clamp(1.7rem, 1.7vw + 1rem, 2.5rem);
      line-height: 1.1;
      color: var(--blue-900);
      text-transform: none;
      letter-spacing: 0;
    }

    .social-links-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 0.9rem;
    }

    .social-link-card {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.8rem 0.95rem;
      border: 1px solid #cfe0ff;
      border-radius: 14px;
      background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
      box-shadow: 0 8px 22px rgba(18, 60, 145, 0.1);
      text-decoration: none;
      color: #0f3d97;
      font-weight: 800;
      font-size: 1.07rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .social-link-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 26px rgba(16, 56, 136, 0.14);
      border-color: #b7cff8;
    }

    .social-link-card img {
      width: 52px;
      height: 52px;
      object-fit: cover;
      border-radius: 999px;
      border: 1px solid #d8e6ff;
      background: #ffffff;
      flex: 0 0 auto;
    }

    .petitions-band {
      margin-top: 1.1rem;
      padding: 0.9rem 0 0.35rem;
    }

    .petitions-band.story-chapter {
      border-top: 0;
      padding-top: 0.9rem;
    }

    .petitions-head {
      margin-bottom: 1rem;
    }

    .petitions-head h3 {
      margin: 0 0 0.3rem;
      font-size: clamp(1.35rem, 1.1vw + 0.95rem, 1.9rem);
      color: var(--blue-900);
      letter-spacing: 0;
      text-transform: none;
    }

    .petitions-head p {
      margin: 0;
      color: #1a3668;
      font-size: 1.03rem;
      line-height: 1.45;
      max-width: 66ch;
    }

    .petitions-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 1rem;
    }

    .petition-card {
      display: block;
      text-decoration: none;
      border: 1px solid #cfe0ff;
      border-radius: 16px;
      background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
      box-shadow: 0 8px 24px rgba(17, 62, 149, 0.1);
      padding: 1rem 1.1rem 1.05rem;
      transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
    }

    .petition-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(16, 56, 136, 0.14);
      border-color: #b7cff8;
    }

    .petition-label {
      margin: 0 0 0.35rem;
      font-size: 0.88rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      color: #2559bf;
    }

    .petition-card h4 {
      margin: 0;
      color: #0c357f;
      font-size: 1.14rem;
      line-height: 1.35;
      text-wrap: pretty;
    }

    .petition-date {
      margin: 0.7rem 0 0;
      color: #113b8b;
      font-size: 0.98rem;
      font-weight: 700;
    }

    #temoignages {
      margin-top: 2.2rem;
      padding-top: 0.8rem;
    }

    #temoignages h3 {
      max-width: 980px;
      font-size: clamp(1.35rem, 1.25vw + 0.9rem, 2rem);
      line-height: 1.25;
      letter-spacing: 0;
      margin-bottom: 1.15rem;
      text-transform: none;
    }

    #temoignages .cards-grid {
      margin-top: 0;
      gap: 1.4rem;
      grid-template-columns: 1fr;
    }

    #temoignages .mini-card {
      border: 1px solid #ceddf8;
      border-radius: 18px;
      box-shadow: 0 8px 22px rgba(18, 60, 145, 0.09);
      transition: transform 0.22s ease, box-shadow 0.22s ease;
      background: #ffffff;
    }

    #temoignages .mini-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(16, 56, 136, 0.13);
    }

    #temoignages .measure-content {
      padding: 1rem 1.05rem 1.1rem;
      background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
      border-top: 1px solid #dee8fc;
    }

    #temoignages .measure-title {
      margin: 0 0 0.5rem 0;
      font-size: 1.3rem;
      line-height: 1.35;
    }

    #temoignages .measure-toggle {
      width: 100%;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: start;
      gap: 0.9rem;
      border: 0;
      border-left: 4px solid #2f6bdf;
      background: transparent;
      color: #0d3f9e;
      text-align: left;
      font: inherit;
      font-weight: 800;
      line-height: 1.35;
      padding: 0.12rem 0 0.12rem 0.62rem;
      cursor: pointer;
    }

    #temoignages .measure-toggle:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(43, 98, 214, 0.2);
      border-radius: 8px;
    }

    #temoignages .measure-toggle:disabled {
      cursor: default;
    }

    #temoignages .measure-toggle-label {
      display: block;
      max-width: 62ch;
      line-height: 1.32;
      overflow: hidden;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      text-overflow: ellipsis;
    }

    #temoignages .measure-toggle-meta {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      color: #245bc6;
      font-weight: 700;
      font-size: 0.9rem;
      white-space: nowrap;
      margin-top: 0.15rem;
    }

    #temoignages .measure-toggle-hint {
      opacity: 0.92;
    }

    #temoignages .measure-toggle-icon {
      flex: 0 0 auto;
      font-size: 1.08rem;
      color: #245bc6;
      transition: transform 0.2s ease;
    }

    #temoignages .mini-card.is-open .measure-toggle-icon {
      transform: rotate(180deg);
    }

    #temoignages .mini-card.is-open .measure-toggle-label {
      overflow: visible;
      display: block;
      -webkit-line-clamp: unset;
      line-clamp: unset;
      text-overflow: clip;
    }

    #temoignages .measure-body {
      margin-top: 0.7rem;
      padding: 0.95rem 1.05rem 1rem;
      border: 1px solid #dbe7fb;
      border-radius: 12px;
      background: #f8fbff;
    }

    #temoignages .measure-body > *:first-child {
      margin-top: 0;
    }

    #temoignages .measure-body > *:last-child {
      margin-bottom: 0;
    }

    #temoignages .measure-points {
      margin: 0 0 0.75rem;
      padding-left: 1.15rem;
      color: #172846;
      text-wrap: pretty;
    }

    #temoignages .measure-points li {
      margin-bottom: 0.35rem;
      font-size: 1.02rem;
      line-height: 1.6;
      text-align: left;
      max-width: none;
    }

    #temoignages .measure-points li::marker {
      color: #245bc6;
    }

    #temoignages .measure-points li:last-child {
      margin-bottom: 0;
    }

    #temoignages .measure-content p {
      font-size: 1.03rem;
      line-height: 1.64;
      color: #1a2a49;
      text-align: left;
      max-width: none;
      margin: 0 0 0.78rem;
      text-wrap: pretty;
    }

    #temoignages .measure-content p + p {
      padding-top: 0.52rem;
      border-top: 1px dashed #d9e5fb;
    }

    #temoignages .measure-body li > p {
      margin: 0.32rem 0 0;
      max-width: none;
      text-align: left;
    }

    #temoignages .measure-body ul,
    #temoignages .measure-body ol {
      margin: 0 0 0.75rem;
      padding-left: 1.15rem;
    }

    .share-site-section {
      margin-top: 1.2rem;
      padding: 1.05rem 1.1rem 1.2rem;
      border: 1px solid #d2e1fb;
      border-radius: 16px;
      background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
      box-shadow: 0 8px 20px rgba(18, 67, 164, 0.08);
    }

    .share-site-head h3 {
      margin: 0 0 0.42rem;
      text-transform: none;
      letter-spacing: 0;
      color: var(--blue-900);
      font-size: clamp(1.25rem, 1vw + 0.95rem, 1.8rem);
    }

    .share-site-head p {
      margin: 0;
      color: #1a3668;
      max-width: 72ch;
      line-height: 1.5;
      font-size: 1rem;
    }

    .share-site-grid {
      margin-top: 0.9rem;
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 0.7rem;
    }

    .share-site-item {
      display: grid;
      justify-items: center;
      gap: 0.45rem;
    }

    .share-site-btn {
      display: inline-flex;
      justify-content: center;
      align-items: center;
      width: 64px;
      height: 64px;
      border-radius: 999px;
      border: 0;
      background: #1a57ca;
      color: #ffffff;
      font-weight: 800;
      text-decoration: none;
      text-align: center;
      transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
      box-shadow: 0 6px 14px rgba(17, 62, 149, 0.2);
      cursor: pointer;
    }

    .share-site-btn:hover {
      transform: translateY(-1px);
      filter: brightness(1.04);
      box-shadow: 0 10px 18px rgba(16, 56, 136, 0.24);
    }

    .share-site-btn svg {
      width: 30px;
      height: 30px;
      fill: currentColor;
    }

    .share-site-glyph {
      display: inline-block;
      color: #ffffff;
      font-size: 40px;
      line-height: 1;
      font-weight: 900;
      font-family: Arial, "Helvetica Neue", sans-serif;
      transform: translateY(1px);
    }

    .share-site-btn-facebook {
      background: #1877f2;
    }

    .share-site-btn-x {
      background: #111111;
    }

    .share-site-btn-linkedin {
      background: #0a66c2;
    }

    .share-site-btn-whatsapp {
      background: #25d366;
    }

    .share-site-btn-telegram {
      background: #2aabee;
    }

    .share-site-label {
      color: #1a3668;
      font-weight: 700;
      font-size: 0.92rem;
      text-align: center;
      line-height: 1.25;
    }

    .share-site-feedback {
      min-height: 1.25rem;
      margin: 0.75rem 0 0;
      font-size: 0.92rem;
      font-weight: 700;
      color: #1351b5;
      opacity: 0;
      transition: opacity 0.2s ease;
    }

    .share-site-feedback.show {
      opacity: 1;
    }

    .share-site-feedback.is-error {
      color: #8b1f1f;
    }

    .site-footer-solid {
      background: #0d4aa8;
      margin-top: 0;
    }

    .site-footer-share {
      padding: 1.1rem 0 0.4rem;
      background: #0d4aa8;
    }

    .site-footer-solid .share-site-section {
      margin-top: 0;
      margin-bottom: 0.6rem;
      border: 1px solid #d2e1fb;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(18, 67, 164, 0.08);
      background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
      padding: 1.05rem 1.1rem 1.2rem;
    }

    .site-footer-solid .share-site-head h3,
    .site-footer-solid .share-site-head p,
    .site-footer-solid .share-site-label,
    .site-footer-solid .share-site-feedback {
      color: #11386f;
    }

    .site-footer-solid .share-site-feedback.is-error {
      color: #8b1f1f;
    }

    .site-footer-quote {
      padding: 0.65rem 0 0.95rem;
      background: #0d4aa8;
    }

    .field-error {
      border-color: #c52121 !important;
      box-shadow: 0 0 0 2px rgba(197, 33, 33, 0.16) !important;
    }

    .site-footer {
      background: linear-gradient(160deg, #06214f 0%, #0a2f70 45%, #0d3e92 100%);
      color: #e9f1ff;
      margin-top: 1.8rem;
      border-top: 1px solid rgba(159, 188, 244, 0.25);
    }

    .site-footer .container {
      width: 100%;
      margin: 0;
      padding-inline: clamp(14px, 2.2vw, 34px);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1rem;
      padding: 2rem 0 1.4rem;
      align-items: start;
      max-width: none;
      margin-inline: 0;
    }

    .footer-block {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(183, 208, 255, 0.2);
      border-radius: 14px;
      padding: 1rem;
      backdrop-filter: blur(2px);
    }

    .footer-block h3 {
      color: #ffffff;
      text-transform: none;
      font-size: 1.15rem;
      margin-bottom: 0.7rem;
    }

    .footer-brand-block p {
      color: #dce9ff;
      font-size: 0.98rem;
      line-height: 1.55;
      margin-bottom: 0.75rem;
    }

    .footer-motto {
      color: #ffffff;
      font-weight: 800;
      font-size: 1rem;
      margin-bottom: 0;
    }

    .footer-contact-form {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      column-gap: 0.85rem;
      row-gap: 0.34rem;
      align-items: start;
    }

    .footer-contact-form label {
      font-size: 0.87rem;
      font-weight: 700;
      color: #d8e7ff;
    }

    .footer-contact-block {
      grid-column: 1 / -1;
      order: 4;
      width: 100%;
      margin-inline: auto;
    }

    .footer-contact-block .footer-contact-form label[for="footerContactName"] { grid-column: 1; grid-row: 1; }
    .footer-contact-block .footer-contact-form label[for="footerContactEmail"] { grid-column: 2; grid-row: 1; }
    .footer-contact-block .footer-contact-form label[for="footerContactSubject"] { grid-column: 3; grid-row: 1; }

    .footer-contact-block .footer-contact-form #footerContactName { grid-column: 1; grid-row: 2; }
    .footer-contact-block .footer-contact-form #footerContactEmail { grid-column: 2; grid-row: 2; }
    .footer-contact-block .footer-contact-form #footerContactSubject { grid-column: 3; grid-row: 2; }

    .footer-contact-block .footer-contact-form label[for="footerContactMessage"] { grid-column: 1 / -1; grid-row: 3; }
    .footer-contact-block .footer-contact-form #footerContactMessage { grid-column: 1 / -1; grid-row: 4; }

    .footer-contact-block .footer-contact-form .footer-checkline { grid-column: 1 / 3; grid-row: 5; }
    .footer-contact-block .footer-contact-form .footer-submit-btn { grid-column: 3; grid-row: 5; justify-self: end; margin-top: 0; }
    .footer-contact-block .footer-contact-form .footer-feedback { grid-column: 1 / -1; grid-row: 6; }

    .footer-contact-form input,
    .footer-contact-form select,
    .footer-contact-form textarea {
      width: 100%;
      border-radius: 10px;
      border: 1px solid rgba(167, 195, 243, 0.45);
      background: rgba(7, 35, 83, 0.56);
      color: #f3f8ff;
      padding: 0.62rem 0.72rem;
      font: inherit;
      transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
      align-self: start;
    }

    .footer-contact-form textarea {
      min-height: 64px;
      height: 64px;
      resize: vertical;
    }

    .footer-contact-form input::placeholder,
    .footer-contact-form textarea::placeholder {
      color: rgba(220, 234, 255, 0.78);
    }

    .footer-contact-form input:focus,
    .footer-contact-form select:focus,
    .footer-contact-form textarea:focus {
      outline: none;
      border-color: #b8d4ff;
      box-shadow: 0 0 0 3px rgba(148, 186, 248, 0.3);
      background: rgba(9, 42, 98, 0.72);
    }

    .footer-checkline,
    .cookie-line {
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: start;
      gap: 0.5rem;
      margin-top: 0.25rem;
      color: #d9e8ff;
      font-size: 0.86rem;
      line-height: 1.4;
    }

    .footer-checkline input[type="checkbox"],
    .cookie-line input[type="checkbox"] {
      width: 16px;
      height: 16px;
      margin-top: 0.06rem;
      accent-color: #83b1ff;
    }

    .footer-submit-btn {
      margin-top: 0.15rem;
      padding: 0.7rem 0.95rem;
      font-size: 0.98rem;
      width: auto;
      justify-self: start;
    }

    .footer-feedback {
      min-height: 1.1rem;
      margin: 0.15rem 0 0;
      color: #cfe2ff;
      font-size: 0.86rem;
      font-weight: 700;
    }

    .footer-feedback.is-error {
      color: #ffd6d6;
    }

    .footer-feedback.is-success {
      color: #c2ffd8;
    }

    .footer-links-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: grid;
      gap: 0.45rem;
    }

    .footer-links-list a {
      display: inline-block;
      color: #e6f0ff;
      font-weight: 700;
      font-size: 0.95rem;
      transition: transform 0.18s, color 0.18s;
    }

    .footer-links-list a:hover {
      color: #ffffff;
      transform: translateX(2px);
    }

    .legal-links-list {
      margin-bottom: 0.55rem;
    }

    .footer-text-btn {
      border: 0;
      background: transparent;
      color: #c8ddff;
      font-weight: 800;
      font-size: 0.88rem;
      cursor: pointer;
      padding: 0;
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .footer-text-btn:hover {
      color: #ffffff;
    }

    .cookie-prefs-panel {
      border: 1px solid rgba(179, 207, 255, 0.34);
      border-radius: 14px;
      background: rgba(6, 31, 76, 0.65);
      padding: 0.95rem 1rem 1rem;
      margin-bottom: 1rem;
    }

    .cookie-prefs-panel h4 {
      margin-bottom: 0.6rem;
      color: #ffffff;
      font-size: 1rem;
    }

    .cookie-actions {
      margin-top: 0.55rem;
    }

    .cookie-banner {
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 9000;
      background: rgba(5, 26, 63, 0.96);
      border-top: 1px solid rgba(179, 207, 255, 0.38);
      box-shadow: 0 -12px 30px rgba(3, 16, 40, 0.35);
      backdrop-filter: blur(4px);
    }

    .cookie-banner-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.95rem 0;
    }

    .cookie-banner p {
      margin: 0;
      color: #e7f0ff;
      font-size: 0.95rem;
      line-height: 1.45;
      max-width: 760px;
    }

    .cookie-banner-actions {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      flex-wrap: wrap;
      justify-content: flex-end;
    }

    .cookie-banner-btn {
      min-height: 42px;
      padding: 0.7rem 1rem;
      font-size: 0.9rem;
    }

    .cookie-banner-btn-secondary {
      background: #ffffff;
      color: #0b47b8;
    }

    .cookie-banner-btn-secondary:hover {
      filter: brightness(0.98);
    }

    .cookie-banner-link {
      color: #cfe2ff;
      font-weight: 800;
      font-size: 0.9rem;
      text-decoration: underline;
      text-underline-offset: 2px;
      white-space: nowrap;
    }

    .cookie-banner-link:hover {
      color: #ffffff;
    }

    body.cookie-banner-visible {
      padding-bottom: 108px;
    }

    .footer-bottom {
      border-top: 1px solid rgba(179, 207, 255, 0.28);
      background: rgba(4, 22, 53, 0.45);
      padding: 0.78rem 0;
    }

    .footer-bottom-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    .footer-bottom-inner p {
      margin: 0;
      color: #d2e3ff;
      font-size: 0.9rem;
    }

    .legal-page-main {
      background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 100%);
      min-height: 70vh;
    }

    .legal-hero {
      background: linear-gradient(160deg, #0a3e9d 0%, #0f57c7 60%, #2a73df 100%);
      color: #ffffff;
      padding: 2.1rem 0 1.85rem;
    }

    .legal-hero-inner h1 {
      margin: 0 0 0.6rem 0;
      color: #ffffff;
      text-transform: none;
      font-size: clamp(1.65rem, 2vw + 0.9rem, 2.6rem);
      line-height: 1.15;
    }

    .legal-hero-inner p {
      margin: 0;
      color: #e8f2ff;
      max-width: 900px;
      line-height: 1.55;
    }

    .legal-updated {
      margin-top: 0.55rem !important;
      font-size: 0.95rem;
      opacity: 0.96;
      font-weight: 700;
    }

    .legal-sections {
      padding: 1.55rem 0 2rem;
    }

    .legal-grid {
      display: grid;
      grid-template-columns: 280px minmax(0, 1fr);
      gap: 1rem;
      align-items: start;
    }

    .legal-single-column {
      grid-template-columns: minmax(0, 1fr);
    }

    .legal-single-column .legal-content {
      max-width: 980px;
      margin-inline: auto;
      width: 100%;
    }

    .legal-content {
      display: grid;
      gap: 0.9rem;
    }

    .legal-card {
      background: #ffffff;
      border: 1px solid #d2e1fb;
      border-radius: 14px;
      padding: 1.05rem 1.1rem;
      box-shadow: 0 10px 24px rgba(18, 67, 164, 0.09);
    }

    .legal-card h2 {
      margin-bottom: 0.62rem;
      text-transform: none;
      font-size: 1.26rem;
      line-height: 1.25;
    }

    .legal-card p,
    .legal-card li {
      color: #1a2c4d;
      font-size: 1rem;
      line-height: 1.62;
    }

    .legal-card ul {
      margin: 0.42rem 0 0 1.15rem;
    }

    .legal-card ul li {
      margin-bottom: 0.38rem;
    }

    .cookie-settings-form {
      margin-top: 0.5rem;
      display: grid;
      gap: 0.25rem;
    }

    .cookie-settings-form .cookie-line {
      color: #10397e;
      font-size: 0.95rem;
      background: #f2f7ff;
      border: 1px solid #d4e3ff;
      border-radius: 10px;
      padding: 0.62rem 0.65rem;
    }

    .cookie-settings-form .footer-feedback {
      color: #2458b8;
    }

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

    @media (max-width: 1050px) {
      .main-nav ul {
        gap: 1.1rem;
      }

      .countdown-note {
        font-size: 1.1rem;
      }

      .details-grid {
        grid-template-columns: 1fr;
        gap: 1.3rem;
      }

      .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
      }

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

      .col {
        border-right: 0;
        padding-right: 0;
      }

      .full-row {
        grid-column: auto;
      }

      #temoignages h3 {
        margin-bottom: 1.2rem;
      }

      #temoignages .cards-grid {
        grid-template-columns: 1fr;
      }

      #temoignages .measure-content {
        padding: 0.95rem 0.9rem 1rem;
      }

      #temoignages .measure-body {
        padding: 0.85rem 0.85rem 0.9rem;
      }

      #temoignages .measure-toggle-label {
        -webkit-line-clamp: 3;
        line-clamp: 3;
      }

      .share-site-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .social-links-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

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

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

    @media (max-width: 900px) {
      .hero {
        min-height: auto;
        padding: 2.2rem 0 2rem;
      }

      .hero-bg {
        display: none;
      }

      .top-header .container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        column-gap: 0.45rem;
        row-gap: 0.7rem;
        padding: 0.85rem 0 0.95rem;
        min-height: auto;
      }

      .brand {
        position: static;
        transform: none;
        width: 100%;
        min-width: 0;
        justify-content: center;
        grid-column: 1 / -1;
        order: 1;
      }

      .brand-logo {
        width: min(280px, 78vw);
      }

      .nav-toggle {
        display: inline-grid;
        place-items: center;
        order: 2;
      }

      .main-nav {
        order: 4;
        flex: 0 0 100%;
        width: min(520px, 92vw);
        margin-inline: auto;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transform: translateY(-8px);
        transition: max-height 0.28s ease, opacity 0.2s ease, transform 0.24s ease;
        pointer-events: none;
      }

      .main-nav.open {
        max-height: 460px;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }
      #topWitnessBtn {
        position: static;
        transform: none;
        order: 3;
        min-height: 40px;
        padding: 0.7rem 0.9rem;
        margin: 0;
      }

      .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0.35rem;
        padding: 0.7rem;
        border: 1px solid #d5e2fb;
        border-radius: 14px;
        background: #ffffff;
        box-shadow: 0 10px 24px rgba(14, 55, 133, 0.14);
      }

      .main-nav li {
        width: 100%;
      }

      .main-nav a {
        display: block;
        width: 100%;
        padding: 0.65rem 0.75rem;
        border-radius: 10px;
        font-weight: 800;
      }

      .main-nav a:hover {
        background: #f2f7ff;
      }

      .main-nav a.active::after {
        display: none;
      }

      .main-nav a.active {
        background: #e7f0ff;
      }

      .countdown {
        grid-template-columns: repeat(2, 1fr);
      }

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

      .impact-card {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding-bottom: 1rem;
      }

      .impact-card:last-child {
        border-bottom: 0;
      }

      #temoignages {
        margin-top: 1.6rem;
      }

      #temoignages .measure-title {
        font-size: 1.15rem;
      }

      .social-links-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
        max-width: 100%;
      }

      .share-site-section {
        padding: 0.95rem 0.9rem 1rem;
      }

      .share-site-grid {
        grid-template-columns: 1fr;
      }

      .legal-card {
        padding: 0.9rem;
      }

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

      .footer-contact-block .footer-contact-form label[for="footerContactName"],
      .footer-contact-block .footer-contact-form #footerContactName,
      .footer-contact-block .footer-contact-form label[for="footerContactEmail"],
      .footer-contact-block .footer-contact-form #footerContactEmail,
      .footer-contact-block .footer-contact-form label[for="footerContactSubject"],
      .footer-contact-block .footer-contact-form #footerContactSubject,
      .footer-contact-block .footer-contact-form label[for="footerContactMessage"],
      .footer-contact-block .footer-contact-form #footerContactMessage {
        grid-column: 1;
      }

      .footer-contact-block .footer-contact-form > * {
        grid-row: auto !important;
      }

      .footer-block {
        padding: 0.9rem;
      }

      .footer-submit-btn {
        width: 100%;
        justify-content: center;
      }

      .peq-orphans-container .identity-list {
        grid-template-columns: 1fr;
        gap: 0.6rem;
        padding: 0.75rem;
      }

      .peq-orphans-container > ul {
        padding-left: 1.15rem;
        padding-right: 0.65rem;
      }

      .peq-orphans-container > ul li {
        padding-right: 0.25rem;
      }

      .peq-orphans-container .identity-list li {
        font-size: 1.08rem;
        padding: 0.6rem 0.7rem;
      }

      .peq-orphans-container .call-to-action {
        padding: 0.85rem 0.85rem 0.9rem;
      }

      .peq-orphans-container .call-to-action .cta-line {
        font-size: 1.06rem;
      }

      .peq-orphans-container .final-line {
        padding: 0.75rem 0.85rem;
      }

    }

    @media (max-width: 560px) {
      .brand-logo {
        width: min(240px, 100%);
      }

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

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

      .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
      }

      .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;
      }

      .cookie-banner-actions {
        width: 100%;
        justify-content: flex-start;
      }

      body.cookie-banner-visible {
        padding-bottom: 186px;
      }
    }

/* Actions Timeline */
.actions-wrap {
  padding: 2.4rem 0 3rem;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
}

.actions-head {
  text-align: center;
  margin-bottom: 2rem;
}

.actions-head h2 {
  color: var(--blue-900);
  font-size: clamp(1.7rem, 2.1vw + 0.9rem, 2.7rem);
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 0.6rem;
}

.actions-head p {
  color: #1e2b48;
  font-size: 1.1rem;
  max-width: 820px;
  margin: 0 auto;
}

.timeline {
  position: relative;
  display: grid;
  gap: 1.3rem;
}

.actions-load-more-wrap {
  display: grid;
  justify-items: center;
  margin-top: 1.1rem;
  gap: 0.55rem;
}

.actions-load-more-btn {
  min-width: 180px;
}

#actionsLoadTrigger {
  width: 100%;
  height: 1px;
}

.supports-load-more-wrap {
  width: 100%;
  height: 1px;
}

#supportsLoadTrigger {
  width: 100%;
  height: 1px;
}

.temoins-load-more-wrap {
  width: 100%;
  height: 1px;
}

#temoinsLoadTrigger {
  width: 100%;
  height: 1px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.3rem;
  align-items: stretch;
}

.timeline-item.reverse .timeline-image {
  order: 2;
}

.timeline-item.reverse .timeline-content {
  order: 1;
}

.timeline-image,
.timeline-content {
  border: 1px solid #d7e4ff;
  border-radius: 14px;
  box-shadow: 0 4px 10px rgba(30, 71, 159, 0.08);
  overflow: hidden;
  background: #ffffff;
}

.timeline-image {
  min-height: 250px;
  background: #ffffff;
  display: grid;
  place-items: center;
  color: #5d78ab;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  text-align: center;
  padding: 1rem;
}

.timeline-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #ffffff;
}

.timeline-content {
  padding: 1.2rem 1.2rem 1rem;
}

.timeline-meta {
  color: var(--blue-700);
  font-weight: 800;
  font-size: 0.92rem;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.timeline-content h3 {
  color: var(--blue-900);
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 0.65rem;
  text-transform: none;
}

.timeline-content p {
  font-size: 1.03rem;
  line-height: 1.62;
  color: #161f37;
  margin-bottom: 0.75rem;
  text-align: justify;
}

.timeline-content ul {
  margin: 0 0 0.4rem 1.1rem;
  color: #111a32;
}

.timeline-content li {
  margin-bottom: 0.35rem;
  line-height: 1.5;
}

.timeline-item-center {
  grid-template-columns: 1fr;
  justify-items: center;
}

.timeline-video-card {
  width: min(920px, 100%);
}

.timeline-video-card .timeline-meta,
.timeline-video-card h3 {
  text-align: center;
}

.timeline-video {
  position: relative;
  width: min(420px, 100%);
  aspect-ratio: 9 / 16;
  border-radius: 12px;
  overflow: hidden;
  background: #000000;
  margin: 0.75rem auto 0;
}

.timeline-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Soutiens Grid */
.supports-wrap {
  padding: 2.4rem 0 3rem;
  background: #FFFFFF;
}

.supports-head {
  text-align: center;
  margin-bottom: 1.6rem;
}

.supports-head h2 {
  color: var(--blue-900);
  font-size: clamp(1.7rem, 2.1vw + 0.9rem, 2.6rem);
  text-transform: uppercase;
  font-weight: 900;
  margin-bottom: 0.45rem;
}

.supports-head p {
  color: #1e2b48;
  font-size: 1.06rem;
}

.supports-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.support-card {
  display: block;
  border: 1px solid #d7e4ff;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(30, 71, 159, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.support-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(30, 71, 159, 0.16);
}

.support-image {
  height: 420px;
  border-bottom: 1px solid #d7e4ff;
  background: #ffffff;
}

.support-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.support-image iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  pointer-events: none;
}

.support-image-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: #f1f6ff;
  color: #2a4f97;
  font-weight: 800;
  text-transform: uppercase;
}

.support-body {
  padding: 1rem 1rem 1.1rem;
}

.support-title {
  margin: 0;
  color: var(--blue-900);
  font-size: 1.15rem;
  line-height: 1.3;
  font-weight: 900;
}

.support-date {
  margin-top: 0.45rem;
  color: #21458e;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 0.86rem;
}

.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.video-modal.open {
  display: flex;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 42, 0.66);
}

.video-modal-dialog {
  position: relative;
  width: min(540px, 92vw);
  background: #ffffff;
  border: 1px solid #d7e4ff;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(8, 18, 42, 0.34);
  padding: 0.7rem;
}

.video-modal-close {
  position: absolute;
  top: 0.3rem;
  right: 0.3rem;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: #eaf1ff;
  color: #0b47b8;
  font-weight: 900;
  cursor: pointer;
}

.video-modal-frame {
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 10px;
  overflow: hidden;
  background: #000000;
}

.video-modal-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

body.modal-open {
  overflow: hidden;
}

.support-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10010;
  overflow-y: auto;
  padding: 1rem;
}

.support-modal.open {
  display: flex;
}

.support-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 42, 0.66);
}

.support-modal-dialog {
  position: relative;
  width: min(780px, 94vw);
  max-height: calc(100dvh - 2rem);
  background: #ffffff;
  border: 1px solid #d7e4ff;
  border-radius: 20px;
  box-shadow: 0 24px 50px rgba(8, 18, 42, 0.34);
  overflow: hidden;
}

.support-modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 999px;
  background: rgba(234, 241, 255, 0.9);
  color: #0a3f9f;
  font-size: 1.05rem;
  font-weight: 900;
  cursor: pointer;
  z-index: 2;
  transition: background 0.2s ease, transform 0.2s ease;
}

.support-modal-close:hover {
  background: #dce8ff;
  transform: translateY(-1px);
}

.support-modal-body {
  max-height: calc(100dvh - 5.5rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.15rem;
}

.support-hero {
  margin-bottom: 0.95rem;
  padding: 1.15rem 1.15rem 1.05rem;
  border: 1px solid #dbe7ff;
  border-radius: 16px;
  background:
    radial-gradient(circle at 100% 0, rgba(180, 208, 255, 0.42), transparent 44%),
    linear-gradient(180deg, #f8fbff 0%, #f2f7ff 100%);
}

.support-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 28px;
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  border: 1px solid #bed5ff;
  background: #ffffff;
  color: #1f4f9d;
  font-size: 0.9rem;
  font-weight: 800;
}

.support-hero h3 {
  margin: 0.58rem 0 0.55rem;
  color: var(--blue-900);
  font-size: clamp(1.7rem, 1.9vw + 0.95rem, 2.35rem);
  line-height: 1.12;
  text-transform: none;
  text-wrap: balance;
}

.support-lead {
  margin: 0;
  color: #1a3668;
  line-height: 1.62;
  font-size: 1.11rem;
  max-width: 66ch;
}

.support-facts {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.support-facts li {
  margin: 0;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.52rem;
  color: #133a7f;
  font-size: 0.98rem;
  line-height: 1.45;
}

.support-facts li::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-top: 0.34rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #1d5ed0, #0b43ad);
  box-shadow: 0 0 0 4px rgba(38, 107, 221, 0.12);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.72rem;
}

.support-card {
  padding: 0.85rem 0.88rem 0.86rem;
  border: 1px solid #d5e3ff;
  border-radius: 14px;
  background: linear-gradient(180deg, #ffffff 0%, #f7faff 100%);
  box-shadow: 0 8px 18px rgba(12, 60, 145, 0.08);
}

.support-card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.15rem;
  height: 1.55rem;
  padding: 0 0.45rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #1f62d6, #0b43ad);
  color: #ffffff;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  font-weight: 900;
}

.support-card h4 {
  margin: 0.48rem 0 0.34rem;
  color: #0e3f98;
  font-size: 1.08rem;
  line-height: 1.28;
  text-transform: none;
}

.support-card p {
  margin: 0;
  color: #1f3f75;
  line-height: 1.52;
  font-size: 0.99rem;
}

.support-modal-footer {
  margin-top: 0.88rem;
  padding: 0.95rem 1rem 1rem;
  border: 1px solid #d8e5ff;
  border-radius: 14px;
  background: #f8fbff;
}

.support-footer-text {
  margin: 0;
  color: #133a7f;
  line-height: 1.55;
  font-size: 1rem;
}

.support-modal-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 0.72rem;
}

.support-modal-btn {
  min-height: 46px;
  padding: 0.8rem 1.25rem;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .timeline-item.reverse .timeline-image,
  .timeline-item.reverse .timeline-content {
    order: initial;
  }

  .supports-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 560px) {
  .supports-grid {
    grid-template-columns: 1fr;
  }

  .support-modal {
    align-items: flex-start;
    justify-content: center;
    padding: 0.6rem;
  }

  .support-modal-dialog {
    width: 100%;
    max-height: calc(100dvh - 1.2rem);
    border-radius: 16px;
  }

  .support-modal-body {
    padding: 0.82rem;
    max-height: calc(100dvh - 4.8rem);
  }

  .support-hero {
    padding: 0.95rem;
  }

  .support-hero h3 {
    font-size: 1.9rem;
  }

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

  .support-modal-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .support-modal-btn {
    justify-content: center;
    width: 100%;
  }

}
