/* ----------------------------------------------------------------
   pape-france.fr — PANNEAU DON V3
   ---------------------------------------------------------------- */

.don-panel {
  font-family: 'Jost', Helvetica, Arial, sans-serif;
  position: relative;
  width: 100%;
  background: var(--paper, #fff);
  border-radius: 14px;
  padding: 48px 48px 40px;
  color: var(--primary-deep, #091d5a);
}

.don-panel__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  border-radius: 999px;
  border: 1px solid var(--rule, rgba(15,45,133,.14));
  background: var(--paper, #fff);
  display: inline-grid;
  justify-content: center;
  place-items: center;
  cursor: pointer;
  color: var(--ink-mute, #7b83a0);
  transition: background .2s, color .2s;
}
.don-panel__close:hover { background: var(--cream, #f5f4ef); color: var(--primary-deep, #091d5a); }
.don-panel__close svg { width: 18px; height: 18px; display: block; }

.don-panel__head { text-align: center; margin-bottom: 32px; }
.don-panel__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--primary-deep, #091d5a);
  margin-bottom: 16px;
  white-space: nowrap;
}
.don-panel__eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: currentColor;
  opacity: .6;
}
.don-panel__head h2 {
  font-family: 'LeonXIV', sans-serif;
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.08;
  letter-spacing: -.01em;
  margin: 0 0 10px;
  color: var(--primary-deep, #091d5a);
  text-wrap: balance;
  text-transform: uppercase;
}
.don-panel__head p {
  font-family: 'Jost', Helvetica, Arial, sans-serif;
  color: var(--ink-soft, #47506f);
  font-size: 15.5px;
  margin: 0 auto;
  max-width: 42ch;
  line-height: 1.55;
}

.don-note {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  background: var(--primary-wash, #f4f7fe);
  border: 1px solid var(--primary-tint, #eef1fb);
  border-radius: 10px;
  padding: 15px 18px;
  margin-bottom: 20px;
}
.don-note__icon {
  flex: none;
  width: 20px; height: 20px;
  color: var(--primary-deep, #091d5a);
  margin-top: 1px;
}
.don-note__icon svg { width: 100%; height: 100%; display: block; }
.don-note p {
  font-family: 'Jost', Helvetica, Arial, sans-serif;
  margin: 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-soft, #47506f);
}
.don-note p b { color: var(--primary-deep, #091d5a); font-weight: 600; }

.don-choices { display: flex; flex-direction: column; gap: 12px; }
.don-choice {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border: 1px solid var(--rule, rgba(15,45,133,.14));
  border-radius: 10px;
  background: var(--paper, #fff);
  text-decoration: none;
  color: inherit;
  transition: border-color .18s, background .18s, transform .18s, box-shadow .18s;
}
.don-choice:hover {
  border-color: var(--navy, #0F2D85);
  background: var(--primary-wash, #f4f7fe);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -26px rgba(20,17,50,.45);
}
.don-choice__flag {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--primary-tint, #eef1fb);
  color: var(--primary-deep, #091d5a);
  font-family: 'LeonXIV', sans-serif;
  font-size: 24px;
  font-weight: 600;
  text-transform: uppercase;
}
.don-choice--national .don-choice__flag { background: var(--navy-900, #091d5a); color: #fff; }
.don-choice__body { flex: 1; min-width: 0; text-align: left; }
.don-choice__title {
  font-family: 'LeonXIV', sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--primary-deep, #091d5a);
  line-height: 1.15;
  display: block;
  margin: 0 0 3px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
}
.don-choice__sub {
  font-family: 'Jost', Helvetica, Arial, sans-serif;
  font-size: 13.5px;
  color: var(--ink-soft, #47506f);
  line-height: 1.45;
  display: block;
}
.don-choice__arrow { flex: none; color: var(--primary-deep, #091d5a); transition: transform .18s; }
.don-choice:hover .don-choice__arrow { transform: translateX(4px); }
.don-choice__arrow svg { width: 22px; height: 22px; display: block; }

.don-panel__foot {
  font-family: 'Jost', Helvetica, Arial, sans-serif;
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--rule, rgba(15,45,133,.14));
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  font-size: 13px;
  color: var(--ink-mute, #7b83a0);
}
.don-panel__foot svg { width: 16px; height: 16px; color: var(--navy, #0F2D85); flex: none; }

@media (max-width: 640px) {
  .don-panel          { padding: 40px 24px 32px; }
  .don-choice         { padding: 16px; gap: 14px; }
  .don-choice__flag   { width: 44px; height: 44px; font-size: 20px; }
  .don-choice__title  { font-size: 20px; }
}
