
    :root {
      --green:     #1a5c3a;
      --green-mid: #2d7a52;
      --green-lt:  #3da066;
      --gold:      #c9993a;
      --gold-lt:   #e4b75a;
      --cream:     #f8f4ed;
      --dark:      #0f1e17;
      --text:      #2a3a31;
      --muted:     #6b7f74;
      --white:     #ffffff;
      --radius:    14px;
      --shadow:    0 8px 40px rgba(15,30,23,.12);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Outfit', sans-serif;
      background: var(--cream);
      color: var(--text);
      overflow-x: hidden;
    }

    /* ── NAVBAR ─────────────────────────────────────── */
    nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 5%;
      height: 70px;
      background: rgba(15,30,23,.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(201,153,58,.2);
      transition: all .3s;
    }

    .nav-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
    }

    .nav-logo-circle {
      width: 42px; height: 42px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      color: var(--white);
      font-size: 1rem;
      letter-spacing: .05em;
      flex-shrink: 0;
      overflow: hidden;
    }
    .nav-logo-circle img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    #preview {
      position: fixed;
      inset: 0;
      background-color: #0000001a;
      backdrop-filter: blur(10px);
      z-index: 1001;
      display: flex;
      justify-content: center;
      align-items: center;
      display: none;
    }
    #preview i{
      position: absolute;
      right: 30px;
      top: 30px;
      color: #ffffff;
      font-size: 20px;
      cursor: pointer;
    }
    #preview img {
      width: 90%;
      height: 90%;
      object-fit: contain;
    }
    .nav-title {
      font-family: 'Cormorant Garamond', serif;
      font-weight: 700;
      font-size: 1.35rem;
      color: var(--white);
      letter-spacing: .06em;
    }

    .nav-title span { color: var(--gold-lt); }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: rgba(255,255,255,.78);
      font-size: .88rem;
      font-weight: 500;
      padding: 6px 14px;
      border-radius: 30px;
      transition: background .2s, color .2s;
      letter-spacing: .03em;
    }

    .nav-links a:hover {
      background: rgba(201,153,58,.18);
      color: var(--gold-lt);
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 8px;
      background: none;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--white);
      border-radius: 2px;
      transition: transform .3s, opacity .3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    .mobile-menu {
      display: none;
      position: fixed;
      top: 70px; left: 0; right: 0;
      background: rgba(15,30,23,.97);
      backdrop-filter: blur(14px);
      padding: 20px 5% 28px;
      flex-direction: column;
      gap: 4px;
      z-index: 999;
      border-bottom: 1px solid rgba(201,153,58,.15);
    }
    .mobile-menu.open { display: flex; }
    .mobile-menu a {
      text-decoration: none;
      color: rgba(255,255,255,.82);
      font-size: 1rem;
      font-weight: 500;
      padding: 12px 16px;
      border-radius: 10px;
      transition: background .2s, color .2s;
    }
    .mobile-menu a:hover { background: rgba(201,153,58,.14); color: var(--gold-lt); }

    /* ── CAROUSEL ─────────────────────────────────────── */
    #accueil {
      position: relative;
      height: 100vh;
      min-height: 560px;
      overflow: hidden;
    }

    .carousel-track {
      display: flex;
      height: 100%;
      transition: transform .8s cubic-bezier(.77,0,.175,1);
    }

    .carousel-slide {
      min-width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }

    .carousel-slide img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

    /* placeholder quand pas d'image */
    .slide-placeholder {
      width: 100%; height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1rem;
      color: rgba(255,255,255,.5);
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .slide-placeholder.s1 { background: linear-gradient(135deg, #0f2e1e 0%, #1a5c3a 60%, #2d7a52 100%); }
    .slide-placeholder.s2 { background: linear-gradient(135deg, #1a3a28 0%, #2a6040 60%, #c9993a 100%); }
    .slide-placeholder.s3 { background: linear-gradient(135deg, #0a1f14 0%, #1a4c32 60%, #1a5c3a 100%); }

    .carousel-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(0,0,0,.15) 0%, rgba(0,0,0,.55) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 0 20px;
    }

    .carousel-eyebrow {
      font-size: .78rem;
      font-weight: 500;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--gold-lt);
      margin-bottom: 16px;
      opacity: 0;
      animation: fadeUp .7s .4s forwards;
    }

    .carousel-heading {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.4rem, 7vw, 5.5rem);
      font-weight: 700;
      color: var(--white);
      line-height: 1.05;
      margin-bottom: 18px;
      opacity: 0;
      animation: fadeUp .7s .55s forwards;
    }

    .carousel-devise {
      font-size: clamp(.9rem, 2vw, 1.15rem);
      color: rgba(255,255,255,.75);
      letter-spacing: .16em;
      opacity: 0;
      animation: fadeUp .7s .7s forwards;
    }

    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(255,255,255,.12);
      border: 1px solid rgba(255,255,255,.25);
      color: var(--white);
      width: 48px; height: 48px;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1.1rem;
      display: flex; align-items: center; justify-content: center;
      transition: background .2s, transform .2s;
      z-index: 10;
    }
    .carousel-btn:hover { background: rgba(201,153,58,.4); transform: translateY(-50%) scale(1.08); }
    .carousel-btn.prev { left: 24px; }
    .carousel-btn.next { right: 24px; }

    .carousel-dots {
      position: absolute;
      bottom: 28px; left: 50%;
      transform: translateX(-50%);
      display: flex; gap: 10px;
      z-index: 10;
    }
    .carousel-dots button {
      width: 10px; height: 10px;
      border-radius: 50%;
      border: 2px solid rgba(255,255,255,.6);
      background: transparent;
      cursor: pointer;
      transition: background .3s, border-color .3s, transform .3s;
    }
    .carousel-dots button.active {
      background: var(--gold);
      border-color: var(--gold);
      transform: scale(1.3);
    }

    /* ── SECTION BASE ──────────────────────────────────── */
    section { padding: 90px 5%; }
    #nosActions {
      background-color: rgba(201, 153, 58, 0.057);
    }
    .Actions-Grid {
      margin-top: 50px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 15px;
    }
    .section-tag {
      display: inline-block;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .2em;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(201,153,58,.1);
      border: 1px solid rgba(201,153,58,.25);
      padding: 4px 14px;
      border-radius: 30px;
      margin-bottom: 14px;
    }
    .sousTitre {
      text-align: center;
      font-size: clamp(30px, 5vw, 45px);
      color: var(--gold);
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2rem, 4.5vw, 3.2rem);
      font-weight: 700;
      color: var(--dark);
      line-height: 1.12;
      margin-bottom: 18px;
    }

    .section-lead {
      font-size: 1rem;
      color: var(--muted);
      line-height: 1.75;
      max-width: 560px;
    }

    .divider {
      width: 56px; height: 3px;
      background: linear-gradient(90deg, var(--gold), var(--green-lt));
      border-radius: 3px;
      margin: 16px 0 28px;
    }

    /* ── À PROPOS ──────────────────────────────────────── */
    #apropos {
      background: var(--white);
    }

    .apropos-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
    }

    .apropos-images {
      position: relative;
      height: 480px;
    }

    .img-card {
      position: absolute;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .img-card img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }

    .img-placeholder {
      width: 100%; height: 100%;
      display: flex; align-items: center; justify-content: center;
      font-size: .8rem;
      color: rgba(255,255,255,.55);
      letter-spacing: .08em;
      text-transform: uppercase;
      text-align: center;
      padding: 12px;
    }

    .img-card.main {
      width: 68%; height: 78%;
      top: 0; left: 0;
      border: 3px solid var(--white);
    }
    .img-card.main .img-placeholder { background: linear-gradient(135deg, #1a5c3a, #2d7a52); }

    .img-card.secondary {
      width: 52%; height: 52%;
      bottom: 0; right: 0;
      border: 3px solid var(--white);
    }
    .img-card.secondary .img-placeholder { background: linear-gradient(135deg, #c9993a, #1a5c3a); }

    .apropos-badge {
      position: absolute;
      top: 50%; left: 52%;
      transform: translate(-50%,-50%);
      background: var(--green);
      color: var(--white);
      padding: 14px 20px;
      border-radius: 12px;
      text-align: center;
      box-shadow: 0 6px 28px rgba(26,92,58,.4);
      z-index: 5;
      border: 2px solid var(--gold);
    }
    .apropos-badge .big { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--gold-lt); display: block; line-height: 1; }
    .apropos-badge .small { font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; opacity: .8; }

    .btnDown {
      margin-top: 20px;
    }
    .btnDown button {
      padding: 10px 15px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      color: rgba(255, 255, 255, .65);
      background-color: rgba(255, 255, 255, .07);
      transition: all 0.3s;
      font-weight: 500;
    }
    .btnDown button:hover {
      background-color: var(--gold);
      color: var(--text);
    }
    .values-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
      margin-top: 32px;
    }

    .value-card {
      background: var(--cream);
      border: 1px solid rgba(201,153,58,.18);
      border-radius: 12px;
      padding: 18px 14px;
      text-align: center;
      transition: transform .25s, box-shadow .25s;
    }
    .value-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(26,92,58,.1); }
    .value-card .icon { font-size: 1.6rem; margin-bottom: 8px; }
    .value-card h4 { font-size: .88rem; font-weight: 600; color: var(--green); margin-bottom: 4px; }
    .value-card p { font-size: .78rem; color: var(--muted); line-height: 1.5; }

    /* ── MEMBRES ──────────────────────────────────────── */
    #membres {
      background: var(--cream);
    }

    .membres-header {
      text-align: center;
      max-width: 600px;
      margin: 0 auto 56px;
    }

    .membres-header .section-lead { margin: 0 auto; text-align: center; }
    .membres-header .divider { margin: 16px auto 0; }

    .membres-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      max-width: 1200px;
      margin: 0 auto 24px 0;
      transition: all .5s;
    }
    .membres-grid.hide {
      max-height: 0px;
      overflow: hidden;
    }

    .membre-card {
      background: var(--white);
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(15,30,23,.08);
      transition: transform .3s, box-shadow .3s;
      display: flex;
      flex-direction: column;
    }
    .membre-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(15,30,23,.14);
    }

    .membre-photo {
      width: 100%;
      aspect-ratio: 3/3.5;
      object-fit: cover;
      display: block;
    }

    .membre-photo-placeholder {
      width: 100%;
      aspect-ratio: 3/3.5;
      background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }
    .membre-photo-placeholder i {
      font-size: 3rem;
      color: rgba(255,255,255,.35);
    }

    .membre-body {
      padding: 18px 16px 16px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .membre-titre {
      font-size: .7rem;
      font-weight: 600;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 4px;
    }

    .membre-nom {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--dark);
      margin-bottom: 8px;
      line-height: 1.2;
    }

    .membre-desc {
      font-size: .8rem;
      color: var(--muted);
      line-height: 1.6;
      flex: 1;
      margin-bottom: 16px;
    }

    .membre-socials {
      display: flex;
      gap: 10px;
      border-top: 1px solid rgba(0,0,0,.06);
      padding-top: 14px;
    }

    .membre-socials a {
      width: 32px; height: 32px;
      border-radius: 8px;
      background: var(--cream);
      color: var(--green);
      display: flex; align-items: center; justify-content: center;
      font-size: .85rem;
      text-decoration: none;
      transition: background .2s, color .2s, transform .2s;
    }
    .membre-socials a:hover {
      background: var(--green);
      color: var(--white);
      transform: translateY(-2px);
    }
    .voirplus {
      width: 100%;
      height: 50px;
      display: flex;
      justify-content: center;
      align-items: center;
      color: #0d1b2a;
      font-size: 20px;
      font-family: Arial, Helvetica, sans-serif;
      font-weight: 400;
      margin-top: 15px;
      text-decoration: underline;
      gap: 5px;

    }
.voir-tous-membres {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background-color: #6a0dad;
  color: white;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-family: Arial, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.voir-tous-membres .arrow {
  transition: transform 0.3s ease;
}

.voir-tous-membres:hover {
  background-color: #4b0a7a;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}


.voir-tous-membres:active {
  transform: scale(0.98);
}

    /* ── FOOTER ────────────────────────────────────────── */
    footer {
      background: var(--dark);
      color: rgba(255,255,255,.7);
      padding: 64px 5% 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr;
      gap: 48px;
      max-width: 1200px;
      margin: 0 auto;
      padding-bottom: 48px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    .footer-brand .nav-title { font-size: 1.5rem; display: block; margin-bottom: 6px; }
    .footer-signif {
      font-size: .8rem;
      color: rgba(255,255,255,.45);
      font-style: italic;
      margin-bottom: 16px;
      line-height: 1.6;
    }
    .footer-devise {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: .78rem;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gold-lt);
      border: 1px solid rgba(201,153,58,.3);
      padding: 6px 14px;
      border-radius: 30px;
    }

    .footer-col h5 {
      font-size: .75rem;
      font-weight: 600;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold-lt);
      margin-bottom: 20px;
    }

    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul a {
      text-decoration: none;
      color: rgba(255,255,255,.6);
      font-size: .88rem;
      transition: color .2s;
    }
    .footer-col ul a:hover { color: var(--gold-lt); }

    .footer-col address {
      font-style: normal;
      font-size: .88rem;
      line-height: 2;
      color: rgba(255,255,255,.6);
    }
    .footer-col address i { color: var(--gold); margin-right: 8px; width: 14px; }

    .footer-socials {
      display: flex;
      gap: 10px;
    }
    .footer-socials a {
      width: 36px; height: 36px;
      border-radius: 8px;
      background: rgba(255,255,255,.07);
      color: rgba(255,255,255,.65);
      display: flex; align-items: center; justify-content: center;
      font-size: .9rem;
      text-decoration: none;
      transition: background .2s, color .2s;
    }
    .footer-socials a:hover { background: var(--gold); color: var(--dark); }

    .footer-bottom {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 28px;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: .8rem; color: rgba(255,255,255,.35); }
    .footer-bottom span { color: var(--gold); font-size: .8rem; }

    /* ── SCROLL TO TOP ──────────────────────────────────── */
    #scrollTop {
      position: fixed;
      bottom: 28px; right: 28px;
      width: 44px; height: 44px;
      background: var(--green);
      color: var(--white);
      border: none;
      border-radius: 50%;
      cursor: pointer;
      font-size: 1rem;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 4px 20px rgba(26,92,58,.35);
      opacity: 0;
      pointer-events: none;
      transition: opacity .3s, transform .3s;
      z-index: 500;
    }
    #scrollTop.visible { opacity: 1; pointer-events: auto; }
    #scrollTop:hover { transform: scale(1.1); }

    /* ── RESPONSIVE ─────────────────────────────────────── */
    @media (max-width: 1100px) {
      .membres-grid { grid-template-columns: repeat(3, 1fr); }
    }

    @media (max-width: 860px) {
      .nav-links { display: none; }
      .hamburger { display: flex; }

      .apropos-grid {
        grid-template-columns: 1fr;
        gap: 48px;
      }
      .apropos-images { height: 380px; }
      .img-card.main { width: 72%; height: 80%; }
      .img-card.secondary { width: 54%; height: 54%; }

      .footer-grid { grid-template-columns: 1fr 1fr; }
      .footer-brand { grid-column: 1 / -1; }
    }

    @media (max-width: 640px) {
      section { padding: 64px 5%; }
      .membres-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
      .values-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 400px) {
      .membres-grid { grid-template-columns: 1fr; max-width: 320px; margin-left: auto; margin-right: auto; }
      .values-grid { grid-template-columns: 1fr; }
    }
    .card {
      display: flex;
      flex-direction: row;
      width: 100%;
      max-width: 950px;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 8px 40px rgba(12, 68, 124, 0.13);
      background: #fff;
      transition: all .2s;
    }
    .card:hover {
      transform: translateY(-4px);
      scale: 1.01;
    }
 
    /* ── IMAGE SIDE ── */
    .card__image {
      width: 42%;
      flex-shrink: 0;
      background: linear-gradient(160deg, #0C447C 0%, #185FA5 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
    }
 
    .card__image::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.06);
    }
 
    .card__image::after {
      content: '';
      position: absolute;
      bottom: -30px;
      left: -30px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.05);
    }
 
    .card__logo-circle {
      width: 90px;
      height: 90px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.14);
      border: 2px solid rgba(255, 255, 255, 0.28);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 16px;
      position: relative;
      z-index: 1;
    }
 
    .card__logo-text {
      font-family: 'Playfair Display', serif;
      font-size: 15px;
      font-weight: 700;
      color: #fff;
      text-align: center;
      line-height: 1.2;
    }
 
    .card__org {
      font-family: 'Playfair Display', serif;
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      text-align: center;
      position: relative;
      z-index: 1;
    }
 
    .card__location {
      font-size: 12px;
      color: rgba(181, 212, 244, 0.8);
      text-align: center;
      margin-top: 6px;
      position: relative;
      z-index: 1;
    }
 
    .card__tag {
      margin-top: 20px;
      padding: 5px 14px;
      border: 1px solid rgba(255,255,255,0.3);
      border-radius: 20px;
      font-size: 11px;
      color: rgba(255,255,255,0.85);
      letter-spacing: 0.05em;
      position: relative;
      z-index: 1;
    }
 
    /* ── CONTENT SIDE ── */
    .card__body {
      flex: 1;
      padding: 2rem 1.75rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 1rem;
    }
 
    .card__badge {
      display: inline-block;
      font-size: 10.5px;
      font-weight: 500;
      color: #185FA5;
      background: #E6F1FB;
      border-radius: 5px;
      padding: 3px 10px;
      letter-spacing: 0.03em;
      margin-bottom: 8px;
    }
 
    .card__title {
      font-family: 'Playfair Display', serif;
      font-size: 18px;
      font-weight: 700;
      color: #0d1b2a;
      line-height: 1.35;
      margin-bottom: 10px;
    }
 
    .card__divider {
      height: 1px;
      background: #e8edf3;
      margin-bottom: 12px;
    }
 
    .card__desc {
      font-size: 13.5px;
      color: #4a5568;
      line-height: 1.7;
    }
    ul li {
      font-size: 13.5px;
      color: #4a5568;
      line-height: 1.7;
    }
 
    /* ── META ── */
    .card__meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 14px;
    }
 
    .card__meta-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11.5px;
      color: #637080;
      background: #f5f7fa;
      border-radius: 7px;
      padding: 5px 10px;
    }
 
    .card__meta-item svg {
      flex-shrink: 0;
      color: #185FA5;
    }
 
    /* ── RESPONSIVE ── */
    @media (max-width: 560px) {
      .card {
        flex-direction: column;
      }
 
      .card__image {
        width: 100%;
        flex-direction: row;
        gap: 16px;
        justify-content: flex-start;
        align-items: center;
      }
 
      .card__image::before { display: none; }
 
      .card__logo-circle {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
        margin-bottom: 0;
      }
 
      .card__logo-text { font-size: 12px; }
      .card__org { font-size: 15px; text-align: left; }
      .card__location { text-align: left; }
      .card__tag { margin-top: 6px; }
 
      .card__image-text { display: flex; flex-direction: column; }
 
      .card__body {
        padding: 1.5rem;
      }
    }