/* piredaron.com — "tableau d'affichage du club des darons"
   Paper notes taped to a board, rubber stamps, school-ruler votes,
   handwritten annotations. Controlled mess: nothing perfectly aligned. */

:root {
  --paper: #f6efdf;
  --paper-deep: #ece1c8;
  --ink: #1f2437;
  --ink-soft: #565c74;
  --brique: #d64026;
  --moutarde: #f0b429;
  --cobalt: #2b50aa;
  --card: #fffdf6;
  --card-alt: #fdf9e8;
  --tape: rgba(244, 227, 154, 0.6);
  --wobble: 9px 14px 10px 16px / 15px 9px 16px 10px;
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Atkinson Hyperlegible', sans-serif;
  --font-hand: 'Reenie Beanie', cursive;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.55;
  position: relative;
}

/* paper fiber */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1000;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

a { color: var(--cobalt); }

/* ---------- Masthead ---------- */

.site-header {
  padding: 1.3rem 1rem 0.4rem;
  max-width: 640px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 8vw, 2.8rem);
  letter-spacing: -0.035em;
  text-decoration: none;
  color: var(--ink);
  display: inline-block;
  line-height: 1;
  transform: rotate(-1.2deg);
  position: relative;
  padding-bottom: 0.35rem;
  /* hand-drawn underline */
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='7' viewBox='0 0 80 7'%3E%3Cpath d='M2 4 Q12 1 22 4 T42 4 T62 4 T78 3' fill='none' stroke='%23d64026' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E") bottom left/auto 7px repeat-x;
}

.logo em { font-style: normal; color: var(--brique); }

/* scribbled in pen next to the masthead, not a badge */
.logo-badge {
  display: inline-block;
  font-family: var(--font-hand);
  font-weight: 600;
  font-size: 1.45rem;
  letter-spacing: 0;
  color: var(--cobalt);
  margin-left: 0.5rem;
  transform: rotate(-6deg) translateY(-0.7rem);
  opacity: 0.85;
}

.tagline {
  margin: 0.4rem 0 0 0.2rem;
  color: var(--ink-soft);
  font-family: var(--font-hand);
  font-size: 1.7rem;
  line-height: 1.2;
  transform: rotate(-0.8deg);
}

.board-counter {
  font-family: var(--font-hand);
  font-size: 1.7rem;
  line-height: 1.2;
  color: var(--ink-soft);
  margin: 0.7rem 0 0;
  transform: rotate(-0.5deg);
}

.board-counter strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--brique);
  letter-spacing: -0.02em;
}

.feed-sort { margin-top: 1.1rem; margin-bottom: 0.5rem; }

.cat-filter { margin-bottom: 1.2rem; }
.cat-filter button { font-size: 0.85rem; }

.cat-label {
  font-family: var(--font-hand);
  font-size: 1.45rem;
  color: var(--ink-soft);
}

.edition-strip {
  margin: 0.8rem 0 0;
  padding: 0.28rem 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px dashed var(--ink);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* nav = inked masthead links; the single CTA is the only button */
.site-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem 1.15rem;
  margin: 1rem 0 0;
  padding: 0.3rem 0.2rem 0.5rem;
}

.site-nav a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  color: var(--ink);
  white-space: nowrap;
  padding-bottom: 0.25rem;
}

.site-nav a:hover { color: var(--brique); }

.site-nav a[aria-current='page'] {
  color: var(--brique);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='7' viewBox='0 0 80 7'%3E%3Cpath d='M2 4 Q12 1 22 4 T42 4 T62 4 T78 3' fill='none' stroke='%23d64026' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") bottom left/auto 6px repeat-x;
}

.site-nav a.nav-cta {
  margin-left: auto;
  background: var(--moutarde);
  border: 2px solid var(--ink);
  border-radius: 10px 14px 10px 15px / 14px 10px 15px 10px;
  padding: 0.4rem 1rem;
  box-shadow: 2px 3px 0 rgba(31, 36, 55, 0.85);
  transform: rotate(-0.8deg);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.site-nav a.nav-cta:hover { color: var(--ink); transform: rotate(0deg) translateY(-2px); box-shadow: 2px 5px 0 rgba(31, 36, 55, 0.85); }
.site-nav a.nav-cta[aria-current='page'] { background: var(--moutarde); }

/* ---------- Layout ---------- */

main {
  max-width: 640px;
  margin: 0 auto;
  padding: 0.9rem 1rem 3rem;
}

.page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.5rem, 6vw, 2rem);
  letter-spacing: -0.02em;
  margin: 1rem 0 0.3rem;
  transform: rotate(-0.5deg);
}

.page-sub {
  font-family: var(--font-hand);
  font-size: 1.65rem;
  line-height: 1.25;
  color: var(--ink-soft);
  margin: 0 0 1.5rem;
  transform: rotate(-0.4deg);
}

/* ---------- Cards: paper notes taped to the board ---------- */

.feed { display: flex; flex-direction: column; gap: 1.5rem; padding-top: 0.9rem; }

.card {
  background: var(--card);
  border: 1px solid rgba(31, 36, 55, 0.35);
  border-radius: var(--wobble);
  padding: 1.55rem 1.15rem 0.9rem;
  position: relative;
  box-shadow: 0 6px 14px -8px rgba(31, 36, 55, 0.45), 0 1px 0 rgba(31, 36, 55, 0.25);
  animation: card-in 0.45s ease both;
  animation-delay: var(--d, 0s);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

/* pick the note off the board: it straightens and lifts */
@media (hover: hover) {
  .feed .card:hover {
    transform: rotate(0deg) translateY(-3px);
    box-shadow: 0 14px 22px -12px rgba(31, 36, 55, 0.55), 0 1px 0 rgba(31, 36, 55, 0.25);
  }
}

/* each note pinned its own way */
.feed .card:nth-child(4n + 1) { transform: rotate(-0.8deg); }
.feed .card:nth-child(4n + 2) { transform: rotate(0.6deg); background: var(--card-alt); }
.feed .card:nth-child(4n + 3) { transform: rotate(-0.3deg); }
.feed .card:nth-child(4n + 4) { transform: rotate(0.9deg); background: #fffef9; }

/* masking tape */
.card::before {
  content: '';
  position: absolute;
  top: -0.8rem;
  left: 14%;
  width: 92px;
  height: 26px;
  background: var(--tape);
  border-left: 1px dashed rgba(31, 36, 55, 0.18);
  border-right: 1px dashed rgba(31, 36, 55, 0.18);
  transform: rotate(-3deg);
  box-shadow: 0 1px 2px rgba(31, 36, 55, 0.12);
}

.feed .card:nth-child(even)::before { left: auto; right: 30%; transform: rotate(2.4deg); width: 74px; }

@keyframes card-in {
  from { opacity: 0; translate: 0 14px; }
  to { opacity: 1; translate: 0 0; }
}

.card-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin: 0 0 0.45rem;
  max-width: 75%;
}

.card-title a { color: var(--ink); text-decoration: none; }
.card-title a:hover { color: var(--brique); text-decoration: underline; text-underline-offset: 3px; }

.card-text {
  margin: 0;
  font-size: 1.05rem;
  white-space: pre-line;
  overflow-wrap: break-word;
}

.card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.15rem 0.6rem;
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.card-meta .pseudo {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
}

.share-btn {
  margin-left: auto;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--ink);
  background: var(--card);
  border: 2px solid var(--ink);
  border-radius: 7px 10px 7px 11px / 10px 7px 11px 7px;
  padding: 0.22rem 0.7rem;
  cursor: pointer;
  box-shadow: 1px 2px 0 rgba(31, 36, 55, 0.6);
  transform: rotate(-1deg);
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.share-btn:hover {
  background: var(--moutarde);
  transform: rotate(0deg) translateY(-1px);
  box-shadow: 1px 3px 0 rgba(31, 36, 55, 0.6);
}

.share-inline {
  background: none;
  border: none;
  padding: 0;
  font-family: inherit;
  font-size: inherit;
  color: var(--cobalt);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.share-inline:hover { color: var(--brique); }

.cat-tag {
  font-family: var(--font-hand);
  font-size: 1.35rem;
  color: var(--cobalt);
}

.report-btn {
  background: none;
  border: none;
  color: var(--ink-soft);
  font-size: 0.78rem;
  cursor: pointer;
  padding: 0.2rem;
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.75;
}

.report-btn:hover { color: var(--brique); opacity: 1; }

/* ---------- The grade: big bare red figures, poster style ---------- */

.stamp {
  position: absolute;
  top: -1.35rem;
  right: 0.9rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--brique);
  transform: rotate(-6deg);
  line-height: 0.8;
  text-align: right;
  mix-blend-mode: multiply;
}

.feed .card:nth-child(even) .stamp { transform: rotate(4deg); }
.feed .card:nth-child(3n) .stamp { transform: rotate(-8deg) translateY(2px); }

.stamp .note { font-size: 2.4rem; letter-spacing: -0.05em; }
.stamp .den { font-size: 1.15rem; font-weight: 700; margin-left: 1px; }
.stamp .sur-dix {
  font-family: var(--font-hand);
  font-weight: 400;
  font-size: 1.55rem;
  display: block;
  margin-top: 0.2rem;
}

/* the grade slams onto the paper, slightly after its card lands */
.feed .stamp {
  animation: stamp-in 0.4s cubic-bezier(0.2, 1.5, 0.4, 1) both;
  animation-delay: calc(var(--d, 0s) + 0.22s);
}

@keyframes stamp-in {
  from { opacity: 0; scale: 1.7; filter: blur(1px); }
  to { opacity: 1; scale: 1; filter: blur(0); }
}

/* not graded yet: pencil note */
.stamp.pending {
  color: #8a8fa5;
  font-family: var(--font-hand);
  font-weight: 400;
  transform: rotate(-3deg);
}
.stamp.pending .note { font-size: 1.6rem; letter-spacing: 0; }
.stamp.gold { color: #b3400f; }

/* ---------- Vote: the school ruler ---------- */

.vote-zone { margin-top: 0.95rem; border-top: 1px dashed rgba(31, 36, 55, 0.25); padding-top: 0.6rem; }

.vote-label {
  font-family: var(--font-hand);
  font-size: 1.6rem;
  color: var(--ink-soft);
  margin: 0 0 0.4rem;
  transform: rotate(-0.6deg);
  display: inline-block;
}

.ruler {
  display: flex;
  gap: 1px;
  background: rgba(31, 36, 55, 0.55);
  border: 2px solid var(--ink);
  border-radius: 7px 9px 7px 10px / 9px 7px 10px 7px;
  overflow: hidden;
  box-shadow: inset 0 -5px 8px -6px rgba(31, 36, 55, 0.5);
}

.ruler button {
  flex: 1;
  min-width: 0;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink);
  padding: 0.55rem 0 0.4rem;
  cursor: pointer;
  transition: transform 0.09s ease, background-color 0.09s ease, color 0.09s ease;
  /* ruler tick */
  background-image: linear-gradient(var(--ink) 0 0), linear-gradient(#f2e2b6, #e9d29a);
  background-size: 1.5px 5px, 100% 100%;
  background-position: top center, center;
  background-repeat: no-repeat;
}

/* the ruler reacts under the finger */
.ruler button:hover {
  background-image: linear-gradient(var(--ink) 0 0), linear-gradient(var(--moutarde), var(--moutarde));
  transform: translateY(-2px) scale(1.12);
}

.ruler button:active {
  background-image: linear-gradient(var(--paper) 0 0), linear-gradient(var(--brique), var(--brique));
  color: var(--paper);
  transform: translateY(1px) scale(0.96);
}

.ruler button:last-child { color: var(--brique); }
.ruler button:last-child:hover { font-size: 1rem; }

.vote-done { font-size: 0.9rem; color: var(--ink-soft); margin: 0; }
.vote-done strong { color: var(--brique); font-size: 1.05rem; }

/* right after voting: confirmation slides in, freshly-inked */
.just-voted .vote-done { animation: ink-in 0.5s ease both; }

@keyframes ink-in {
  from { opacity: 0; translate: -8px 0; }
  to { opacity: 1; translate: 0 0; }
}

.report-btn.reported {
  text-decoration: none;
  cursor: default;
  font-family: var(--font-hand);
  font-size: 1.3rem;
  color: var(--cobalt);
  animation: ink-in 0.4s ease both;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  background: var(--brique);
  color: #fffdf6;
  border: 2px solid var(--ink);
  border-radius: 12px 16px 12px 17px / 16px 12px 17px 12px;
  padding: 0.65rem 1.5rem;
  cursor: pointer;
  text-decoration: none;
  transform: rotate(-0.6deg);
  box-shadow: 2px 3px 0 rgba(31, 36, 55, 0.85);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:hover { transform: rotate(0deg) translateY(-2px); box-shadow: 2px 5px 0 rgba(31, 36, 55, 0.85); }
.btn:active { transform: translateY(1px); box-shadow: 1px 1px 0 rgba(31, 36, 55, 0.85); }
.btn[disabled] { opacity: 0.6; cursor: wait; }

.btn-secondary { background: var(--card); color: var(--ink); transform: rotate(0.5deg); }

.load-more-wrap { text-align: center; margin-top: 1.7rem; }

/* ---------- Forms: the school notebook ---------- */

.form-card {
  background: var(--card);
  border: 1px solid rgba(31, 36, 55, 0.35);
  border-radius: var(--wobble);
  padding: 1.25rem;
  position: relative;
  box-shadow: 0 6px 14px -8px rgba(31, 36, 55, 0.45);
  transform: rotate(-0.3deg);
}

.form-card::before {
  content: '';
  position: absolute;
  top: -0.8rem;
  left: 38%;
  width: 96px;
  height: 26px;
  background: var(--tape);
  border-left: 1px dashed rgba(31, 36, 55, 0.18);
  border-right: 1px dashed rgba(31, 36, 55, 0.18);
  transform: rotate(-2deg);
}

.form-card label {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  margin: 1rem 0 0.3rem;
}

.cat-choice {
  border: none;
  padding: 0;
  margin: 1rem 0 0;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  flex-wrap: wrap;
}

.cat-choice legend {
  font-family: var(--font-display);
  font-weight: 700;
  padding: 0;
  margin-bottom: 0.35rem;
  float: left;
  width: 100%;
}

.cat-chip { margin: 0 !important; cursor: pointer; }
.cat-chip input { position: absolute; opacity: 0; }

.cat-chip span {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  border: 2px solid var(--ink);
  border-radius: 8px 12px 8px 13px / 12px 8px 13px 8px;
  background: var(--paper);
  padding: 0.35rem 0.95rem;
  transform: rotate(-0.8deg);
  transition: background 0.12s ease, transform 0.12s ease;
}

.cat-chip:last-child span { transform: rotate(0.7deg); }
.cat-chip:hover span { background: var(--paper-deep); }
.cat-chip input:checked + span { background: var(--moutarde); transform: rotate(0deg); box-shadow: 1px 2px 0 rgba(31, 36, 55, 0.6); }
.cat-chip input:focus-visible + span { outline: 3px solid var(--moutarde); outline-offset: 1px; }

.form-card label:first-child { margin-top: 0; }

.form-card input[type='text'],
.form-card textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: #fefdf8;
  border: 2px solid var(--ink);
  border-radius: 6px 9px 6px 10px / 9px 6px 10px 6px;
  padding: 0.6rem 0.7rem;
}

/* write your story on ruled notebook paper, in your own hand */
.form-card textarea {
  min-height: 10rem;
  resize: vertical;
  font-family: var(--font-hand);
  font-size: 1.75rem;
  line-height: 34px;
  background-image: repeating-linear-gradient(
    transparent,
    transparent 33px,
    rgba(43, 80, 170, 0.25) 34px
  );
  background-attachment: local;
}

.form-card textarea::placeholder { color: #9aa0b5; }

.form-card input:focus,
.form-card textarea:focus { outline: 3px solid var(--moutarde); outline-offset: 1px; }

.char-count { font-size: 0.82rem; color: var(--ink-soft); text-align: right; margin: 0.25rem 0 0; }
.char-count.bad { color: var(--brique); }

.field-hint {
  font-family: var(--font-hand);
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--ink-soft);
  margin: 0.35rem 0 0;
}

.form-actions { margin-top: 1.2rem; }

.form-feedback {
  margin: 0.9rem 0;
  padding: 0.7rem 0.9rem;
  border-radius: 8px 11px 8px 12px / 11px 8px 12px 8px;
  font-weight: 700;
  display: none;
}

.form-feedback.ok { display: block; background: #e5f2e0; border: 2px solid #3e7a33; color: #2c5a24; transform: rotate(-0.4deg); }
.form-feedback.ko { display: block; background: #fbe4de; border: 2px solid var(--brique); color: var(--brique); }

.hp-field { position: absolute; left: -6000px; top: -6000px; }

/* ---------- Rankings ---------- */

/* filters = words underlined in pen, not buttons */
.tabs { display: flex; align-items: baseline; gap: 1.1rem; margin-bottom: 1.4rem; overflow-x: auto; }

.tabs button {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.92rem;
  border: none;
  background: none;
  color: var(--ink-soft);
  padding: 0 0 0.25rem;
  cursor: pointer;
  white-space: nowrap;
  transition: color 0.1s ease;
}

.tabs button:hover { color: var(--ink); }

.tabs button[aria-selected='true'] {
  color: var(--brique);
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='7' viewBox='0 0 80 7'%3E%3Cpath d='M2 4 Q12 1 22 4 T42 4 T62 4 T78 3' fill='none' stroke='%23d64026' stroke-width='2.4' stroke-linecap='round'/%3E%3C/svg%3E") bottom left/auto 6px repeat-x;
}

.rank-pos {
  position: absolute;
  top: -0.85rem;
  left: 0.8rem;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: 6px 10px 7px 11px / 10px 6px 11px 7px;
  padding: 0.12rem 0.6rem;
  transform: rotate(-3deg);
}

.card.rank-1 .rank-pos { background: var(--moutarde); color: var(--ink); transform: rotate(-5deg) scale(1.15); }

/* ---------- States ---------- */

.empty-state, .loading-state {
  text-align: center;
  color: var(--ink-soft);
  padding: 2.5rem 1rem;
  font-family: var(--font-hand);
  font-size: 1.75rem;
}

/* ---------- Footer ---------- */

.site-footer {
  max-width: 640px;
  margin: 0 auto;
  padding: 1.5rem 1rem 2.5rem;
  border-top: 1px dashed rgba(31, 36, 55, 0.35);
  color: var(--ink-soft);
  font-family: var(--font-hand);
  font-size: 1.45rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem 1.2rem;
}

.site-footer a { color: var(--ink-soft); }

/* ---------- Legal / prose ---------- */

.prose h2 { font-family: var(--font-display); font-size: 1.15rem; margin: 1.6rem 0 0.4rem; }
.prose p { margin: 0.4rem 0; }
.prose .page-sub { font-family: var(--font-body); font-size: 1rem; }

/* ---------- Admin ---------- */

.admin-row-actions { display: flex; gap: 0.6rem; margin-top: 0.8rem; }
.admin-row-actions .btn { font-size: 0.9rem; padding: 0.45rem 1.1rem; }

.status-chip {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 6px;
  padding: 0.12rem 0.5rem;
  border: 2px solid currentColor;
}

.status-chip.pending { color: #9a6a02; }
.status-chip.removed { color: var(--brique); }

/* ---------- Desktop ---------- */

@media (min-width: 700px) {
  body { font-size: 1.125rem; }
  .site-header { padding-top: 2.2rem; }
  .feed .card { padding: 1.7rem 1.6rem 1.1rem; }
  .card::before { width: 110px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* Share modal (desktop fallback when the browser has no native share sheet) */
.share-overlay {
  position: fixed;
  inset: 0;
  background: rgba(31, 36, 55, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 60;
  padding: 1rem;
}

.share-modal {
  position: relative;
  background: var(--card);
  border: 1.5px solid var(--ink);
  border-radius: var(--wobble);
  box-shadow: 6px 8px 0 rgba(31, 36, 55, 0.25);
  padding: 1.5rem 1.75rem 1.75rem;
  max-width: 22rem;
  width: 100%;
}

.share-modal-title {
  margin: 0 0 1rem;
  font-family: var(--font-hand);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--brique);
}

.share-modal-links {
  display: grid;
  gap: 0.55rem;
}

.share-modal-link {
  width: 100%;
  text-align: center;
}

.share-modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.65rem;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--ink-soft);
  cursor: pointer;
}

.share-modal-close:hover { color: var(--brique); }
