/* Reel card — shared by the library (index.html), each embed (embed.html) and share links */
:root {
  --deep-blue: #005282;
  --nude: #EBD4CD;
  --plum: #65254D;
  --gold: #BE8C44;
  --ivory: #FBF7F4;
  --ink: #2a2530;
  --muted: #6b6270;
  --serif: "Bangla MN", "Cormorant Garamond", Georgia, serif;
}

.r-card {
  box-sizing: border-box;
  margin: 0;
  background: #fff;
  border: 1px solid var(--nude);
  border-top: 3px solid var(--deep-blue);
  border-radius: 6px;
  overflow: hidden;
  font-family: var(--serif);
  color: var(--ink);
  max-width: 400px;
}
.r-frame {
  position: relative;
  aspect-ratio: 9 / 16;
  background: var(--deep-blue);
}
.r-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--deep-blue);
}
.r-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background: rgba(0, 40, 64, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, background 0.2s ease;
}
.r-play svg { width: 26px; height: 26px; fill: #fff; margin-left: 4px; }
.r-play:hover { transform: scale(1.06); background: rgba(0, 82, 130, 0.8); }
.r-play:focus-visible { outline: 2px solid var(--gold); outline-offset: 4px; }
.r-frame.playing .r-play { display: none; }

.r-text { padding: 22px 24px 24px; }
.r-hook {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--plum);
  margin: 0 0 8px;
}
.r-title {
  margin: 0;
  font-family: var(--serif);
  font-weight: normal;
  font-size: 25px;
  line-height: 1.3;
  color: var(--deep-blue);
}
.r-caption {
  margin: 12px 0 0;
  font-size: 19px;
  line-height: 1.6;
}
.r-meta {
  margin: 16px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--nude);
  font-size: 14px;
  color: var(--muted);
}
