/* ============================================================
   Calder's Shorts — Section Styles
   File: /assets/css/shorts.css

   Assumes author-base.css is loaded first (tokens + layout).
   Uses existing CSS variables:
   --bg-0, --bg-1, --ink, --muted, --gold, --line,
   --archive-red, etc.
   ============================================================ */

/* ---- Page-level tweaks ---- */

.page-shorts .entry-box.author,
.page-short-single .entry-box.author{
  margin-top: 24px;
}

/* Give shorts pages a slightly “ember” tint without fighting base theme */
.page-shorts .entry-box.author,
.page-short-single .entry-box.author{
  background: linear-gradient(
    135deg,
    rgba(10,10,11,0.80),
    rgba(10,10,11,0.90)
  );
}

/* Tighten copy width slightly for readability */
.page-shorts .copy,
.page-short-single .copy{
  max-width: 72ch;
  margin: 0 auto;
}

/* Headline alignment */
.page-shorts h1,
.page-short-single h1{
  font-family: "Cinzel Decorative", serif;
  letter-spacing: .04em;
  margin-bottom: .35rem;
}

/* Subtitle / tagline below H1 */
.short-subtitle{
  margin:.15rem 0 .25rem;
  font-family:"IBM Plex Serif", serif;
  font-style:italic;
  color:var(--muted);
}

/* Small metadata line above/below headings */
.short-meta,
.release-note{
  font-family:"Unica One", system-ui, sans-serif;
  letter-spacing:.08em;
  font-size:12px;
  text-transform:uppercase;
  color:var(--muted);
}

/* ---- Index list ---- */

.shorts-list{
  display:flex;
  flex-direction:column;
  gap:18px;
}

/* Individual story card */
.short-card{
  padding:18px 16px 14px;
  border-radius:12px;
  background:rgba(10,10,11,0.70);
  border:1px solid var(--line);
  position:relative;
  overflow:hidden;
}

/* Ember accent bar */
.short-card::before{
  content:"";
  position:absolute;
  inset:-1px auto -1px 0;
  width:3px;
  background:var(--archive-red);
  box-shadow:0 0 12px rgba(123,12,12,0.65);
}

/* Title link */
.short-card h2{
  margin:0 0 .15rem;
  font-size:1.1rem;
}
.short-card h2 a{
  color:var(--ink);
  text-decoration:none;
}
.short-card h2 a:hover,
.short-card h2 a:focus-visible{
  color:var(--gold);
  text-shadow:0 0 6px rgba(224,184,74,0.45);
  outline:none;
}

/* Summary paragraph */
.short-summary{
  margin:.4rem 0 .6rem;
  color:var(--ink);
}

/* Read link row (re-uses blog button style if present) */
.short-card .read-row{
  margin-top:.25rem;
}
.short-card .read-post{
  font-family:"Unica One", system-ui, sans-serif;
  font-size:13px;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:var(--gold);
  text-decoration:none;
}
.short-card .read-post:hover,
.short-card .read-post:focus-visible{
  color:#fff3c2;
  text-shadow:0 0 6px rgba(224,184,74,0.55);
  outline:none;
}

/* ---- Content warnings ---- */

.short-warnings{
  margin:.35rem 0 .2rem;
  font-size:.82rem;
  color:var(--muted);
}

.short-warnings .tag{
  display:inline-block;
  margin:0 .25em 0 0;
  padding:.05em .4em;
  border-radius:999px;
  background:rgba(123,12,12,0.25); /* archive red, softened */
  border:1px solid rgba(123,12,12,0.65);
  font-size:.74rem;
  text-transform:uppercase;
  letter-spacing:.09em;
}

/* ---- Single story body ---- */

.short-body{
  margin-top:.5rem;
  line-height:1.7;
}

/* Space paragraphs but keep them tight enough for screen */
.short-body p{
  margin:.7rem 0;
}

/* Emphasize breaks between scenes */
.short-body hr{
  border:0;
  height:1px;
  margin:1.4rem auto;
  width:75%;
  background:linear-gradient(90deg, transparent, var(--line), transparent);
}

/* ---- Prev / Next navigation ---- */

.short-nav{
  display:flex;
  flex-direction:column;
  gap:.25rem;
  font-size:.9rem;
}

.short-nav p{
  margin:.1rem 0;
}

.short-nav a{
  color:var(--gold);
  text-decoration:none;
}
.short-nav a:hover,
.short-nav a:focus-visible{
  color:#fff3c2;
  text-shadow:0 0 6px rgba(224,184,74,0.5);
  outline:none;
}

/* ---- Responsive adjustments ---- */

@media (max-width: 820px){
  .short-card{
    padding:14px 12px 12px;
  }
  .short-card::before{
    width:2px;
  }
  .short-summary{
    font-size:.95rem;
  }
  .short-warnings{
    font-size:.78rem;
  }
  .short-warnings .tag{
    font-size:.7rem;
  }
  .page-shorts .copy,
  .page-short-single .copy{
    max-width:100%;
  }
}

@media (min-width: 1024px){
  /* Two-column grid option for index if list gets long */
  .page-shorts .shorts-list{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
  }
  .page-shorts .shorts-list .hr-archive{
    display:none;
  }
}

/* Optional: soft glow behind the banner text on single/index pages
   if you ever overlay text on the hero image directly.
*/
.page-shorts .author-hero,
.page-short-single .author-hero{
  position:relative;
}
.page-shorts .author-hero::after,
.page-short-single .author-hero::after{
  content:"";
  position:absolute;
  inset:auto 0 0 0;
  height:40%;
  background:linear-gradient(
    180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,0.75) 100%
  );
  pointer-events:none;
}

/* -------------------------------------------------------
   Website Note Block (Index Page Only)
   ------------------------------------------------------- */

.shorts-note-block{
  margin-top: 32px;
  padding: 24px 18px;
  background: rgba(10,10,11,0.65);
  border: 1px solid var(--line);
  border-radius: 12px;
  max-width: 70ch;
  margin-left: auto;
  margin-right: auto;
}

.shorts-note{
  font-size: .95rem;
  line-height: 1.55;
  color: var(--muted);
  font-style: italic;
}

.shorts-note strong{
  color: var(--ink);
  font-style: normal;
}

/* -------------------------------------------------------
   Age Gate
   ------------------------------------------------------- */

.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.86);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 1.5rem;
}

.age-gate-modal {
  max-width: 480px;
  width: 100%;
  background: rgba(5, 5, 10, 0.96);
  border-radius: 12px;
  border: 1px solid var(--gold, #e0b84a);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
  padding: 1.75rem 1.5rem 1.5rem;
  text-align: center;
}

.age-gate-modal h2 {
  font-family: 'Unica One', system-ui, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--gold, #e0b84a);
  margin-bottom: 0.75rem;
}

.age-gate-text {
  font-family: 'IBM Plex Serif', Georgia, serif;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #f5f1e6;
  margin-bottom: 1.4rem;
}

.age-gate-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.age-gate-btn {
  display: inline-block;
  padding: 0.55rem 1.3rem;
  border-radius: 999px;
  font-size: 0.95rem;
  font-family: 'Unica One', system-ui, sans-serif;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid var(--gold, #e0b84a);
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.age-gate-btn.primary {
  background: var(--gold, #e0b84a);
  color: #121216;
}

.age-gate-btn.secondary {
  background: transparent;
  color: var(--gold, #e0b84a);
}

.age-gate-btn:hover,
.age-gate-btn:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 0 14px rgba(0, 0, 0, 0.7);
}

.age-gate-noscript {
  background: #3b1515;
  color: #fbeae8;
  padding: 0.9rem 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

/* ============================================================
   Override: keep shorts list single-column on all screens
   and support expandable <details> cards
   ============================================================ */

/* Force a vertical stack even on wide screens */
@media (min-width: 1024px){
  .page-shorts .shorts-list{
    display:flex;
    flex-direction:column;
    gap:18px;
  }
  /* Re-allow any hr-archive elements inside the list */
  .page-shorts .shorts-list .hr-archive{
    display:block;
  }
}

/* Make .short-card work as a <details> element */
.short-card{
  padding:18px 16px 14px;
  border-radius:12px;
  background:rgba(10,10,11,0.70);
  border:1px solid var(--line);
  position:relative;
  overflow:hidden;
}

/* Header row that stays visible and clickable */
.short-card > summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  gap:2px;
}

/* Hide the default disclosure triangle */
.short-card > summary::-webkit-details-marker{
  display:none;
}

/* Optional: small visual hint that the card is expandable */
.short-card > summary::after{
  content:"Click to expand";
  font-family:"Unica One", system-ui, sans-serif;
  font-size:11px;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:var(--muted);
  margin-top:4px;
}

/* When open, change border/glow slightly */
.short-card[open]{
  border-color:var(--gold);
  box-shadow:0 0 14px rgba(224,184,74,0.22);
}

/* Body of the card that appears only when open */
.short-card-body{
  margin-top:.6rem;
  padding-top:.45rem;
  border-top:1px solid rgba(255,255,255,0.06);
}

/* Keep summary, warnings, and read link visually tied */
.short-card-body .short-summary{
  margin:.35rem 0 .55rem;
}

.short-card-body .short-warnings{
  margin:.2rem 0 .3rem;
}

/* Slightly tighter on phones */
@media (max-width: 820px){
  .short-card{
    padding:14px 12px 12px;
  }
  .short-card > summary::after{
    font-size:10px;
  }
}

/* ============================================================
   Shorts index overrides: single column + expandable cards
   ============================================================ */

/* 1) Force a single-column stack even on wide screens */
@media (min-width: 1024px){
  .page-shorts .shorts-list{
    display:flex;
    flex-direction:column;
    gap:18px;
  }
  /* Re-enable the dividers between cards */
  .page-shorts .shorts-list .hr-archive{
    display:block;
  }
}

/* 2) Make .short-card behave as a <details> accordion */
.short-card > summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  gap:2px;
}

/* Hide the default disclosure triangle */
.short-card > summary::-webkit-details-marker{
  display:none;
}

/* Hint text under the header: closed state */
.short-card > summary::after{
  content:"Click to expand";
  font-family:"Unica One", system-ui, sans-serif;
  font-size:11px;
  letter-spacing:.09em;
  text-transform:uppercase;
  color:var(--muted);
  margin-top:4px;
}

/* When the card is open, change hint + accent */
.short-card[open] > summary::after{
  content:"Click to collapse";
  color:var(--gold);
}

.short-card[open]{
  border-color:var(--gold);
  box-shadow:0 0 14px rgba(224,184,74,0.22);
}

/* Body of the card that appears only when open */
.short-card-body{
  margin-top:.6rem;
  padding-top:.45rem;
  border-top:1px solid rgba(255,255,255,0.06);
}

/* Slightly tighter on phones */
@media (max-width: 820px){
  .short-card > summary::after{
    font-size:10px;
  }
}
/* ============================================================
   Cover Reveal - Project Stenn
   ============================================================ */
.cover-reveal {
  margin: 3rem 0;
  text-align: center;
}

.cover-reveal h2 {
  color: var(--gold);
  font-family: 'Cinzel Decorative', serif;
  margin-bottom: 1rem;
  font-weight: 600;
}

.cover-figure {
  margin: 0 auto;
  max-width: 450px; /* keeps the cover at a sane size */
}

.cover-figure img.stenn-cover {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0,0,0,.5);
}

/* Blurb Section — LEFT aligned */
.stenn-blurb {
  margin: 2.5rem auto;
  max-width: 650px;
  color: var(--ink);
  text-align: left; /* key */
  line-height: 1.7;
}

.stenn-blurb h3 {
  color: var(--gold);
  margin-bottom: .5rem;
  font-family: 'Cinzel Decorative', serif;
}

.pre-reveal-note {
  max-width: 650px;
  margin: 3rem auto 2rem;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: left;
  padding-left: .2rem;
  padding-right: .2rem;
}

.pre-reveal-note p {
  margin: 0;
}
/* Shorts Tag Line */
.shorts-tagline {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.95;
  margin-top: 0.5rem;
  margin-bottom: 2.4rem;
}

/* Calder Bare teaser on Shorts index */

.bare-teaser {
  margin: 4rem auto 0;
  max-width: 980px;
  padding: 0 1.5rem 4rem;
}

.bare-teaser-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background-image: url('/images/calder_bare_button.webp');
  background-size: cover;
  background-position: center center;
  box-shadow:
    0 0 24px rgba(0, 0, 0, 0.9),
    0 0 48px rgba(0, 0, 0, 0.9);
  text-decoration: none;
}

.bare-teaser-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(0, 0, 0, 0.85),
      rgba(180, 0, 60, 0.72),
      rgba(0, 0, 0, 0.85)
    );
  mix-blend-mode: normal;
}

.bare-teaser-overlay {
  position: relative;
  padding: 2.5rem 2rem;
  text-align: center;
  color: #ffe8ff;
}

.bare-teaser-title {
  margin: 0 0 0.5rem;
  font-family: var(--display-font, 'Unica One', system-ui, sans-serif);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.1rem;
  color: #ff8dbc;
}

.bare-teaser-line {
  margin: 0 0 0.8rem;
  font-family: var(--body-font, 'IBM Plex Serif', Georgia, serif);
  font-size: 0.95rem;
  line-height: 1.6;
}

.bare-teaser-warning {
  margin: 0 0 0.6rem;
  font-size: 0.86rem;
  color: #ffd2e0;
}

.bare-teaser-warning span {
  font-weight: 600;
}

.bare-teaser-cta {
  margin: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffb770;
}

.bare-teaser-card:hover .bare-teaser-overlay {
  transform: translateY(-1px);
  transition: transform 0.18s ease;
}

/* -------------------------------------------------------
   Featured Spotlight Short (index page)
   ------------------------------------------------------- */

.shorts-spotlight-block{
  margin-top: 26px;
  margin-bottom: 28px;
}

/* Outer card */
.shorts-spotlight{
  display: flex;
  gap: 22px;
  align-items: stretch;
  padding: 24px 22px;
  border-radius: 22px;
  background: linear-gradient(
    135deg,
    rgba(6, 6, 8, 0.98),
    rgba(14, 10, 12, 0.98)
  );
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 0 24px #000a;
}

/* Image column – force landscape */
.shorts-spotlight-media{
  flex: 0 0 44%;
  max-width: 460px;
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
}

.shorts-spotlight-media img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

/* Copy column */
.shorts-spotlight-copy{
  flex: 1 1 auto;
}

/* Title + text styling */
.shorts-spotlight-title{
  margin: 0 0 .35rem;
  font-family: "Cinzel Decorative", serif;
  font-size: 1.6rem;
  letter-spacing: .04em;
}

.shorts-spotlight-kicker{
  margin: 0 0 .65rem;
  font-family: "IBM Plex Serif", serif;
  font-style: italic;
  color: var(--muted);
}

.shorts-spotlight-text{
  margin: 0 0 .75rem;
  line-height: 1.7;
  color: var(--ink);
}

.shorts-spotlight-meta{
  margin: 0 0 .55rem;
  font-family: "Unica One", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Read link */
.shorts-spotlight-link .read-post{
  font-family: "Unica One", system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
}

.shorts-spotlight-link .read-post:hover,
.shorts-spotlight-link .read-post:focus-visible{
  color: #fff3c2;
  text-shadow: 0 0 6px rgba(224,184,74,0.55);
  outline: none;
}

/* Responsive stack */
@media (max-width: 900px){
  .shorts-spotlight{
    flex-direction: column;
    padding: 20px 16px;
  }

  .shorts-spotlight-media{
    flex-basis: auto;
    max-width: 100%;
    height: 230px;
  }
}

@media (max-width: 540px){
  .shorts-spotlight-media{
    height: 210px;
  }
  .shorts-spotlight-title{
    font-size: 1.35rem;
  }
}
/* -------------------------------------------------------
   Spotlight – Top Image Layout
   ------------------------------------------------------- */

.shorts-spotlight.vertical {
  display: flex;
  flex-direction: column;
  align-items: center;      /* <-- THIS centers the image container */
  padding: 24px 22px;
}

.shorts-spotlight-media.top-image {
  width: 100%;
  height: 300px;              /* nice wide banner */
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 20px;
}

.shorts-spotlight-media.top-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* -------------------------------------------------------
   Editor Spotlight - Evan Rook
   ------------------------------------------------------- */

/* Evan Rook — palette alignment with Editorial Notice */

.evan-afterword{
  background:
    radial-gradient(
      circle at top left,
      rgba(70,120,130,.18),
      rgba(0,0,0,.65) 55%
    );
  border: 1px solid rgba(90,160,170,.35);
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.04),
    0 0 22px rgba(60,120,130,.18);
}

/* Header line */
.evan-afterword__kicker{
  color: rgba(140,210,215,.85);
}

.evan-afterword__name{
  color: rgba(200,230,232,.95);
}

/* Main text */
.evan-afterword__shot{
  color: rgba(235,245,246,.92);
}

/* Links */
.evan-afterword__links{
  color: rgba(200,230,232,.85);
}

.evan-afterword__links a{
  color: rgba(140,210,215,.9);
  border-bottom-color: rgba(140,210,215,.35);
}

.evan-afterword__links a:hover{
  border-bottom-color: rgba(140,210,215,.85);
}

/* Separator dot */
.evan-afterword__links .sep{
  color: rgba(140,210,215,.45);
}

/* Evan Afterword — spacing correction */

.evan-afterword{
  margin: 2.75rem auto 2.5rem; /* more separation from story */
  padding: 1.6rem 1.75rem 1.7rem;
}

/* Header spacing */
.evan-afterword__header{
  margin-bottom: 1.1rem;
}

/* The actual editorial shot */
.evan-afterword__shot{
  margin: 0 0 1.35rem; /* space before links */
  line-height: 1.65;   /* slow the read slightly */
}

/* Links should feel like an exit, not a clause */
.evan-afterword__links{
  margin-top: .25rem;
  padding-top: .75rem;
  border-top: 1px solid rgba(140,210,215,.18);
}

/* Porn with Plot teaser on Shorts index */

.pwp-teaser {
  margin: 4rem auto 0;
  max-width: 980px;
  padding: 0 1.5rem 4rem;
}

.pwp-teaser-card {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background-image: url('/images/porn_with_plot_button.webp'); /* NEW IMAGE */
  background-size: cover;
  background-position: center center;
  box-shadow:
    0 0 24px rgba(0, 0, 0, 0.9),
    0 0 48px rgba(0, 0, 0, 0.9);
  text-decoration: none;
  cursor: pointer;
}

/* Teal, restrained overlay — not red-light : Porn with Plot*/
.pwp-teaser-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      120deg,
      rgba(0, 0, 0, 0.88),
      rgba(90, 164, 163, 0.52), /* #5aa4a3 */
      rgba(0, 0, 0, 0.88)
    );
  mix-blend-mode: normal;
}

.pwp-teaser-overlay {
  position: relative;
  padding: 2.5rem 2rem;
  text-align: center;
  color: #e6f4f3;
}

.pwp-teaser-title {
  margin: 0 0 0.5rem;
  font-family: var(--display-font, 'Unica One', system-ui, sans-serif);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 1.1rem;
  color: #8fd6d4; /* lighter teal highlight */
}

.pwp-teaser-line {
  margin: 0 0 0.8rem;
  font-family: var(--body-font, 'IBM Plex Serif', Georgia, serif);
  font-size: 0.95rem;
  line-height: 1.6;
}

.pwp-teaser-warning {
  margin: 0 0 0.6rem;
  font-size: 0.86rem;
  color: #cfeeed;
}

.pwp-teaser-cta {
  margin: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #5aa4a3;
  text-shadow: 0 0 1px rgba(255, 255, 255, 0.35);
}

.pwp-teaser-card:hover .pwp-teaser-overlay {
  color: #e6f4f3;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.45);
}

/* ============================================================
   Tip Jar (Calder Shorts) — centered + mobile column
   ============================================================ */

.page-shorts .tip-jar {
  margin: 2.25rem auto 0;
  max-width: 72ch; /* matches your copy width intent */
  text-align: center;
}

.page-shorts .tip-intro {
  margin: 0 auto 0.9rem;
  max-width: 60ch;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
  font-style: italic;
}

/* Reuse your base .btn-row/.btn styling but tighten spacing slightly */
.page-shorts .tip-jar .btn-row {
  padding: 10px 0 0;
  gap: 10px;
}

/* Mobile: force a clean single column, centered */
@media (max-width: 640px) {
  .page-shorts .tip-jar .btn-row {
    flex-direction: column;
    align-items: center;
  }

  /* Full-width buttons inside the copy column for thumb-friendly taps */
  .page-shorts .tip-jar .btn {
    width: 100%;
    max-width: 420px; /* prevents absurdly wide buttons on larger phones */
  }
}

.page-shorts .tip-jar .btn.tip-custom {
  box-shadow: 0 0 16px rgba(156,124,255,0.22);
}

/* ============================================================
   Tip Jar — make buttons feel native to Shorts page (not index)
   ============================================================ */

.page-shorts .tip-jar .btn-row{
  gap: 12px;
  padding-top: 6px;
}

/* Override global .btn just inside the tip jar */
.page-shorts .tip-jar .btn{
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;

  /* De-indexify: kill the gold brick look */
  background: rgba(0,0,0,0.35);
  border: 1px solid rgba(220, 200, 120, 0.35);
  color: rgba(240, 232, 210, 0.92);

  box-shadow: none;
  min-height: unset;
}

/* Hover: subtle, not CTA-loud */
.page-shorts .tip-jar .btn:hover{
  background: rgba(255,255,255,0.06);
  border-color: rgba(220, 200, 120, 0.55);
  color: rgba(255,255,255,0.95);
}

/* Custom tip: distinct, but still within the page’s language */
.page-shorts .tip-jar .btn.tip-custom{
  border-color: rgba(156, 124, 255, 0.55);
  background: rgba(156, 124, 255, 0.10);
  color: rgba(235, 228, 255, 0.98);
  font-style: italic;
}

.page-shorts .tip-jar .btn.tip-custom:hover{
  background: rgba(156, 124, 255, 0.18);
  border-color: rgba(156, 124, 255, 0.85);
}

/* Mobile: slightly tighter and full-width already handled by your earlier rules */
@media (max-width: 640px){
  .page-shorts .tip-jar .btn{
    padding: 12px 14px;
    font-size: 0.86rem;
  }
}



