:root {
  /* 🎨 THE ONLY 3 YOU CHANGE */
  --bg: #f7d9ef;
  --ink: #241039;
  --accent: #d892ff;
  --mint: #b9f7df;
  --sky: #b9d7ff;
  --peach: #ffd6df;
  --font-main:
    "Truculenta", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-alt:
    "Quicksand", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;

  /* derived theme tokens (don’t edit) */
  --surface: rgba(255, 255, 255, 0.34);
  --surface-2: rgba(255, 255, 255, 0.26);
  --glass-strong: rgba(255, 255, 255, 0.46);
  --glass-soft: rgba(255, 255, 255, 0.22);
  --muted: color-mix(in srgb, var(--ink) 58%, white);
  --border: rgba(255, 255, 255, 0.58);

  --accent-ink: color-mix(in srgb, var(--ink) 70%, #7a1f45);
  --accent-soft: color-mix(in srgb, var(--accent) 18%, white);
  --accent-outline: color-mix(in srgb, var(--accent) 55%, transparent);

  --danger: #c43b58;

  --radius: 22px;

  --shadow: 0 24px 70px rgba(87, 52, 124, 0.18);
  --shadow-soft: 0 10px 28px rgba(87, 52, 124, 0.12);
  --inner-glow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-main);
  color: var(--ink);

  background:
    radial-gradient(
      circle at 12% 22%,
      rgba(255, 255, 255, 0.46) 0 58px,
      transparent 59px
    ),
    radial-gradient(
      circle at 88% 18%,
      rgba(255, 255, 255, 0.34) 0 14px,
      transparent 15px
    ),
    radial-gradient(
      circle at 78% 84%,
      rgba(255, 252, 214, 0.46) 0 120px,
      transparent 121px
    ),
    radial-gradient(
      circle at 10% 82%,
      rgba(148, 92, 255, 0.55) 0 90px,
      transparent 91px
    ),
    linear-gradient(135deg, #ffd7e7 0%, #edccff 38%, #c7dcff 68%, #c5f7e2 100%);
  background-attachment: fixed;
}

/* soft floating color blobs behind the UI */
body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: -1;
  border-radius: 999px;
  filter: blur(32px);
  opacity: 0.75;
}

body::before {
  width: 260px;
  height: 260px;
  top: 110px;
  right: -70px;
  background: radial-gradient(circle, #7e4dff 0%, rgba(126, 77, 255, 0) 68%);
}

body::after {
  width: 230px;
  height: 230px;
  bottom: 80px;
  left: -80px;
  background: radial-gradient(circle, #f7a5e8 0%, rgba(247, 165, 232, 0) 70%);
}

.noteInput {
  width: 100%;
  min-height: 120px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 12px;
  font: inherit;
  resize: vertical;
  box-sizing: border-box;
  font-size: 20px;
}

.topbar {
  position: relative;
  top: 0;
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  box-shadow: var(--inner-glow);
  padding: 12px 14px 10px;
  z-index: 10;
}

#menuBtn {
  grid-column: 1;
  justify-self: start;
}

.title {
  grid-area: title;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  min-width: 0;
}

.site-logo,
.share-site-logo {
  display: block;
  width: min(250px, 90vw);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(87, 52, 124, 0.16));
}

.share-site-logo {
  width: min(380px, 80vw);
  margin-bottom: 0px;
}

.subtitle {
  margin: 0 0 10px;
  color: var(--muted);
  font-family: var(--font-alt);
  font-size: 18px;
  text-align: center;
}

.slogan {
  margin: 0;
  color: var(--muted);
  font-family: var(--font-alt);
  font-size: 12px;
}

.about-card .slogan {
  font-weight: 600;
  text-align: center;
}

.weekly-share-title,
.monthHeader h2 {
  font-family: "Truculenta", sans-serif;
  font-weight: 600;
}

.controls {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: start;
  width: 100%;
}

.strike-word {
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  padding: 1px;
}

/* Center column */
.nav-stack {
  grid-column: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 10px;
}

.navigate {
  grid-column: 2;
  display: flex;
  gap: 8px;
}

.controls.secondary {
  grid-area: secondary;
  display: none;
  margin-top: 3px;
}

#secondaryControls {
  display: none;
}

#secondaryControls.is-visible {
  display: flex;
  justify-content: center;
  margin-top: 6px;
}

.container {
  padding: 8px;
  max-width: 980px;
  margin: 0 auto;
}

.btn,
.select,
.search {
  font-family: var(--font-main);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.3);
  color: var(--ink);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--inner-glow);
  border-radius: 999px;
  min-height: 30px;
  padding: 0 6px;
  font-size: 18px;
  line-height: 1;
}

.modalDateRow {
  display: flex;
  align-items: center;
  gap: 10px;
}

.topbar-actions {
  grid-column: 3;
  justify-self: end;
  display: flex;
  gap: 8px;
}

.icon-btn {
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  color: var(--muted);
}

.icon-btn i {
  font-size: 16px;
  line-height: 1;
}

.image-btn {
  width: 46px;
  height: 46px;
  min-height: 46px;
  padding: 0;

  border: none;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.image-btn img {
  width: 28px;
  height: 28px;
  display: block;
  object-fit: contain;
}

.btn {
  cursor: pointer;
}

.btn:active {
  transform: translateY(1px);
}

/* .btn-primary {
  border-color: color-mix(in srgb, var(--accent) 55%, var(--border));
  background: color-mix(in srgb, var(--accent) 14%, var(--surface));
} */

.btn-danger {
  border-color: color-mix(in srgb, var(--danger) 55%, var(--border));
  background: color-mix(in srgb, var(--danger) 12%, var(--surface));
}

.fileBtn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.view {
  margin-top: 4px;
}

.hidden {
  display: none !important;
}

/* cards */
.card {
  font-family: var(--font-main);
  background: rgba(255, 255, 255, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  box-shadow: var(--shadow), var(--inner-glow);
  backdrop-filter: blur(24px) saturate(135%);
  -webkit-backdrop-filter: blur(24px) saturate(135%);
}

.about-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 16px;
}

.about-container h1 {
  margin-bottom: 16px;
  text-align: center;
  font-size: 33px;
  letter-spacing: 0.2px;
  color: var(--accent-ink);
}

.about-card {
  background: var(--card);
  /* background-color: #fefbfc; */
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  padding-bottom: 5px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.meet-the-artists-card {
  border-radius: var(--radius);
  padding: 0 10px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow), var(--inner-glow);
  text-align: center;
  font-size: 14px;
}

/* .meet-the-artists-card p {
  margin-bottom: 0;
} */

.about-card p {
  font-size: 18px;
}

#artistHeader {
  margin-bottom: 16px;
}

.tagline {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.about-card h2 {
  margin-top: 20px;
  margin-bottom: 8px;
  font-size: 22px;
}

.about-card li {
  list-style: none;
  position: relative;
  padding-left: 20px;
  margin-bottom: 8px;
  font-size: 18px;
}

.about-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;

  width: 14px;
  height: 14px;

  background-image: url("/assets/img/star.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.back-link {
  margin-top: 18px;
  font-size: 1.2rem;
  text-align: center;
}

.site-footer {
  padding: 1px 16px;
  padding-bottom: 5px;
  text-align: center;
  font-family: var(--font-alt);
  font-size: 0.75rem;
  color: var(--muted);
  /* border-top: 1px solid var(--border); */
}

.site-footer p {
  margin: 4px 0;
}

.site-footer a {
  color: var(--accent-ink);
  text-decoration: underline;
}

.footer-buttons {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 1px 16px 12px;
}

.bmc-button,
.instagram-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 4px 8px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.78);

  background: rgba(255, 255, 255, 0.34);
  color: var(--ink);
  font-family: "Truculenta", var(--font-alt);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 6px 16px rgba(87, 52, 124, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transition: transform 0.15s ease;
}

.bmc-button:active,
.instagram-button:active {
  transform: translateY(1px);
}

.bmc-emoji,
.instagram-icon {
  height: 1rem;
  width: auto;
  display: block;
}

@media (max-width: 480px) {
  .footer-buttons {
    gap: 8px;
  }

  .bmc-button,
  .instagram-button {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
}

/* tapir */

.monthHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 14px 10px;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.monthHeader h2 {
  margin: 0;
  font-size: 22px;
  color: var(--accent-ink);
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.35);
}

.monthHeader .small {
  color: var(--muted);
  font-size: 15px;
}

.monthHeaderMeta {
  width: fit-content;
  margin-top: 5px;
  padding: 0.25rem 0.45rem;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 6px 18px rgba(87, 52, 124, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  color: #241039;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1;
}

.weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  padding: 10px 10px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.weekdays div {
  text-align: center;
  padding: 6px 0;
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding: 10px;
  width: 100%;
}

@media (min-width: 551px) {
  .calendar {
    grid-auto-rows: 103px;
    /* grid-auto-rows: 87px; */
  }

  .day {
    min-height: 0;
  }

  .stickerSlot img {
    width: auto;
    height: auto;
    max-width: 44px;
    max-height: 44px;
  }
}

.day {
  font-family: var(--font-alt);
  font-weight: 400;
  min-height: 78px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--inner-glow);
  padding: 2px;
  position: relative;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
  overflow: hidden;
}

.day:active {
  transform: translateY(1px);
}

/* .day:hover {
  box-shadow: var(--shadow-soft);
} */

.day .num {
  font-size: 12px;
  color: var(--muted);
}

.day.today {
  outline: 2px solid var(--accent-outline);
  box-shadow:
    0 0 0 3px color-mix(in srgb, var(--accent) 20%, transparent),
    var(--shadow-soft),
    var(--inner-glow);
}

.day.outside {
  opacity: 0.45;
}

.stickerSlot {
  flex: 1;
  display: grid;
  place-items: center;
  padding: 2px;
  min-height: 0;
}

.stickerSlot img {
  width: min(44px, 80%);
  height: min(44px, 80%);
  object-fit: contain;
  display: block;
}

/* tapir */

/* Year view */
.yearCard {
  overflow: hidden;
}

.header-icon-actions.year-header-actions {
  display: grid !important;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;

  width: 100%;
  margin: 0;
  padding: 14px 14px 10px;

  border-bottom: 1px solid var(--border);
  border-radius: 0;

  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  box-shadow: none;
}

.header-icon-actions.year-header-actions h2 {
  grid-column: 1;
  justify-self: start;

  margin: 0;
  font-family: "Truculenta", sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--accent-ink);
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.35);
}

.year-sticker-count {
  grid-column: 2;
  justify-self: center;

  /* color: var(--muted); */
  font-size: 16px;
  white-space: nowrap;
}

.year-action-buttons {
  grid-column: 3;
  justify-self: end;

  display: flex;
  align-items: center;
  gap: 8px;
}

.yearGrid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 10px;
  padding: 10px;
}

.miniMonth {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  background: var(--surface);
  box-shadow: none;
}

.miniMonthTitle {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 500;
}

.miniCal {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.miniDay {
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
  line-height: 1;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--surface);
  height: 44px;
  min-height: 44px;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  cursor: pointer;
  align-content: end;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.miniDay img {
  width: auto;
  height: auto;
  max-width: 78%;
  max-height: 31px;
  object-fit: contain;
  display: block;
}

.miniDay.empty {
  opacity: 0.35;
  cursor: default;
}

.miniNum {
  position: absolute;
  top: 4px;
  left: 6px;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1;
  pointer-events: none;
  z-index: 2;
}

@media (min-width: 720px) {
  .yearGrid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 440px) {
  .header-icon-actions.year-header-actions {
    grid-template-columns: auto 1fr auto;
    gap: 8px;
    /* padding: 12px 10px 8px; */
  }

  .header-icon-actions.year-header-actions h2 {
    font-size: 22px;
  }

  .year-sticker-count {
    font-size: 16px;
    text-align: center;
  }

  .year-action-buttons {
    gap: 6px;
  }

  .yearGrid {
    padding: 8px;
    gap: 8px;
  }

  .miniMonth {
    padding: 7px;
  }

  .miniDay {
    height: 42px;
    min-height: 42px;
  }

  .miniDay img {
    max-height: 29px;
  }
}

/* First Visit Welcome Card */

.welcome-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    radial-gradient(
      circle at 18% 18%,
      rgba(255, 255, 255, 0.5),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 76%,
      rgba(216, 146, 255, 0.38),
      transparent 32%
    ),
    rgba(36, 16, 57, 0.46);
  /* backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px); */
}

.welcome-card {
  position: relative;
  width: min(100%, 460px);
  max-height: 92vh;
  overflow-y: auto;
  padding: 24px 20px 20px;
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.78),
      rgba(255, 255, 255, 0.42)
    ),
    linear-gradient(135deg, #ffd6e8, #d7c7ff, #bff4e6);
  box-shadow:
    0 26px 80px rgba(36, 16, 57, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  color: #241039;
  text-align: center;
}

.welcome-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: rgba(36, 16, 57, 0.72);
  font: inherit;
  font-size: 18px;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.welcome-badge {
  width: fit-content;
  margin: 0 auto 12px;
  padding: 5px 12px 4px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.72);
  font-family: var(--font-alt);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(36, 16, 57, 0.66);
}

.welcome-card h1 {
  margin: 0 auto 10px;
  max-width: 333px;
  font-family: var(--font-main);
  /* font-size: clamp(2.25rem, 11vw, 4rem); */
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: #241039;
}

.welcome-lede {
  max-width: 360px;
  margin: 0 auto 8px;
  font-family: var(--font-alt);
  font-size: 17px;
  line-height: 1.45;
  color: rgba(36, 16, 57, 0.75);
}

.welcome-preview {
  margin: 0 auto;
  padding: 6px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow:
    0 12px 30px rgba(87, 52, 124, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.welcome-mini-calendar {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5px 7px;
}

.welcome-mini-calendar div {
  min-height: 46px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.7);
  font-family: var(--font-alt);
  font-size: 19px;
  font-weight: 700;
  color: rgba(36, 16, 57, 0.68);
}

.welcome-mini-calendar div:nth-child(-n + 5) {
  min-height: auto;
  /* padding: 6px 0; */
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: transparent;
  border: 0;
  color: rgba(36, 16, 57, 0.5);
}

.welcome-points {
  display: grid;
  gap: 8px;
  margin: 8px 0;
  text-align: left;
}

.welcome-points div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.62);
}

.welcome-points span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(254, 135, 204, 0.24);
  color: #8d2c67;
  font-family: var(--font-alt);
  font-size: 12px;
  font-weight: 900;
}

.welcome-points p {
  margin: 0;
  font-family: var(--font-alt);
  font-size: 15px;
  line-height: 1.3;
  color: rgba(36, 16, 57, 0.78);
}

.welcome-note {
  margin: 0 0 8px;
  padding: 6px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.35);
  font-family: var(--font-alt);
  font-size: 14px;
  line-height: 1.45;
  color: rgba(36, 16, 57, 0.68);
}

.welcome-cta {
  width: 100%;
  min-height: 39px;
  border: 0;
  border-radius: 999px;
  background: #654487;
  color: #fff;
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 800;
  cursor: pointer;
  box-shadow:
    0 14px 28px rgba(254, 135, 204, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.welcome-skip {
  margin-top: 12px;
  border: 0;
  background: transparent;
  color: rgba(36, 16, 57, 0.58);
  font-family: var(--font-alt);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

.welcome-cta:active,
.welcome-skip:active,
.welcome-close:active {
  transform: translateY(1px);
}

.welcome-sticker {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  min-height: 0;
}

.welcome-sticker img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 48px;
  max-height: 48px;
  object-fit: contain;
}

@media (max-width: 420px) {
  /* .welcome-overlay {
    padding: 12px;
    place-items: end center;
  } */

  .welcome-card {
    border-radius: 30px;
    padding: 22px 16px 18px;
  }

  .welcome-card h1 {
    font-size: 1.8rem;
  }

  .welcome-lede {
    font-size: 16px;
  }

  .welcome-mini-calendar div {
    min-height: 40px;
  }
}

/* Modal */
.overlay {
  position: fixed;
  inset: 0;
  background: color-mix(
    in srgb,
    black 55%,
    color-mix(in srgb, var(--accent) 18%, transparent)
  );
  display: grid;
  place-items: start center;
  padding: 7px;
  overflow-y: auto;
  z-index: 9999;
}

@media (min-width: 720px) {
  .overlay {
    place-items: start center;
    padding: 40px 7px;
  }

  .modal {
    max-height: calc(100vh - 80px);
    max-height: calc(100dvh - 80px);
  }
}

.modal {
  width: min(980px, 100%);
  max-height: 86vh;
  overflow-x: hidden;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 94%, transparent);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.18),
    var(--shadow);
}

.modalHeader {
  position: sticky;
  top: 0;
  z-index: 5;

  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;

  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.modalHeaderActions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.modalDate {
  color: var(--accent-ink);
  font-size: 22px;
  font-weight: 700;
}

.modalHint {
  display: none;
  margin-top: 2px;
  color: var(--muted);
  font-size: 16px;
}

/* Sticker picker header only */
.stickerPickerHeader {
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  gap: 10px;
  padding: 8px 10px 10px;
}

.stickerPickerHeaderRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 8px;
  width: 100%;
}

.stickerPickerHeaderRow > :first-child {
  min-width: 0;
}

.stickerPickerHeaderRow .modalDateRow,
.stickerPickerHeaderRow .modalHeaderActions {
  flex-wrap: nowrap;
}

.stickerPickerHeaderRow .modalHeaderActions {
  flex-shrink: 0;
}

.stickerPickerSearch {
  width: 100%;
}

.stickerPickerSearch .search {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 36px;
  padding: 0 14px;

  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
}

@media (max-width: 440px) {
  .stickerPickerHeaderRow,
  .stickerPickerHeaderRow .modalDateRow,
  .stickerPickerHeaderRow .modalHeaderActions {
    gap: 4px;
  }

  .stickerPickerHeaderRow .btn {
    padding-inline: 6px;
    font-size: clamp(14px, 4vw, 18px);
    white-space: nowrap;
  }

  .stickerPickerHeaderRow .modalDate {
    font-size: clamp(16px, 5vw, 22px);
    white-space: nowrap;
  }
}

.grid {
  min-height: 0;
  padding: 12px 14px 16px;
  overflow-y: auto;
  overflow-x: hidden;
  display: block;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.stickerBtn {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 16px;
  padding: 8px;
  cursor: pointer;
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 120px;
  overflow: hidden;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

/* .stickerBtn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
} */

.stickerBtn:active {
  transform: translateY(0px);
}

.stickerBtn img {
  width: 100%;
  max-width: 88px;
  max-height: 88px;
  height: auto;
  object-fit: contain;
  display: block;
}

.stickerLabel {
  display: none;
  font-family: "truculenta", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-ink);
  text-align: center;
}

.stickerBtn .stickerLabel {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  /* min-height: 2.5em; */
  line-height: 1.25;
  text-transform: lowercase;
  padding: 0 2px;
}

/* Accessibility: focus ring */
.btn:focus-visible,
.select:focus-visible,
.search:focus-visible,
.day:focus-visible,
.miniDay:focus-visible,
.stickerBtn:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 35%, transparent);
  outline-offset: 2px;
}

/* Mobile month grid fixes */
@media (max-width: 600px) {
  .site-logo {
    width: min(235px, 94vw);
  }

  .subtitle {
    font-size: 16px;
    max-width: 57%;
  }
}

@media (max-width: 550px) {
  .container {
    padding: 1px;
  }

  .calendar {
    padding: 8px;
  }

  .day {
    min-height: 0;
    aspect-ratio: 1 / 1;
    padding: 6px;
    border-radius: 16px;
  }

  .day .num {
    font-size: 11px;
  }

  .stickerSlot img {
    max-width: 36px;
    max-height: 36px;
  }

  .controls {
    justify-content: center;
  }
}

@media (max-width: 440px) {
  .calendar {
    gap: 4px;
    padding: 6px;
  }

  .day {
    padding: 5px;
    border-radius: 14px;
    position: relative;
  }

  .day .num {
    position: absolute;
    top: 6px;
    left: 8px;
    margin: 0;
    z-index: 2;
    font-size: 11px;
    line-height: 1;
    color: var(--muted);
    pointer-events: none;
  }

  .stickerSlot {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding-top: 10px;
    min-height: 0;
    min-width: 0;
  }

  .stickerSlot img {
    width: 100%;
    object-fit: contain;
    display: block;
    padding-bottom: 2px;
  }
}

/* Category-first sticker picker */
.catList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (min-width: 720px) {
  .catList {
    grid-template-columns: repeat(2, 1fr);
  }
}

.catTile {
  text-align: left;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 18px;
  padding: 2px;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  box-shadow: var(--inner-glow);
  display: grid;
  justify-items: center;
  min-height: 120px;
}

.catName {
  font-weight: 700;
  color: var(--accent-ink);
  font-size: 20px;
  font-family: Truculenta, sans-serif;
}

.catMeta {
  font-size: 14px;
  color: var(--muted);
  margin-top: -4px;
}

.catPreview {
  display: flex;
  gap: 6px;
  align-items: center;
}

.catPreview img {
  width: 100%;
  max-width: 56px;
  height: auto;
}

.catTopRow {
  position: relative;
  z-index: 4;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 10px;

  max-height: 54px;
  margin: -1px 1px 14px;
  padding: 15px;

  border-radius: 16px;
  background: var(--surface);
  border: none;
}

.catTopRowSticky {
  position: sticky;
  top: -12px;
}

.catTopRow .catBack {
  grid-column: 1;
  justify-self: start;
  text-align: right;
  min-height: 28px;
  padding: 0 8px;
  text-align: right;
  background: rgba(255, 255, 255, 0.2);
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

.catTitle {
  grid-column: 2;
  justify-self: center;

  color: var(--accent-ink);
  font-family: var(--font-main);
  font-size: clamp(20px, 6vw, 26px);
  font-weight: 700;
  line-height: 1.05;
  text-align: center;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.35);
}

.catTitleTab {
  grid-column: 2;
  justify-self: center;

  font-weight: 600;
  font-size: 26px;
  text-align: center;
}

/* .catTitleTab {
  position: relative;
  display: inline-block;
  color: var(--accent-ink);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.1;
}

.catTitleTab::after {
  content: "";
  position: absolute;
  left: -3px;
  right: -7px;
  bottom: -5px;
  height: 7px;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(216, 146, 255, 0.35),
    rgba(247, 165, 232, 0.65)
  );
  clip-path: polygon(
    0 34%,
    8% 16%,
    38% 28%,
    67% 8%,
    100% 25%,
    96% 76%,
    62% 65%,
    30% 90%,
    4% 72%
  );
} */

.catGrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.catTagFilterRow {
  margin: -4px 0 14px;
  padding: 7px 5px 10px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.catTagFilterList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px;
  max-height: 66px;
  overflow: hidden;
}

.catTagFilterList.expanded {
  max-height: 145px;
  overflow-y: auto;
  overflow-x: hidden;

  mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 12%,
    black 88%,
    transparent 100%
  );

  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent 0%,
    black 5%,
    black 88%,
    transparent 100%
  );

  scrollbar-width: none;
}

.catTagFilterList.expanded::-webkit-scrollbar {
  display: none;
}

.catTagFilterChip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.28);
  color: var(--accent-ink);
  font-family: var(--font-alt);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.1s ease;
}

.catTagFilterChip:hover {
  background: rgba(255, 255, 255, 0.45);
}

.catTagFilterChip.active {
  background: color-mix(in srgb, var(--accent) 28%, white);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--border));
}

.catTagFilterChip:active {
  transform: translateY(1px);
}

.catTagShowMore {
  display: block;
  margin: 9px auto 0;
  padding: 3px 8px;
  border: 0;
  background: transparent;
  color: var(--accent-ink);
  font-family: var(--font-alt);
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  opacity: 0.75;
}

.catTagShowMore:hover {
  opacity: 1;
  text-decoration: underline;
}

/* Menu */
.menu-wrap {
  grid-column: 1;
  justify-self: start;
  position: relative;
}

.menu-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;

  background: var(--card);
  opacity: 1;
  background-color: #fefbfc;

  border: 1px solid var(--border);
  border-radius: var(--radius);

  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);

  padding: 8px;
  z-index: 1000;
  min-width: 170px;
}

.menu-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 10px 12px;
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: #551a8b;
  text-decoration: underline;
}

.menu-item:hover {
  /* background: var(--bg); */
  font-weight: 799;
}

.day .num.has-note,
.miniDay .miniNum.has-note {
  font-weight: 999;
  color: var(--accent-ink);
}

/* Simple nav header for About + Blog pages */
.simple-topbar {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
}

.simple-topbar .menu-wrap {
  grid-column: 1;
  justify-self: start;
}

.simple-logo-link {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.simple-topbar .site-logo {
  width: min(150px, 45vw);
}

.simple-topbar .menu-dropdown {
  top: calc(100% + 8px);
  left: 0;
}

@media (min-width: 720px) {
  .simple-topbar {
    padding: 14px 24px;
  }

  .simple-topbar .site-logo {
    width: min(180px, 35vw);
  }
}

/* Weekly share */
.weekly-share-card {
  width: 500px;
  padding: 12px;
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 255, 255, 0.65),
      transparent 22%
    ),
    radial-gradient(
      circle at 85% 75%,
      rgba(255, 255, 255, 0.45),
      transparent 34%
    ),
    linear-gradient(135deg, #ffd6e8, #d7c7ff, #bff4e6);
  color: #2d0819;
  font-family: "Poppins", sans-serif;
  position: fixed;
  left: -99999px;
  top: 0;
  /* border-radius: 3px; */
  z-index: 99999;
}

.weekly-share-title {
  font-size: 24px;
  font-weight: 500;
  text-align: center;
  color: #2d0819;
}

.weekly-share-range {
  font-size: 13px;
  color: rgba(45, 8, 25, 0.65);
  text-align: center;
  margin-bottom: 4px;
  font-family: quicksand, var(--font-main);
  font-weight: 400;
}

.weekly-share-url {
  margin-top: -2px;
  margin-bottom: 4px;
  text-align: center;
  font-family: quicksand, var(--font-main);
  font-size: 13px;
  font-weight: 500;
  color: rgba(45, 8, 25, 0.58);
  line-height: 1;
}

.weekly-share-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto 1fr auto 1fr;

  column-gap: 6px;
  row-gap: 6px;

  padding: 0;
  margin-bottom: 6px;

  background: none;
  border: none;
  backdrop-filter: none;
  box-shadow: none;

  align-items: center;
  justify-items: center;
}

.share-label-cell {
  font-size: 15px;
  font-weight: 500;
  color: rgba(45, 8, 25, 0.75);
  text-transform: lowercase;
  font-family: truculenta, var(--font-main);
}

.share-sticker-cell,
.share-logo-cell {
  width: 100%;
  aspect-ratio: 1 / 1;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 16px;
}

.share-sticker-img-wrap {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.share-sticker-cell img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
}

.share-sticker-cell {
  flex-direction: column;
  gap: 2px;
}

.share-sticker-cell .stickerArtistBadge {
  max-width: 90%;
  padding: 1px 5px;
  font-size: 7px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: rgba(255, 255, 255, 0.55);
  color: rgba(45, 8, 25, 0.75);
}

.share-logo-cell img {
  width: auto;
  height: auto;
  max-width: 72%;
  max-height: 72%;
  object-fit: contain;
  display: block;
}

.weekly-share-footer,
.share-brand-cell {
  font-size: 15px;
  color: rgba(45, 8, 25, 0.7);
  text-align: center;
  font-weight: 460;
}

p[name="credits"] {
  font-size: 12px;
  font-family: quicksand, var(--font-main);
  color: var(--muted);
  text-align: center;
  margin-top: 14px;
  margin-bottom: 2px !important;
}

@media (min-width: 720px) {
  .catGrid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .catPreview img {
    max-width: 42px;
    height: auto;
  }

  .modal {
    max-height: 92vh;
  }
}

@media (max-width: 440px) {
  .day .num.has-note {
    z-index: 2;
    background: transparent;
    padding: 1px 1.5px;
    min-width: 1.4em;
    height: 1.3em;
    border-width: 1.5px;
  }

  .miniDay .miniNum.has-note {
    background: transparent;
    z-index: 2;
    padding: 1px 2px;
    min-width: 1em;
    height: 1em;
    border-width: 1px;
  }
}

/* Glassmorphism polish layer */
/* .btn:hover,
.icon-btn:hover,
.day:hover,
.stickerBtn:hover,
.catTile:hover {
  background: rgba(255, 255, 255, 0.4);
} */

.day .num,
.miniNum {
  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.55);
}

/* .stickerSlot img,
.miniDay img {
  filter: drop-shadow(0 4px 7px rgba(36, 16, 57, 0.16));
} */

/* .menu-dropdown, */
.about-card,
.modal {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow), var(--inner-glow);
}

.about-highlight {
  margin: 1.5rem 0;
  padding: 0.5rem;
  border: 1px solid rgba(36, 16, 57, 0.12);
  border-radius: 18px;
  background: #ffffff99;
  text-align: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.about-highlight p {
  margin: 0 0 0.75rem;
  font-weight: 600;
}

.about-highlight img {
  max-width: 230px;
  width: 100%;
  height: auto;
}

.menu-dropdown {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow), var(--inner-glow);
}

.modalHeader {
  background: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

@media (prefers-reduced-transparency: reduce) {
  body {
    background: var(--bg);
  }

  .card,
  .btn,
  .select,
  .search,
  .topbar,
  .day,
  .modal,
  .menu-dropdown,
  .about-card,
  .meet-the-artists-card {
    background: #f8f7ff;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

h3 {
  font-size: 0.99rem;
  color: var(--accent-ink);
  margin-bottom: 8px;
  font-weight: 400;
  text-decoration: none;
}

/* =========================
   Daily Sticky Blog Pages
========================= */

.blog-page,
.article-page {
  width: min(100% - 32px, 980px);
  margin: 0 auto;
  padding: 28px 0 56px;
  color: var(--ink);
}

.article-page {
  max-width: 780px;
}

.blog-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 44px;
}

.blog-logo,
.blog-nav-link,
.blog-card a,
.blog-button,
.article-content a,
.article-back-link {
  color: inherit;
}

.blog-logo,
.blog-nav-link,
.blog-card a,
.blog-button,
.article-back-link {
  text-decoration: none;
}

.blog-logo {
  font-family: var(--font-main);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--accent-ink);
}

.blog-nav-link {
  font-weight: 700;
  padding: 3px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft), var(--inner-glow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: #fd6fc4;
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1;
}

.blog-hero,
.article-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 34px;
}

.blog-kicker {
  margin: 0 0 10px;
  font-family: var(--font-alt);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--muted);
}

.blog-hero h1,
.article-header h1 {
  margin: 0;
  font-size: clamp(2.6rem, 8vw, 3.5rem);
  line-height: 0.92;
  color: var(--accent-ink);
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.35);
  /* color: blue; */
}

.blog-hero p,
.article-description {
  margin: 18px auto 0;
  max-width: 620px;
  font-family: var(--font-alt);
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.blog-card,
.blog-cta,
.article-content {
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow), var(--inner-glow);
}

.blog-card {
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: calc(var(--radius) + 6px);
  text-align: center;
}

.blog-category {
  display: inline-flex;
  margin: 0 auto 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 16%, white);
  color: var(--accent-ink);
  font-family: var(--font-alt);
  font-size: 0.78rem;
  font-weight: 800;
}

.blog-card h2 {
  margin: 0 0 12px;
  font-size: 1.45rem;
  line-height: 1.08;
  color: var(--accent-ink);
}

.blog-card p {
  line-height: 1.55;
  font-size: 1.02rem;
}

.blog-card a,
.article-content a {
  display: inline-flex;
  margin-top: 8px;
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
  color: var(--accent-ink);
}

.blog-card a {
  align-self: flex-start;
  margin-top: auto;
  text-align: left;
}

.blog-cta {
  margin: 42px auto 0;
  padding: 32px;
  max-width: 720px;
  text-align: center;
  border-radius: calc(var(--radius) + 10px);
}

.blog-cta h2 {
  margin: 0 0 10px;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  color: var(--accent-ink);
}

.blog-cta p {
  margin: 0 auto 22px;
  max-width: 560px;
  line-height: 1.6;
  font-family: var(--font-alt);
  color: var(--muted);
}

.blog-card a.blog-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  align-self: center;
  margin: 0 auto 14px;
  padding: 6px 11px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 16%, white);
  color: var(--accent-ink);
  font-family: var(--font-alt);
  font-size: 1.02rem;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  text-underline-offset: 0;
}

.blog-category-small {
  font-size: 0.68em;
  font-weight: 600;
  padding-top: 2px;
}

.blog-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 900;
  color: var(--ink);
  background: color-mix(in srgb, var(--accent) 32%, white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft), var(--inner-glow);
}

.article-content {
  padding: 30px;
  border-radius: calc(var(--radius) + 10px);
}

.article-content h2 {
  margin: 34px 0 10px;
  font-size: 1.7rem;
  line-height: 1.1;
  color: var(--accent-ink);
}

.three-steps {
  text-align: left;
}

.article-content h2.dms,
.article-content h2.dys {
  clear: both;
}

.article-content h2.dms {
  /* margin-top: 44px; */
  /* background: lime; */
  text-align: right;
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content p,
.article-content li {
  /* line-height: 1.75; */
  font-size: 1.05rem;
}

.article-content img {
  display: block;
  max-width: 100%;
  max-height: 520px;
  width: auto;
  margin: 20px auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.article-content img.article-hero-img-mobile {
  display: none;
}

@media (min-width: 761px) {
  .article-content img.article-hero-img {
    float: right;
    width: 280px;
    max-width: 40%;
    max-height: none;
    margin: 4px 0 16px 28px;
  }
}

@media (max-width: 760px) {
  .article-content img.article-hero-img {
    display: none;
  }

  /* creator-article has no separate mobile-position duplicate image,
     so keep its single hero image visible instead of hiding it */
  .article-content.creator-article img.article-hero-img {
    display: block;
  }

  .article-content img.article-hero-img-mobile {
    display: block;
  }
}

@media (min-width: 761px) {
  .article-content img.article-hero-img.swr {
    margin-top: -40px;
  }

  .article-content img.article-hero-img.dms {
    width: 230px;
    float: left;
    margin-right: 28px;
    margin-top: -60px;
  }

  .article-content img.article-hero-img.dys {
    margin-top: -135px;
    width: 260px;
  }
}

.article-content img.article-hero-img-mobile.dms {
  max-width: 85%;
  max-height: 420px;
}

.creator-article p {
  line-height: 1.25;
}

.article-back-link {
  display: inline-flex;
  margin-top: 24px;
  font-weight: 900;
  color: var(--accent-ink);
}

@media (max-width: 760px) {
  .blog-page,
  .article-page {
    width: min(100% - 24px, 980px);
    padding-top: 20px;
  }

  .blog-nav {
    margin-bottom: 34px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-card,
  .blog-cta,
  .article-content {
    border-radius: 24px;
    padding: 16px;
    text-align: center;
    line-height: 1.25em;
  }
}

.article-content .post-script {
  margin-top: 28px;
  font-size: 0.9rem;
  line-height: 1.4;
  font-weight: 450;
  font-style: italic;
  /* font-family: Manjari, var(--font-main); */
  /* color: var(--muted); */
  /* font-style: italic; */
}
/* =========================
   Homepage Tiny Tour
========================= */

.home-links {
  width: min(100% - 28px, 820px);
  margin: 6px auto 1px;
  /* padding: 10px; */
  text-align: center;
  /* making this section less visible */
  /* background: rgba(255, 255, 255, 0.38); */
  /* border: 1px solid rgba(255, 255, 255, 0.62); */
  /* border-radius: 22px; */
  /* box-shadow: var(--shadow-soft), var(--inner-glow); */

  /* backdrop-filter: blur(18px) saturate(135%); */
  /* -webkit-backdrop-filter: blur(18px) saturate(135%); */
}

.home-links .section-kicker {
  display: inline-flex;
  margin: 0 auto 4px;
  padding: 4px 9px;
  border-radius: 999px;

  background: color-mix(in srgb, var(--accent) 16%, white);
  color: var(--accent-ink);
  font-family: var(--font-alt);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-links h2 {
  /* display: none; */
  margin: 0 0 6px;
  color: var(--accent-ink);
  font-size: clamp(0.5rem, 3vw, 2rem);
  line-height: 1;
  font-size: 16px;
}

.home-links p:not(.section-kicker) {
  /* max-width: 390px; */
  margin: 0 auto 12px;
  color: var(--muted);
  font-family: var(--font-alt);
  font-size: 0.68rem;
  line-height: 1.15;
}

.home-link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.home-link-list a,
.home-link-list button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 3px 6px;
  border-radius: 999px;

  /* background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--inner-glow); */

  color: var(--accent-ink);
  font-family: var(--font-alt);
  font-size: 0.77rem;
  font-weight: 550;
  text-decoration: none;
}

.home-link-list button {
  background: none;
  border: none;
  cursor: pointer;
}

/* .home-link-list a:hover {
  background: color-mix(in srgb, var(--accent) 10%, white);
  transform: translateY(-1px);
} */

.home-info {
  margin-top: 20px;
  width: 100%;
  text-align: center;
  padding: 0 16px 5px;
}

.home-info summary {
  cursor: pointer;
  color: var(--muted);
  font-family: var(--font-alt);
  font-size: 0.65rem;
  font-weight: 550;
  list-style: none;
}

.home-info summary::-webkit-details-marker {
  display: none;
}

.home-info summary::after {
  content: " ▾";
}

.home-info[open] summary::after {
  content: " ▴";
}

.home-info p {
  max-width: 460px;
  margin: 6px auto 0;
  color: var(--muted);
  font-family: var(--font-alt);
  font-size: 0.7rem;
  line-height: 1.35;
}

.save-features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
  margin-bottom: 6px;
  flex-wrap: wrap;
}

.save-features .menu-item {
  width: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 7px 11px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--inner-glow);

  color: var(--accent-ink);
  font-family: var(--font-alt);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
}

.save-features .menu-item:hover {
  background: color-mix(in srgb, var(--accent) 10%, white);
  transform: translateY(-1px);
}

.save-features .fileBtn {
  gap: 0;
}

.btn:not(.image-btn) {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 6px 16px rgba(87, 52, 124, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.btn:not(.image-btn):not(#todayBtn):not(#toggleViewBtn) {
  color: #241039;
}

#todayBtn,
#toggleViewBtn {
  background: rgba(255, 255, 255, 0.42);
  border-color: rgba(255, 255, 255, 0.82);
  color: #241039;
  box-shadow:
    0 6px 18px rgba(87, 52, 124, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

/* Weekly recap prompt */
.weekly-recap-prompt {
  position: relative;
  width: min(360px, 100%);
  padding: 28px 22px 22px;
  text-align: center;
  overflow: visible;

  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  box-shadow: var(--shadow), var(--inner-glow);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
}

.weekly-recap-close {
  position: absolute;
  top: 10px;
  right: 12px;

  border: none;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 20px;
  cursor: pointer;
}

.weekly-recap-sparkle {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 6px;
}

.weekly-recap-prompt h2 {
  margin: 0 0 8px;
  color: var(--accent-ink);
  font-size: 30px;
  line-height: 0.95;
}

.weekly-recap-prompt p {
  margin: 0 auto 18px;
  max-width: 340px;
  color: var(--muted);
  font-family: var(--font-alt);
  font-size: 17px;
  line-height: 1.3;
}

.weekly-recap-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.weekly-recap-actions .btn {
  min-height: 38px;
  padding: 0 14px;
}

.nav-view-select {
  width: 112px;
  text-align: center;
}

#toggleViewBtn {
  width: 92px;
}

.year-stories-link {
  /* display: flex; */
  display: none;
  width: fit-content;
  margin: 0 auto 12px;

  align-items: center;
  justify-content: center;

  font-size: 0.85rem;
  padding: 0 10px;
  min-height: 28px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

/* =========================
   Notes Page
========================= */

.notes-container {
  max-width: 780px;
}

.notes-page-header {
  text-align: center;
  margin-bottom: 18px;
}

.notes-page-header h1 {
  margin: 0 0 10px;
  font-size: clamp(2.4rem, 8vw, 3.4rem);
  line-height: 0.92;
  color: var(--accent-ink);
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.35);
}

.notes-page-header p:not(.blog-category) {
  max-width: 560px;
  margin: 0 auto 16px;
  color: var(--muted);
  font-family: var(--font-alt);
  font-size: 1.02rem;
  line-height: 1.45;
}

.notes-page-header .btn {
  min-height: 38px;
  padding: 0 14px;
  font-weight: 700;
}

.notes-year-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin: 0 auto 18px;
}

.notes-month-jump {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 30px;
  padding: 4px 9px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--inner-glow);

  color: var(--accent-ink);
  font-family: var(--font-alt);
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  line-height: 1;
}

.notes-month-jump:hover {
  background: color-mix(in srgb, var(--accent) 10%, white);
  transform: translateY(-1px);
}

.notes-list {
  display: grid;
  gap: 12px;
}

.notes-month-section {
  background: rgba(255, 255, 255, 0.42);
  backdrop-filter: blur(22px) saturate(135%);
  -webkit-backdrop-filter: blur(22px) saturate(135%);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft), var(--inner-glow);
  overflow: hidden;
}

.notes-month-toggle {
  width: 100%;
  border: none;
  background: transparent;
  color: var(--accent-ink);
  font: inherit;
  cursor: pointer;

  padding: 12px 14px;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 9px;

  text-align: left;
}

.notes-month-toggle::before {
  content: "▾";
  font-size: 0.85rem;
  color: var(--muted);
}

.notes-month-section.is-collapsed .notes-month-toggle::before {
  content: "▸";
}

.notes-month-toggle span:first-child {
  font-weight: 800;
  font-size: 1.15rem;
}

.notes-month-count {
  justify-self: end;
  color: var(--muted);
  font-family: var(--font-alt);
  font-size: 0.8rem;
  font-weight: 800;
  white-space: nowrap;
}

.notes-month-content {
  display: grid;
  gap: 9px;
  padding: 0 14px 14px;
}

.notes-month-section.is-collapsed .notes-month-content {
  display: none;
}

.note-card {
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--inner-glow);

  display: grid;
  grid-template-columns: minmax(0, 1fr) 74px;
  grid-template-rows: auto 1fr;
  column-gap: 14px;
  row-gap: 4px;
  align-items: center;
}

.note-date {
  grid-column: 1;
  grid-row: 1;

  margin: 0;
  color: var(--accent-ink);
  font-weight: 800;
  font-size: 1rem;
}

.note-text {
  grid-column: 1;
  grid-row: 2;

  margin: 0;
  color: var(--ink);
  font-family: var(--font-alt);
  font-size: 1rem;
  line-height: 1.45;
}

.note-sticker {
  grid-column: 2;
  grid-row: 1 / span 2;

  display: grid;
  place-items: center;
  align-self: center;
}

.note-sticker img {
  width: 68px;
  height: 68px;
  object-fit: contain;
  display: block;
}

.notes-empty {
  margin: 0;
  padding: 4px 0 2px;
  color: var(--muted);
  font-family: var(--font-alt);
  font-style: italic;
  font-size: 0.95rem;
}

.notes-collapse-month-btn {
  justify-self: center;
  min-height: 34px;
  padding: 0 12px;
  margin-top: 4px;
  font-size: 0.95rem;
  font-weight: 700;
}

.notes-toolbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 14px auto 18px;
  flex-wrap: wrap;
}

.notes-year-control {
  display: inline-flex;
  align-items: center;
}

.notes-year-control .select,
#notesYearSelect {
  min-height: 36px;
  padding: 0 28px 0 13px;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.34);
  color: var(--ink);

  font-family: var(--font-main);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1;

  box-shadow:
    0 6px 16px rgba(87, 52, 124, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.notes-toolbar #toggleAllNotesBtn {
  min-height: 36px;
  padding: 0 14px;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.34);

  font-size: 1rem;
  font-weight: 700;

  box-shadow:
    0 6px 16px rgba(87, 52, 124, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

@media (max-width: 630px) {
  .notes-year-nav {
    display: grid;
    grid-template-columns: repeat(6, auto);
    justify-content: center;
    gap: 6px;
  }
}

@media (max-width: 440px) {
  .notes-container {
    padding: 18px 12px;
  }

  .notes-page-header h1 {
    font-size: 2.5rem;
  }

  .notes-year-nav {
    gap: 5px;
  }

  .notes-month-jump {
    font-size: 0.76rem;
    padding: 4px 7px;
  }

  .notes-month-toggle {
    padding: 11px 12px;
    gap: 7px;
  }

  .notes-month-toggle span:first-child {
    font-size: 1.02rem;
  }

  .notes-month-content {
    padding: 0 12px 12px;
  }
}

/* Main app notes links */

.btn.month-notes-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 25px;
  padding: 0 7px;

  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: none;
  white-space: nowrap;
  background: none;
  backdrop-filter: none;
  /* box-shadow: none; */
  border: none;
}

.miniMonthTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.miniMonthTop .miniMonthTitle {
  margin-bottom: 0;
}

.miniMonthNotesLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 3px 7px;
  border-radius: 999px;

  background: rgba(255, 255, 255, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: var(--inner-glow);

  color: var(--accent-ink);
  font-family: var(--font-alt);
  font-size: 0.74rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.miniMonthNotesLink:hover {
  background: color-mix(in srgb, var(--accent) 10%, white);
  transform: translateY(-1px);
}

@media (max-width: 440px) {
  .monthHeader {
    align-items: center;
    gap: 10px;
  }

  .month-notes-link {
    font-size: 0.85rem;
    padding: 0 8px;
  }

  .miniMonthTop {
    align-items: flex-start;
  }

  .miniMonthNotesLink {
    font-size: 0.7rem;
    padding: 3px 6px;
  }
}

.install-prompt {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 9998;
  pointer-events: none;
}

.install-prompt-card {
  position: relative;
  width: min(100%, 460px);
  margin: 0 auto;
  padding: 14px 14px 12px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.82),
      rgba(255, 255, 255, 0.5)
    ),
    linear-gradient(135deg, #ffd6e8, #d7c7ff, #bff4e6);
  box-shadow:
    0 18px 50px rgba(36, 16, 57, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  color: #241039;
  text-align: center;
  pointer-events: auto;
}

.install-prompt-title {
  margin: 0 0 4px;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: #241039;
}

.install-prompt-text {
  max-width: 360px;
  margin: 0 auto 10px;
  font-family: var(--font-alt);
  font-size: 14px;
  line-height: 1.35;
  color: rgba(36, 16, 57, 0.72);
}

.install-prompt-close {
  position: absolute;
  top: 10px;
  right: 12px;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: rgba(36, 16, 57, 0.72);
  font: inherit;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.install-prompt-main-btn,
#installPromptBtn {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-radius: 999px;
  background: #654487;
  color: #fff;
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 800;
  cursor: pointer;
  box-shadow:
    0 10px 22px rgba(254, 135, 204, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.install-prompt-main-btn:active,
#installPromptBtn:active,
.install-prompt-close:active {
  transform: translateY(1px);
}

.armed-sticker-banner {
  position: fixed;
  left: 12px;
  right: 12px;
  top: 12px;
  z-index: 9998;
  pointer-events: none;
}

.armed-sticker-card {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 460px);
  margin: 123.5px auto;
  padding: 10px 12px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.82),
      rgba(255, 255, 255, 0.5)
    ),
    linear-gradient(135deg, #ffd6e8, #d7c7ff, #bff4e6);
  box-shadow:
    0 18px 50px rgba(36, 16, 57, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  color: #241039;
  pointer-events: auto;
}

.armed-sticker-preview {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.armed-sticker-text {
  flex: 1;
  min-width: 0;
}

.armed-sticker-title {
  margin: 0;
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
}

.armed-sticker-subtitle {
  margin: 2px 0 0;
  font-family: var(--font-alt);
  font-size: 12px;
  color: rgba(36, 16, 57, 0.68);
}

.armed-sticker-cancel {
  flex: 0 0 auto;
  min-height: 34px;
}

/* Make sticker images harder to casually save/drag */
.stickerBtn img,
.stickerSlot img,
.catPreview img,
.miniDay img,
.note-sticker img,
.share-sticker-cell img,
.artistStickerTile img,
.featuredStripSticker img,
.artistCardStickerRow img {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  pointer-events: none;
}

/* Month and year and Stories Icon Style */

.header-icon-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

.icon-btn-labeled {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.icon-btn-labeled span {
  font-size: 10px;
  color: var(--muted);
  line-height: 1;
  text-decoration: underline;
}

/* =========================
   Export Preview Popup
========================= */

#monthExportOverlay.overlay,
#yearExportOverlay.overlay {
  background: rgba(36, 16, 57, 0.38);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(8px);
  /* padding: 18px; */
}

#monthExportOverlay.overlay {
  place-items: center;
}

#monthExportOverlay .modal,
#yearExportOverlay .modal {
  width: min(94vw, 330px);
  max-height: 92vh;
  overflow: visible;

  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.export-popup-header {
  width: 100%;
  margin: 0 auto 8px;
  padding: 7px 10px;

  display: flex;
  align-items: center;
  justify-content: space-between;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.86);

  box-shadow:
    0 8px 22px rgba(36, 16, 57, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  font-family: var(--font-alt);
}

.export-popup-title {
  color: var(--accent-ink);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.export-popup-close {
  width: 24px;
  height: 24px;
  padding: 0;

  border: none;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);

  color: rgba(36, 16, 57, 0.68);
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;

  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.month-preview-header {
  margin: 0 0 2px;
  padding: 7px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;

  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: rgba(255, 255, 255, 0.68);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 4px 12px rgba(36, 16, 57, 0.08);

  color: var(--accent-ink);
  font-family: var(--font-main);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.month-preview-title {
  margin: 0;

  color: var(--accent-ink);
  font-size: 17px;
  font-weight: 800;
  line-height: 1;

  text-shadow: 0 1px 8px rgba(255, 255, 255, 0.42);
}

.month-preview-actions {
  display: flex;
  align-items: center;
  gap: 5px;
}

.month-preview-actions .btn {
  min-height: 24px;
  padding: 0 8px;

  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  background: rgba(255, 255, 255, 0.34);

  color: #241039;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;

  box-shadow:
    0 4px 10px rgba(87, 52, 124, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.month-preview-close {
  width: 24px;
  height: 24px;
  padding: 0;

  display: grid;
  place-items: center;

  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);

  color: rgba(36, 16, 57, 0.68);
  font-family: var(--font-main);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;

  cursor: pointer;

  box-shadow:
    0 4px 10px rgba(87, 52, 124, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.export-preview-scroll {
  padding: 0;
  overflow: visible;
}

.export-preview-footer {
  margin-top: 10px;
  padding: 0;

  display: flex;
  justify-content: center;

  background: transparent;
  border: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.export-preview-footer .btn {
  min-height: 34px;
  padding: 0 14px;
  font-size: 18px;
  font-weight: 700;
}

/* The actual preview/download card */
.export-card {
  width: 100%;
  min-height: auto;
  margin: 0 auto;
  padding: 10px;
  border-radius: 18px;
  background: linear-gradient(135deg, #ffd8f0 0%, #d9b9ff 48%, #c9f7de 100%);

  box-shadow:
    0 14px 30px rgba(36, 16, 57, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);

  overflow: hidden;
  font-family: var(--font-main);
}

.export-header {
  height: auto;
  margin-bottom: 8px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

.export-title {
  color: #241039;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.export-count {
  padding: 3px 7px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.5);

  color: rgba(36, 16, 57, 0.52);
  font-family: var(--font-alt);
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
}

.export-weekdays {
  height: auto;
  margin-bottom: 5px;

  display: grid;
  grid-template-columns: repeat(7, 1fr);

  color: rgba(36, 16, 57, 0.48);
  font-family: var(--font-alt);
  font-size: 7px;
  font-weight: 800;
  text-align: center;
}

.export-month-grid {
  flex: 1;

  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 4px;
}

.export-month-day {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.52);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
  overflow: hidden;
}

#monthExportPreviewCard .export-month-day {
  container-type: inline-size;
  aspect-ratio: 1 / 1;
}

.export-month-day.outside {
  opacity: 0.36;
}

.export-month-day .num {
  position: absolute;
  top: 3px;
  left: 4px;

  color: rgba(36, 16, 57, 0.42);
  font-family: var(--font-alt);
  font-size: 6px;
  font-weight: 800;
  line-height: 1;
}

.export-month-day img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}

#monthExportPreviewCard .export-month-day img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 228cqw;
  height: 228cqw;
  object-fit: contain;
  transform: translate(-50%, -50%) scale(0.3333);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.export-footer {
  height: auto;
  margin-top: 7px;

  color: rgba(36, 16, 57, 0.46);
  font-family: var(--font-alt);
  font-size: 8px;
  font-weight: 800;
  line-height: 1.4;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* =========================
   Month Download Image Only
   Keeps actual PNG matching preview card
========================= */

#monthExportCard {
  width: 100%;
  max-width: 330px;
  min-height: auto;
  aspect-ratio: auto;

  margin: 0 auto;
  padding: 10px;

  border-radius: 18px;

  background: linear-gradient(135deg, #ffd8f0 0%, #d9b9ff 48%, #c9f7de 100%);

  box-shadow:
    0 14px 30px rgba(36, 16, 57, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);

  overflow: hidden;
  font-family: var(--font-main);
}

#monthExportCard .export-header {
  height: auto;
  margin-bottom: 8px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

#monthExportCard .export-title {
  color: #241039;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

#monthExportCard .export-count {
  padding: 3px 7px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.5);

  color: rgba(36, 16, 57, 0.52);
  font-family: var(--font-alt);
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

#monthExportCard .export-weekdays {
  height: auto;
  margin-bottom: 5px;

  display: grid;
  grid-template-columns: repeat(7, 1fr);

  color: rgba(36, 16, 57, 0.48);
  font-family: var(--font-alt);
  font-size: 7px;
  font-weight: 800;
  text-align: center;
}

#monthExportCard .export-month-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 4px;
}

#monthExportCard .export-month-day {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 38px;

  border-radius: 8px;
  background: rgba(255, 255, 255, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.52);

  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.56);
  overflow: hidden;
}

#monthExportCard .export-month-day.outside {
  opacity: 0.36;
}

#monthExportCard .export-month-day .num {
  position: absolute;
  top: 3px;
  left: 4px;

  color: rgba(36, 16, 57, 0.42);
  font-family: var(--font-alt);
  font-size: 6px;
  font-weight: 800;
  line-height: 1;
}

#monthExportCard .export-month-day img {
  width: 76%;
  height: 76%;
  object-fit: contain;
}

#monthExportCard .export-footer {
  height: auto;
  margin-top: 7px;

  color: rgba(36, 16, 57, 0.46);
  font-family: var(--font-alt);
  font-size: 8px;
  font-weight: 800;
  line-height: 1;
}
/* =========================
   Month Export Architecture
   Preview card and download card are separate
========================= */

/* Hidden full-size download source */
#monthExportCard.export-card-download {
  width: 1080px;
  max-width: none;
  height: 1350px;
  min-height: 1350px;

  position: fixed;
  left: -99999px;
  top: 0;
  z-index: -1;

  margin: 0;
  padding: 40px 10px;
  box-sizing: border-box;

  border-radius: 0;
  box-shadow: none;

  background: linear-gradient(
    135deg,
    #ffd7e7 0%,
    #edccff 38%,
    #c7dcff 68%,
    #c5f7e2 100%
  );

  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: "Truculenta", sans-serif;
}

#monthExportCard.export-card-download .export-header {
  /* height: 140px; */
  margin-top: -30px;
  margin-bottom: 15px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

#monthExportCard.export-card-download .export-title {
  font-size: 48px;
  font-weight: 700;
  color: #241039;
  line-height: 1;
}

#monthExportCard.export-card-download .export-logo-row {
  display: flex;
  justify-content: center;
  /* margin-bottom: 24px; */
}

#monthExportCard.export-card-download .export-logo {
  height: 180px;
  width: auto;
  display: block;
}

#monthExportCard.export-card-download .export-count {
  font-size: 24px;
  padding: 10px 20px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.5);
  border: none;

  color: #241039;
  font-family: "Truculenta", sans-serif;
  font-weight: 500;
  line-height: 1;
}

#monthExportCard.export-card-download .export-weekdays {
  height: 50px;
  margin-bottom: 0;

  display: grid;
  grid-template-columns: repeat(7, 1fr);
  align-items: center;

  font-size: 20px;
  font-weight: 700;
  color: rgba(36, 16, 57, 0.6);
  text-align: center;
}

#monthExportCard.export-card-download .export-month-grid {
  flex: 1;

  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(6, auto);
  align-content: flex-start;
  gap: 10px;
}

#monthExportCard.export-card-download .export-month-day {
  min-height: 0;
  aspect-ratio: 1 / 1;

  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 16px;
  border: none;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: none;
}

#monthExportCard.export-card-download .export-month-day.outside {
  opacity: 0.25;
}

#monthExportCard.export-card-download .export-month-day .num {
  position: absolute;
  top: 8px;
  left: 10px;

  font-size: 18px;
  font-weight: 500;
  color: rgba(36, 16, 57, 0.55);
  line-height: 1;
}

#monthExportCard.export-card-download .export-month-day img {
  width: 75%;
  height: 75%;
  object-fit: contain;
}

#monthExportCard.export-card-download .export-footer {
  height: auto;
  margin-top: 0px;
  /* padding: 10px 0; */

  display: block;
  text-align: center;

  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  color: rgba(36, 16, 57, 0.55);
}

/* =========================
   Year Export Architecture
   Preview card and download card are separate
========================= */

/* Visible year preview card */
#yearExportPreviewCard {
  width: 100%;
  max-width: 330px;
  min-height: auto;
  aspect-ratio: auto;

  margin: 0 auto;
  padding: 7px;
  padding-bottom: 20px;
  border-radius: 18px;

  background: linear-gradient(135deg, #ffd8f0 0%, #d9b9ff 48%, #c9f7de 100%);

  box-shadow:
    0 14px 30px rgba(36, 16, 57, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  position: relative;
  overflow: hidden;
  font-family: var(--font-main);
}

#yearExportPreviewCard .export-header {
  height: auto;
  margin-bottom: 8px;

  display: flex;
  align-items: center;
  justify-content: space-between;
}

#yearExportPreviewCard .export-title {
  color: #241039;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

#yearExportPreviewCard .export-count {
  padding: 3px 7px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.5);

  color: rgba(36, 16, 57, 0.52);
  font-family: var(--font-alt);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

#yearExportPreviewCard .export-year-flat-grid {
  display: grid;
  grid-template-columns: repeat(14, 1fr);
  gap: 4px;
}

#yearExportPreviewCard .export-year-flat-day {
  aspect-ratio: 1 / 1;
  border-radius: 6px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.32);
  overflow: hidden;

  container-type: inline-size;
}

#yearExportPreviewCard .export-year-flat-day.is-empty {
  background: rgba(255, 255, 255, 0.12);
}

#yearExportPreviewCard .export-year-flat-day img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 258cqw;
  height: 258cqw;
  object-fit: contain;
  transform: translate(-50%, -50%) scale(0.3333);
  will-change: transform;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

#yearExportPreviewCard .export-footer {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 9px;
  transform: translateX(-50%);

  height: auto;
  margin: 0;

  display: block;

  color: rgba(36, 16, 57, 0.46);
  font-family: var(--font-alt);
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

/* Hidden full-size year download source */
#yearExportCard.export-card-download {
  width: 1000px;
  max-width: none;
  height: auto;
  min-height: 1440px;

  position: fixed;
  left: -99999px;
  top: 0;
  z-index: -1;

  margin: 0;
  padding: 16px 16px 6px 16px;
  box-sizing: border-box;

  border-radius: 0;
  box-shadow: none;

  background: linear-gradient(
    135deg,
    #ffd7e7 0%,
    #edccff 38%,
    #c7dcff 68%,
    #c5f7e2 100%
  );

  display: flex;
  flex-direction: column;
  font-family: "Truculenta", sans-serif;

  overflow: hidden;
}

#yearExportCard.export-card-download .export-header {
  height: auto;
  margin-bottom: 14px;

  display: flex;
  justify-content: space-between;
  align-items: center;
}

#yearExportCard.export-card-download .export-title {
  font-size: 52px;
  font-weight: 800;
  color: #241039;
  line-height: 1;
}

#yearExportCard.export-card-download .export-count {
  font-size: 28px;
  padding: 7px 14px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.36);
  border: 1px solid rgba(255, 255, 255, 0.5);

  color: rgba(36, 16, 57, 0.52);
  font-family: var(--font-alt);
  font-weight: 800;
  line-height: 1;
}

#yearExportCard.export-card-download .export-year-flat-grid {
  /* flex: 1; */

  display: grid;
  grid-template-columns: repeat(14, 1fr);
  /* grid-auto-rows: 1fr; */
  gap: 8px;
}

#yearExportCard.export-card-download .export-year-flat-day {
  min-height: 0;
  aspect-ratio: 1 / 1;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;
  background: rgba(255, 255, 255, 0.32);
  overflow: hidden;
}

#yearExportCard.export-card-download .export-year-flat-day.is-empty {
  background: rgba(255, 255, 255, 0.12);
}

#yearExportCard.export-card-download .export-year-flat-day img {
  width: 85%;
  height: 85%;
  object-fit: contain;
}

#yearExportCard.export-card-download .export-footer {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 3px;
  transform: translateX(-50%);

  height: auto;
  margin: 0;
  margin-bottom: 4px;

  display: block;

  padding: 0;

  color: rgba(36, 16, 57, 0.46);
  font-family: var(--font-alt);
  font-size: 30px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}

.export-footer-line {
  text-align: center;
}

/* =========================
   TEMP: Show year download card for styling
   Remove or comment out when done
========================= */

/* body.debug-year-export #yearExportCard.export-card-download {
  position: relative;
  left: auto;
  top: auto;
  z-index: 1;
  margin: 24px auto;
  transform: scale(0.35);
  transform-origin: top center;
  margin-bottom: -850px;
} */

/* =========================
   TEMP: Show month download card for styling
   Remove or comment out when done
========================= */

/* body.debug-month-export #monthExportCard.export-card-download {
  position: relative;
  left: auto;
  top: auto;
  z-index: 1;
  margin: 24px auto;
  transform: scale(0.35);
  transform-origin: top center;
  margin-bottom: -830px;
} */

/* =========================
   Preview Touch Magnification Bulge
========================= */
#yearExportPreviewGrid,
#monthExportPreviewGrid {
  position: relative;
  isolation: isolate;

  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  cursor: grab;
}

#yearExportPreviewGrid.is-bulging,
#monthExportPreviewGrid.is-bulging {
  cursor: grabbing;
}

#yearExportPreviewGrid .export-year-flat-day,
#monthExportPreviewGrid .export-month-day {
  position: relative;
  z-index: 1;

  transform-origin: center;
  transform: translate3d(0, 0, 0) scale(1);

  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms ease;

  will-change: transform;
}

#yearExportPreviewGrid.is-bulging .export-year-flat-day,
#monthExportPreviewGrid.is-bulging .export-month-day {
  transition: none;
}

#yearExportPreviewGrid.is-bulging .export-year-flat-day,
#monthExportPreviewGrid.is-bulging .export-month-day {
  filter: drop-shadow(
    0 calc(1px + (var(--bulge-strength, 0) * 5px))
      calc(1px + (var(--bulge-strength, 0) * 7px))
      rgba(36, 16, 57, calc(var(--bulge-strength, 0) * 0.24))
  );
}

#yearExportPreviewGrid .export-year-flat-day img,
#monthExportPreviewGrid .export-month-day img {
  pointer-events: none;
  -webkit-user-drag: none;
  user-select: none;
}

#yearExportPreviewCard .export-year-flat-grid,
#yearExportPreviewCard .export-year-flat-day,
#monthExportPreviewCard .export-month-grid,
#monthExportPreviewCard .export-month-day {
  overflow: visible;
}

#yearExportPreviewCard,
#monthExportPreviewCard {
  overflow: hidden;
}

@media (prefers-reduced-motion: reduce) {
  #yearExportPreviewGrid .export-year-flat-day,
  #monthExportPreviewGrid .export-month-day {
    transition: none;
  }
}

/* Featured artist strip (v2 picker) */
.featuredStrip {
  margin: 10px 14px 0;
  padding: 10px 12px;
  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--inner-glow);
  /* cursor: pointer; */
}

.featuredStripHeader {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.featuredStripLabel {
  min-width: 0;
  font-weight: 600;
  font-size: 20px;
  color: var(--accent-ink);
}

.featuredStripArtistName {
  white-space: nowrap;
}

.featuredStripLink {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-ink);
  text-decoration: underline;
  white-space: nowrap;
}

.featuredStripRow {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 2px;
  justify-content: space-between;
  -ms-overflow-style: none;
  scrollbar-width: none;
  mask-image: linear-gradient(to right, black 90%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, black 90%, transparent 100%);
}

.featuredStripRow::-webkit-scrollbar {
  display: none;
}

.featuredStripSticker {
  flex: 0 0 auto;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.4);
  display: grid;
  place-items: center;
  cursor: pointer;
  padding: 4px;
}

.featuredStripSticker img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.stickerArtistBadge {
  font-size: 12px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 20%, white);
  color: var(--accent-ink);
  white-space: nowrap;
}

.artistSetLinkRow {
  display: flex;
  justify-content: center;
  margin: -4px 0 10px;
}

.artistBrowseRow {
  display: flex;
  justify-content: center;
  margin: 14px 0 4px;
}

.artistSetProfileLink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 4px 14px;

  border-radius: 999px;
  background: rgba(255, 255, 255, 0.28);

  color: var(--accent-ink);
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
}

.artistSetProfileLink:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 35%, transparent);
  outline-offset: 2px;
}

/* Artist profile page */
#artistHeader {
  text-align: center;
}

#artistName {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

#artistBio {
  text-align: center;
  margin-top: 6px !important;
  margin-bottom: 22px !important;
  white-space: pre-line;
  font-size: 20px;
}

.artistNameBanner {
  position: sticky;
  top: 0;
  z-index: 20;

  display: block;
  margin: 0 0 16px;
  padding: 14px 18px;

  border-radius: 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft), var(--inner-glow);
  backdrop-filter: blur(7px);
  /* -webkit-backdrop-filter: blur(2px); */

  text-align: center;
  text-decoration: none;
  color: inherit;
}

.artistNameBanner #artistName {
  color: var(--accent-ink);
  font-size: clamp(22px, 6vw, 30px);
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.35);
}

.artistNameBanner:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 35%, transparent);
  outline-offset: 2px;
}

body.artist-profile-page {
  overflow-x: visible;
}

#artistStickersSection {
  text-align: center;
}

.artistStickerTile {
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: 16px;
  padding: 8px;
  cursor: pointer;
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 120px;
  overflow: hidden;
}

.artistStickerTile img {
  width: 100%;
  max-width: 88px;
  max-height: 88px;
  height: auto;
  object-fit: contain;
  display: block;
}

.artistStickerTile .stickerLabel {
  display: block;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

/* Artist Directory */
.artistDirectory {
  display: grid;
  gap: 9px;
  margin: 20px 0;
}

.artistCard {
  position: relative;
  padding: 12px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.58);
  box-shadow: var(--inner-glow);

  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  column-gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.artistCardName {
  /* max-width: 90px; */
  margin: 0;
  color: var(--accent-ink);
  font-weight: 800;
  font-size: 1rem;
  /* overflow: hidden; */
  /* text-overflow: ellipsis; */
  white-space: wrap;
  font-size: 20px;
  text-align: center;
}

.artistCardName a {
  color: inherit;
  text-decoration: none;
}

.artistCardName a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.artistCardStickerRow {
  min-width: 0;
  overflow: hidden;

  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: space-around;

  -webkit-mask-image: linear-gradient(
    to right,
    black 0%,
    black 82%,
    transparent 100%
  );
  mask-image: linear-gradient(to right, black 0%, black 82%, transparent 100%);
}

.artistCardStickerRow img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.artistCardShop {
  display: grid;
  place-items: center;
  text-align: center;
}

.artistCardShopLink {
  position: relative;
  z-index: 1;
  color: var(--accent-ink);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
}

/* .artistLinkPrimary {
  background: color-mix(in srgb, var(--accent) 28%, white) !important;
  font-weight: 900 !important;
} */

.btn.catBack {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-align: center;
  border-radius: 999px;
  min-height: 30px;
  font-size: 18px;
  padding: 0 10px;
  line-height: 1;
}

.btn.catBack i {
  font-size: 0.85em;
}

.btn.catFilterToggle {
  grid-column: 3;
  justify-self: end;

  width: 30px;
  min-height: 30px;
  padding: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.catFilterToggle[aria-expanded="true"] {
  background: color-mix(in srgb, var(--accent) 26%, white);
  border-color: color-mix(in srgb, var(--accent) 55%, var(--border));
}

.btn.Tab.catBack {
  padding: 0 29.5px;
  line-height: 1;
}

#artistStickerHeading {
  margin: 0;
  text-align: center;
}

#artistStickerCount {
  margin: 10px 0;
}

.menu-item.artistLinkPrimary {
  /* background: lime !important; */
  padding: 12px 44px;
  font-size: 1.1rem;
  text-align: center;
}

/* TEMP: show weekly share card for CSS editing */
/* .weekly-share-card {
  left: 50% !important;
  top: 20px !important;
  transform: translateX(-50%);
} */
