/* Boone Events — week planner on dark spruce / ridge
   High Country, not SaaS. Warm ink on parchment. */

:root {
  --spruce: #0c1611;
  --spruce-mid: #14241b;
  --spruce-lift: #1c3226;
  --ridge: #24382c;
  --moss: #3d6b4f;
  --moss-bright: #4f8a64;
  --needles: #c5d6b8;
  --parchment: #f3e6c9;
  --parchment-deep: #e7d4a8;
  --rule: #c9b48a;
  --ink: #23180e;
  --ink-soft: #4a3724;
  --ember: #c45c22;
  --ember-deep: #8e3d12;
  --copper: #b87333;
  --today: #1f4d34;
  --out: #8a7a5e;
  --card-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
  --font-display: "Fraunces", "Iowan Old Style", Palatino, Georgia, serif;
  --font-body: "Source Serif 4", "Iowan Old Style", Georgia, serif;
  --font-ui: "Source Serif 4", Georgia, serif;
  --max: 78rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--needles);
  background: var(--spruce);
  background-image:
    radial-gradient(1200px 520px at 50% -10%, rgba(61, 107, 79, 0.28), transparent 60%),
    linear-gradient(180deg, #0e1a14 0%, #0c1611 40%, #0a120e 100%);
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  z-index: 80;
  padding: 0.4rem 0.75rem;
  background: var(--parchment);
  color: var(--ink);
  font-weight: 600;
  border-radius: 2px;
}

.skip-link:focus {
  top: 0.75rem;
}

.ridge {
  position: relative;
  height: 7.5rem;
  margin-top: -1px;
  overflow: hidden;
  pointer-events: none;
}

.ridge svg {
  display: block;
  width: 100%;
  height: 100%;
}

.wrap {
  width: min(var(--max), calc(100% - 1.75rem));
  margin: 0 auto;
}

/* ——— masthead ——— */
.mast {
  position: relative;
  isolation: isolate;
  min-height: clamp(14.85rem, 37.8vw, 23.4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.8rem 0 4.25rem;
  text-align: center;
  overflow: hidden;
}

.hero {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 38%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(12, 22, 17, 0.45) 0%,
      rgba(12, 22, 17, 0.18) 36%,
      rgba(12, 22, 17, 0.52) 70%,
      var(--spruce) 100%);
}

.kicker {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #d7b56a;
}

.mast h1,
.mast .mast-title {
  margin: 0;
  font-family: var(--font-display);
  font-optical-sizing: auto;
  font-size: clamp(2.4rem, 7vw, 4.1rem);
  font-weight: 560;
  font-style: italic;
  letter-spacing: -0.02em;
  line-height: 1;
  color: #f6edd6;
  text-shadow:
    0 1px 0 rgba(255, 248, 230, 0.42),
    0 -1px 0 rgba(12, 22, 17, 0.4),
    0 2px 28px rgba(0, 0, 0, 0.5);
}

.subhead {
  margin: 0.85rem auto 0;
  max-width: 34rem;
  color: #c9d6bc;
  font-size: 0.95rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.48);
}

.mast-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}
.mast-link:hover .place,
.mast-link:focus-visible .place {
  color: #e6c27a;
}

.place {
  margin: 1.425rem auto 0;
  color: #c9d6bc;
  font-size: 0.85rem;
  font-variant-caps: small-caps;
  letter-spacing: 0.06em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.48);
}

.window-note {
  margin: 0.65rem 0 0;
  color: #9eb49a;
  font-size: 0.95rem;
}

.status {
  margin: 1.1rem auto 0;
  max-width: 28rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(201, 180, 138, 0.28);
  border-radius: 999px;
  background: rgba(20, 36, 27, 0.65);
  color: #e6d7b0;
  font-size: 0.95rem;
}

.status[data-state="empty"] {
  color: #e8c27a;
}

.status[data-state="error"] {
  color: #f0b4a0;
}

/* ——— paper sheet ——— */
.sheet {
  position: relative;
  margin: 1.4rem auto 2.5rem;
  padding: 1.15rem 1.05rem 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 28%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 27px,
      rgba(180, 150, 90, 0.05) 28px
    ),
    var(--parchment);
  color: var(--ink);
  border: 0;
  box-shadow:
    0 0 0 7px #1a2a20,
    var(--card-shadow);
}

.sheet::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(90, 62, 28, 0.18);
  pointer-events: none;
}

@media (min-width: 860px) {
  .sheet {
    padding: 1.5rem 1.6rem 1.75rem;
  }
}


/* ——— town / category filters ——— */
.filters {
  scroll-margin-top: 0.4rem;
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 0.85rem;
  margin: 0 0 0.85rem;
  padding: 0 0 0.85rem;
  border-bottom: 1px solid rgba(90, 62, 28, 0.16);
}

.filter {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: min(14rem, 100%);
  flex: 1 1 12rem;
}

/* Hidden 2026-08-22: restore Town / Category / Keyword by uncommenting .filter span and gap: 0.22rem */
.filter span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.filter select,
.filter input {
  box-sizing: border-box;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  color-scheme: light;
  width: 100%;
  height: 2.6rem;
  min-height: 2.6rem;
  margin: 0;
  padding: 0 0.7rem;
  border: 1px solid #b79a62;
  border-radius: 3px;
  background: #f8edd4;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 2.55rem;
}

.filter select {
  padding-right: 2.1rem;
  background-color: #f8edd4;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='%235a3e1c' d='M1.1 1.7h9.8L6 6.6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 0.7rem 0.46rem;
}

.filter select::-ms-expand {
  display: none;
}

.filter select:focus,
.filter input:focus {
  outline: 2px solid var(--moss);
  outline-offset: 1px;
}

.filter input::placeholder {
  color: #8a7a5e;
  line-height: 2.55rem;
}

/* ——— week toolbar ——— */
.week-toolbar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin: 0 0 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(90, 62, 28, 0.18);
}

.week-range {
  margin: 0;
  flex: 1;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.2vw, 1.75rem);
  font-weight: 560;
  font-style: italic;
  text-align: center;
  color: var(--ink);
  line-height: 1.2;
}

.week-nav {
  appearance: none;
  flex: 0 0 auto;
  border: 1px solid rgba(90, 62, 28, 0.28);
  background: #efe3c0;
  color: var(--ink);
  font-family: var(--font-ui);
  font-size: 0.92rem;
  font-weight: 650;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  white-space: nowrap;
}

.week-nav:hover:not(:disabled) {
  background: #f6edd6;
}

.week-nav:disabled {
  opacity: 0.38;
  cursor: default;
}

.week-nav:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 2px;
}

/* ——— week grid: 7 large columns, wrap on narrow screens ——— */
.week {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.55rem;
}

@media (min-width: 560px) {
  .week {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 920px) {
  .week {
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.45rem;
  }
}

.day {
  position: relative;
  min-height: 18rem;
  padding: 0.55rem 0.55rem 0.65rem;
  border: 1px solid rgba(90, 62, 28, 0.16);
  background: rgba(255, 250, 236, 0.35);
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

@media (min-width: 920px) {
  .day {
    min-height: 24rem;
    padding: 0.5rem 0.45rem 0.55rem;
  }
}

.day.is-out {
  background: rgba(196, 178, 140, 0.18);
  color: var(--out);
}

.day.is-today {
  background: #e6f0e4;
  box-shadow: inset 0 0 0 2px var(--today);
}

.day.has-events {
  background: #fffaf0;
}

.day.is-today.has-events {
  background: #e6f0e4;
}

.day-btn {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  font: inherit;
  color: inherit;
  text-align: left;
  cursor: pointer;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-height: 100%;
}

.day-btn:disabled {
  cursor: default;
}

.day-btn:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 1px;
}

.day-head {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}

.day-name {
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.day-num {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 620;
  line-height: 1;
  color: inherit;
}

.day.is-out .day-name,
.day.is-out .day-num {
  color: var(--out);
}

@media (min-width: 920px) {
  .day-name {
    font-size: 0.92rem;
  }
  .day-num {
    font-size: 1.55rem;
  }
}

.dots {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-height: 0.5rem;
}

.dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--ember);
}

.dot.music { background: #8b3d1c; }
.dot.theater { background: #5a3d7a; }
.dot.market { background: #2f6a3a; }
.dot.festival { background: #c45c22; }
.dot.community { background: #1f4d6b; }
.dot.sports { background: #7a4b12; }
.dot.other { background: #6a5340; }

.chips {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.chip {
  overflow: hidden;
  padding: 0.18rem 0.3rem;
  border: 0;
  border-radius: 2px;
  background: rgba(196, 92, 34, 0.12);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.78rem;
  line-height: 1.25;
  text-align: left;
  white-space: normal;
  text-overflow: unset;
}

@media (min-width: 920px) {
  .chip {
    font-size: 0.68rem;
    padding: 0.1rem 0.22rem;
  }
}

.more {
  font-size: 0.72rem;
  color: var(--ink-soft);
}

/* ——— list ——— */
.list-block {
  margin: 0;
}

.sheet .list-block .day-heading h3 {
  color: var(--ink);
}

.list-block h2 {
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 560;
  font-style: italic;
  color: #f3ead2;
}

.list-range {
  margin: 0 0 0.85rem;
  color: #c9b48a;
  font-size: 0.98rem;
}

.event-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.day-heading {
  margin: 1.15rem 0 0.15rem;
  padding: 0;
  list-style: none;
}

.day-heading:first-child {
  margin-top: 0.25rem;
}

.day-heading h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 560;
  font-style: italic;
  color: #f3ead2;
}

.event-row {
  width: 100%;
  display: grid;
  grid-template-columns: 4.35rem minmax(0, 1fr);
  gap: 0.4rem 0;
  align-items: center;
  padding: 0.82rem 1rem 0.82rem 0;
  border: 1px solid rgba(201, 180, 138, 0.34);
  border-left: 3px solid #c45c22;
  background:
    linear-gradient(180deg, rgba(255, 248, 230, 0.06), transparent 42%),
    rgba(20, 36, 27, 0.78);
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background 0.16s ease, border-color 0.16s ease;
}

.event-row:hover {
  background:
    linear-gradient(180deg, rgba(255, 248, 230, 0.1), transparent 42%),
    rgba(28, 50, 38, 0.9);
  border-color: rgba(215, 181, 106, 0.5);
}

.event-row.has-thumb {
  grid-template-columns: 4.35rem minmax(0, 1fr) 4.75rem;
  align-items: center;
  column-gap: 0;
  row-gap: 0.4rem;
  padding: 0.35rem 0.35rem 0.35rem 0;
}

.event-row .row-thumb {
  width: 4.4rem;
  height: 4.4rem;
  justify-self: end;
  margin-left: 0;
  object-fit: cover;
  object-position: center;
  border: 1px solid rgba(201, 180, 138, 0.28);
  background: #14241b;
}

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

.event-row:focus-visible {
  outline: 2px solid #e6c27a;
  outline-offset: 2px;
}

.event-row time {
  display: block;
  align-self: center;
  justify-self: stretch;
  width: auto;
  margin: 0;
  padding: 0;
  text-align: center;
  color: #d7b56a;
  font-size: 0.88rem;
  font-variant-numeric: tabular-nums;
  font-variant-caps: small-caps;
  line-height: 1.2;
}

.ap {
  font-variant-caps: small-caps;
}

.event-row strong {
  display: block;
  margin-bottom: 0.22rem;
  font-family: var(--font-display);
  font-weight: 560;
  line-height: 1.22;
  color: #f6edd6;
}

.event-row span.meta {
  display: block;
  color: #b7c6ae;
  font-size: 0.92rem;
  line-height: 1.22;
}

.event-row .venue {
  display: inline;
}

.event-row .town {
  display: inline-block;
  max-width: 100%;
}

.event-row .sep {
  margin: 0 0.4em;
}

.event-row .meta.is-wrapped .sep {
  visibility: hidden;
}

.empty-week {
  padding: 0.85rem 0.2rem;
  color: #9eb49a;
  font-style: italic;
}

/* ——— footer ——— */
.site-foot {
  padding: 0 0 2.5rem;
  text-align: center;
  color: #8fa392;
  font-size: 0.92rem;
}

.site-foot p {
  margin: 0.25rem 0;
}

/* ——— modal ——— */
.backdrop {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 1rem;
  background: rgba(6, 12, 9, 0.72);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.dialog {
  position: relative;
  width: min(34rem, 100%);
  max-height: min(94vh, 52rem);
  overflow: auto;
  padding: 1.25rem 1.25rem 1.2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 22%),
    var(--parchment);
  color: var(--ink);
  border: 1px solid #b79a62;
  box-shadow:
    0 0 0 1px #efe3c0 inset,
    0 22px 56px rgba(0, 0, 0, 0.5);
}

.dialog::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(90, 62, 28, 0.16);
  pointer-events: none;
}

.dialog h2,
.sheet article h1 {
  margin: 0 1.8rem 0.5rem 0;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid rgba(90, 62, 28, 0.18);
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 580;
  font-style: italic;
  line-height: 1.18;
  color: #3a2416;
  text-shadow:
    0 1px 0 rgba(255, 248, 230, 0.55),
    0 -1px 0 rgba(48, 28, 14, 0.18);
}

.close {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(90, 62, 28, 0.28);
  background: #efe3c0;
  color: var(--ink);
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
}

.close:focus-visible {
  outline: 2px solid var(--ember);
}

.card-thumb {
  margin: 0 0 0.55rem;
}

.card-thumb img {
  display: block;
  width: 100%;
  max-height: 9rem;
  object-fit: cover;
  object-position: center;
  background: #efe3c0;
  border: 1px solid rgba(90, 62, 28, 0.16);
}

.facts {
  margin: 0 0 0.65rem;
  padding: 0;
  list-style: none;
  color: var(--ink-soft);
}

.facts li {
  display: grid;
  grid-template-columns: 5.2rem minmax(0, 1fr);
  column-gap: 0.45rem;
  align-items: start;
  margin: 0;
  padding: 0.32rem 0;
  border-bottom: 1px solid rgba(90, 62, 28, 0.1);
  line-height: 1.35;
}

.facts .fact-val {
  min-width: 0;
  overflow-wrap: anywhere;
}

.facts li:last-child {
  border-bottom: 0;
}

.facts strong {
  display: block;
  min-width: 0;
  margin-right: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 620;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b5330;
}

.desc {
  margin: 0 0 1.2rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 0.15rem;
  gap: 0.5rem;
}

.actions a,
.actions .share {
  display: inline-block;
  margin: 0;
  padding: 0.48rem 0.9rem;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.25;
  vertical-align: middle;
}

.actions a {
  border: 1px solid #8e3d12;
  background: #c45c22;
  color: #fff8ee;
  text-decoration: none;
}

.actions a:hover {
  background: #d4682a;
}

.actions .share {
  border: 1px solid #6a5340;
  background: #efe3c0;
  color: #23180e;
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

.actions .share::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.35em;
  vertical-align: -0.18em;
  background-color: currentColor;
  -webkit-mask: url("../img/share.svg") center / contain no-repeat;
  mask: url("../img/share.svg") center / contain no-repeat;
}

.actions .share:hover {
  background: #f6edd6;
}

.actions a.source {
  background: transparent;
  border-color: #6a5340;
  color: var(--ink);
}

.actions a:focus-visible {
  outline: 2px solid var(--ember);
  outline-offset: 2px;
}

.day-sheet h2 {
  font-style: italic;
}

.day-sheet .event-list {
  margin-top: 0.6rem;
}

.day-sheet .event-row {
  background: rgba(255, 250, 236, 0.7);
  border-color: rgba(90, 62, 28, 0.2);
  border-left-color: #c45c22;
  color: var(--ink);
}

.day-sheet .event-row:hover {
  background: #fff8e8;
}

.day-sheet .event-row strong {
  color: var(--ink);
}

.day-sheet .event-row time,
.day-sheet .event-row span.meta {
  color: var(--ink-soft);
}

body.modal-open {
  overflow: hidden;
}

@keyframes mast-shimmer {
  0% { background-position: 140% 0; opacity: 1; }
  100% { background-position: -40% 0; opacity: 1; }
}

.mast h1,
.mast .mast-title,
.mast .subhead,
.mast .place {
  position: relative;
}

.mast h1::after,
.mast .mast-title::after,
.mast .subhead::after,
.mast .place::after {
  content: attr(data-shimmer);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  background-image: linear-gradient(
    115deg,
    transparent 12%,
    rgba(255, 255, 255, 0.88) 50%,
    transparent 88%
  );
  background-size: 240% 100%;
  background-repeat: no-repeat;
  background-position: 140% 0;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
  pointer-events: none;
  opacity: 0;
}

.mast .wrap.is-shimmer h1::after,
.mast .wrap.is-shimmer .mast-title::after,
.mast .wrap.is-shimmer .subhead::after,
.mast .wrap.is-shimmer .place::after {
  animation: mast-shimmer 1.7s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .backdrop { transition: none; }
  .mast .wrap.is-shimmer h1::after,
  .mast .wrap.is-shimmer .mast-title::after,
  .mast .wrap.is-shimmer .subhead::after,
  .mast .wrap.is-shimmer .place::after { animation: none; }
}

@media print {
  body {
    background: #fff;
    color: #000;
  }
  .ridge,
  .hero,
  .skip-link,
  .backdrop,
  .site-foot { display: none; }
  .sheet {
    box-shadow: none;
    border-color: #999;
  }
}

.vis-hide {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.subscribe {
  margin: 0 auto 2.5rem;
  text-align: center;
}
.subscribe a {
  color: #e6c27a;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
}
.dialog a.map {
  color: var(--ember-deep);
  text-underline-offset: 2px;
}


@media (max-width: 40rem) {
  .sheet {
    margin: 0.85rem auto 1.6rem;
    padding: 0.7rem 0.55rem 0.9rem;
    box-shadow:
      0 0 0 4px #1a2a20,
      var(--card-shadow);
  }
  .sheet::before {
    inset: 4px;
  }
  .mast {
    min-height: clamp(12.4rem, 31.5vw, 19.5rem);
    padding: 3.42rem 0 2.5rem;
  }
  .hero img {
    position: absolute;
    left: 0;
    top: -5.56%;
    width: 100%;
    height: 124%;
  }
  .dialog {
    padding: 1.05rem 1rem 1rem;
  }
  .dialog h2,
  .sheet article h1 {
    font-size: 1.45rem;
    margin-bottom: 0.4rem;
    padding-bottom: 0.35rem;
  }
  .facts li {
    padding: 0.26rem 0;
  }
  .card-thumb img {
    max-height: 7.5rem;
  }
  .desc {
    margin-bottom: 1rem;
  }
}
