:root {
  --cream: #fdf6e8;
  --cream2: #f4ecdf;
  --ink: #2b2118;
  --brown: #3d2b2b;
  --tan: #8a6a4e;
  --line: #ecdcc0;
  --orange: #d9622c;
  --orange-dark: #b8481f;
  --teal: #2a7d6f;
  --teal-dark: #1d5c52;
  --maroon: #b5354a;
  --yellow: #d1912a;
  --blue: #2c6b8f;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

img { max-width: 100%; display: block; }

/* ================= LOGIN PAGE ================= */
.login-body {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, #e8622c 0%, #d94f2b 35%, #b83a2e 70%, #7a2b3a 100%);
  padding: 20px;
}
.login-card {
  background: rgba(255,248,236,0.97);
  border-radius: 20px;
  padding: 40px 32px;
  max-width: 380px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.login-eyebrow {
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 10px;
}
.login-title {
  font-size: 26px;
  margin: 0 0 8px 0;
  color: var(--brown);
  line-height: 1.25;
}
.login-sub {
  font-size: 14px;
  color: var(--tan);
  margin: 0 0 24px 0;
}
.login-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.login-form input {
  padding: 14px 16px;
  border-radius: 12px;
  border: 2px solid var(--line);
  font-size: 16px;
  text-align: center;
  outline: none;
}
.login-form input:focus {
  border-color: var(--orange);
}
.login-form button {
  padding: 14px 16px;
  border-radius: 12px;
  border: none;
  background: var(--orange);
  color: #fff8ec;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease;
}
.login-form button:hover { background: var(--orange-dark); }
.login-error {
  color: var(--maroon);
  font-size: 13px;
  margin-top: 14px;
  margin-bottom: 0;
}

/* ================= TOP NAV ================= */
.topnav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(253,246,232,0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  padding: 10px 14px;
  -webkit-overflow-scrolling: touch;
}
.topnav a {
  flex: 0 0 auto;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--tan);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 20px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.topnav a:hover, .topnav a:active {
  background: var(--orange);
  color: #fff8ec;
}
.topnav .updated {
  margin-left: auto;
  font-size: 11px;
  color: var(--tan);
  padding: 8px 6px;
  white-space: nowrap;
  flex: 0 0 auto;
}
.topnav a.brand {
  font-weight: 800;
  color: var(--orange-dark);
}
.topnav a.active {
  background: var(--orange);
  color: #fff8ec;
}
.topnav a.minor { color: #c3ac8c; }
.topnav a.minor:last-child { margin-right: 2px; }

/* ================= HERO / COVER ================= */
.cover {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 88vh;
  width: 100%;
  text-align: center;
  color: #fff8ec;
  background-image:
    linear-gradient(to bottom, rgba(18,10,8,0.55) 0%, rgba(150,55,38,0.34) 42%, rgba(58,20,28,0.72) 82%, rgba(48,17,22,0.9) 100%),
    url('photos/hero.jpg');
  background-size: cover;
  background-position: center 60%;
}
/* subtle slow zoom so the photo feels alive on load */
.cover::before {
  content: "";
  position: absolute; inset: 0;
  background: inherit;
  background-size: cover;
  background-position: center 60%;
  animation: coverZoom 22s ease-out forwards;
  z-index: 0;
}
@keyframes coverZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1); }
}
.cover-inner {
  position: relative;
  z-index: 3;
  padding: 96px 24px 104px 24px;
}
.cover-text {
  position: relative;
  z-index: 3;
  max-width: 700px;
  margin: 0 auto;
}
.cover-eyebrow {
  letter-spacing: 5px;
  font-size: 12.5px;
  font-weight: 700;
  text-transform: uppercase;
  color: #ffe1b8;
  margin-bottom: 16px;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}
.cover h1 {
  font-size: clamp(34px, 7.5vw, 62px);
  margin: 0 0 12px 0;
  font-weight: 800;
  line-height: 1.08;
  text-shadow: 0 3px 26px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.5);
}
.cover h2 {
  font-size: clamp(15px, 2.6vw, 21px);
  font-weight: 400;
  margin: 0 0 28px 0;
  color: #ffe8d0;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}
.cover .dates {
  display: inline-block;
  background: rgba(30,15,12,0.35);
  border: 2px solid rgba(255,235,210,0.7);
  border-radius: 40px;
  padding: 10px 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1px;
  backdrop-filter: blur(4px);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.cover .stops {
  margin-top: 22px;
  font-size: 12.5px;
  color: #ffe8d0;
  letter-spacing: 1px;
  text-shadow: 0 1px 8px rgba(0,0,0,0.7);
}
.cover-scroll {
  display: inline-block;
  margin-top: 34px;
  color: #fff8ec;
  text-decoration: none;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 11px 22px;
  border-radius: 30px;
  background: rgba(217,98,44,0.85);
  box-shadow: 0 6px 20px rgba(0,0,0,0.35);
  transition: background 0.15s ease, transform 0.15s ease;
}
.cover-scroll:hover { background: var(--orange); transform: translateY(-2px); }
/* On wide screens keep the title on a single line */
@media (min-width: 900px) {
  .cover-text { max-width: 960px; }
  .cover h1 { white-space: nowrap; }
}

/* ================= CONTENT SECTIONS ================= */
.section {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 20px 8px 20px;
  scroll-margin-top: 60px;
}
.day-tag {
  display: inline-block;
  color: #fff;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 2px;
  padding: 6px 15px;
  border-radius: 20px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.day-tag.orange { background: var(--orange); }
.day-tag.teal { background: var(--teal); }
.day-tag.blue { background: var(--blue); }
.day-tag.yellow { background: var(--yellow); }
.day-tag.pink { background: var(--maroon); }

.section h1 {
  font-size: clamp(26px, 4.5vw, 34px);
  margin: 0 0 4px 0;
  color: var(--brown);
}
.section .subtitle {
  font-size: 15px;
  color: var(--tan);
  margin-bottom: 22px;
  font-style: italic;
}

.hero-photo {
  height: 34vh;
  min-height: 200px;
  max-height: 360px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-photo .scrim {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 55%;
  background: linear-gradient(to top, rgba(0,0,0,0.55), rgba(0,0,0,0));
}
.hero-photo .hero-label {
  position: absolute;
  bottom: 14px; left: 18px;
  color: #fff8ec;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

.card {
  background: #ffffff;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 16px;
  box-shadow: 0 3px 0 var(--line);
}
.card::after { content: ""; display: table; clear: both; }
.card h3 {
  margin: 0 0 6px 0;
  font-size: 18px;
  color: var(--maroon);
}
.card p { margin: 0; font-size: 14.5px; line-height: 1.6; color: #43362a; }
.card .meta {
  font-size: 12px;
  color: var(--tan);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  margin-bottom: 6px;
}
.card-thumb {
  float: right;
  width: 110px;
  height: 90px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 0 10px 14px;
  border: 2px solid var(--line);
}

.badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 12px;
  margin-right: 6px;
  margin-bottom: 6px;
  letter-spacing: 0.4px;
}
.badge.climb { background: #dff0e2; color: #216b3a; }
.badge.noclimb { background: #f3e1e1; color: #9a3b3b; }
.badge.swim { background: #dbeef5; color: #205a75; }
.badge.free { background: #f7ecd2; color: #8a6a20; }

.fact {
  background: var(--cream2);
  border-left: 5px solid var(--yellow);
  padding: 12px 16px;
  font-size: 13.5px;
  color: #6b5334;
  border-radius: 6px;
  margin: 16px 0 30px 0;
}

.tip-box {
  background: var(--cream2);
  border-radius: 14px;
  padding: 20px 24px;
  margin: 0 0 30px 0;
}
.tip-box h3 { margin-top: 0; color: var(--teal); font-size: 16.5px; }
.tip-box ul { margin: 8px 0 0 0; padding-left: 20px; }
.tip-box li { font-size: 13.5px; margin-bottom: 7px; color: #43362a; line-height: 1.5; }

.overview-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 4px 0 20px 0;
}
@media (max-width: 560px) {
  .overview-grid { grid-template-columns: 1fr; }
}
.overview-grid a {
  text-decoration: none;
  color: inherit;
}
.ogrid-item {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  height: 100%;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.ogrid-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}
.ogrid-item .num {
  font-size: 11.5px;
  font-weight: 800;
  color: var(--orange);
  letter-spacing: 1px;
}
.ogrid-item .name {
  font-size: 15.5px;
  font-weight: 800;
  color: var(--brown);
  margin: 2px 0;
}
.ogrid-item .desc { font-size: 12.5px; color: var(--tan); }

.intro-card {
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 14px;
  padding: 18px 22px;
  margin-bottom: 18px;
  font-size: 14.5px;
  line-height: 1.6;
}

.footer-note {
  text-align: center;
  font-size: 12px;
  color: #b3a084;
  letter-spacing: 1.5px;
  padding: 30px 20px 70px 20px;
  text-transform: uppercase;
}

.strip {
  height: 6px;
  width: 60px;
  background: repeating-linear-gradient(90deg, var(--orange) 0 10px, var(--teal) 10px 20px, var(--yellow) 20px 30px);
  margin-bottom: 22px;
  border-radius: 3px;
}

/* ================= HOME: ITINERARY TIMELINE ================= */
.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.tl-card {
  display: flex;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 3px 0 var(--line);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.tl-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(61,43,43,0.14);
}
.tl-photo {
  position: relative;
  flex: 0 0 40%;
  min-height: 190px;
  overflow: hidden;
}
.tl-photo img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.tl-card:hover .tl-photo img { transform: scale(1.05); }
.tl-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.05), rgba(0,0,0,0.28));
}
.tl-photo .day-tag {
  position: absolute;
  top: 12px; left: 12px;
  margin: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.tl-body {
  padding: 18px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tl-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.tl-head h3 {
  margin: 0;
  font-size: 21px;
  color: var(--brown);
}
.tl-badges { display: flex; flex-wrap: wrap; }
.tl-tagline {
  color: var(--orange-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.3px;
  margin: 4px 0 8px 0;
}
.tl-body p {
  margin: 0 0 12px 0;
  font-size: 14px;
  line-height: 1.55;
  color: #56463a;
}
.tl-more {
  margin-top: auto;
  font-size: 13px;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.3px;
}
@media (max-width: 560px) {
  .tl-card { flex-direction: column; }
  .tl-photo { flex-basis: auto; min-height: 170px; }
}

/* ================= DETAIL PAGE HERO ================= */
.detail-hero {
  position: relative;
  height: 56vh;
  min-height: 340px;
  max-height: 560px;
  overflow: hidden;
}
.detail-hero > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.detail-hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,15,15,0.82) 0%, rgba(30,15,15,0.25) 45%, rgba(30,15,15,0.12) 100%);
}
.detail-hero-text {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px 34px 24px;
  color: #fff8ec;
}
.detail-hero-text .crumb {
  display: inline-block;
  color: #ffe1b8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  opacity: 0.9;
}
.detail-hero-text .crumb:hover { opacity: 1; text-decoration: underline; }
.detail-hero-text .day-tag { margin-bottom: 12px; }
.detail-hero-text h1 {
  margin: 0;
  font-size: clamp(32px, 7vw, 56px);
  font-weight: 800;
  line-height: 1.05;
  text-shadow: 0 2px 16px rgba(0,0,0,0.4);
}
.hero-tagline {
  margin: 8px 0 14px 0;
  font-size: clamp(15px, 2.6vw, 19px);
  color: #ffe7cf;
  font-style: italic;
  max-width: 34em;
  text-shadow: 0 1px 8px rgba(0,0,0,0.5);
}
.hero-badges { display: flex; flex-wrap: wrap; }
.hero-badges .badge { font-size: 12px; padding: 4px 12px; }

/* ================= DETAIL BODY ================= */
.detail {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 20px;
}

/* stats bar */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  margin: -26px 0 34px 0;
  position: relative;
  z-index: 5;
  box-shadow: 0 8px 24px rgba(61,43,43,0.12);
}
.stat {
  padding: 16px 18px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat-label {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--orange);
  margin-bottom: 5px;
}
.stat-value {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brown);
  line-height: 1.35;
}
@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
}

/* current weather widget */
.weather {
  display: flex;
  align-items: center;
  gap: 16px;
  background: linear-gradient(135deg, #2c6b8f 0%, #2a7d6f 100%);
  color: #f2fbff;
  border-radius: 14px;
  padding: 14px 20px;
  margin: 0 0 22px 0;
  box-shadow: 0 4px 14px rgba(44,107,143,0.25);
}
.wx-icon { font-size: 34px; line-height: 1; flex: 0 0 auto; }
.wx-main { flex: 1 1 auto; min-width: 0; }
.wx-temp { font-size: 22px; font-weight: 800; letter-spacing: 0.3px; }
.wx-temp .wx-c { font-size: 14px; font-weight: 600; opacity: 0.8; }
.wx-label { font-size: 13px; opacity: 0.92; margin-top: 1px; }
.wx-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
  font-size: 12px;
  opacity: 0.92;
  flex: 0 0 auto;
  white-space: nowrap;
}
@media (max-width: 520px) {
  .weather { flex-wrap: wrap; gap: 10px 16px; }
  .wx-meta { flex-direction: row; gap: 14px; width: 100%; text-align: left; justify-content: flex-start; border-top: 1px solid rgba(255,255,255,0.25); padding-top: 8px; }
}

/* photo gallery */
.gallery-wrap { margin-bottom: 8px; }
.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.gitem {
  margin: 0;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: zoom-in;
  background: var(--cream2);
}
.gitem.lead { grid-column: 1 / -1; }
.gitem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gitem.lead img { max-height: 440px; }
.gitem:not(.lead) img { height: 200px; }
.gitem:hover img { transform: scale(1.06); }
.gitem figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px 12px 8px 12px;
  font-size: 12px;
  color: #fff8ec;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0));
  opacity: 0;
  transition: opacity 0.2s ease;
}
.gitem.lead figcaption { font-size: 13.5px; padding: 26px 16px 12px 16px; }
.gitem:hover figcaption { opacity: 1; }
@media (max-width: 560px) {
  .gitem:not(.lead) img { height: 140px; }
  .gitem figcaption { opacity: 1; } /* touch: always show */
}

/* content blocks */
.body { padding-top: 30px; }
.block { margin-bottom: 30px; }
.block h2 {
  font-size: clamp(20px, 3.4vw, 25px);
  color: var(--brown);
  margin: 0 0 12px 0;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--line);
}
.block p {
  font-size: 15.5px;
  line-height: 1.7;
  color: #43362a;
  margin: 0 0 14px 0;
}
.block p:last-child { margin-bottom: 0; }

.highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.highlight {
  background: #fff;
  border: 2px solid var(--line);
  border-left: 6px solid var(--teal);
  border-radius: 12px;
  padding: 16px 20px;
}
.highlight h3 {
  margin: 0 0 6px 0;
  font-size: 17px;
  color: var(--maroon);
}
.highlight p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: #43362a;
}

/* map button */
.map-cta { margin: 6px 0 30px 0; }
.map-cta a {
  display: inline-block;
  background: var(--teal);
  color: #fff8ec;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 22px;
  border-radius: 30px;
  transition: background 0.15s ease, transform 0.15s ease;
}
.map-cta a:hover { background: var(--teal-dark); transform: translateY(-1px); }

/* prev / next pager */
.pager {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-top: 2px solid var(--line);
  padding: 22px 0 10px 0;
}
.pager-link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  padding: 12px 18px;
  border-radius: 12px;
  border: 2px solid var(--line);
  background: #fff;
  min-width: 44%;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.pager-link:hover { border-color: var(--orange); transform: translateY(-2px); }
.pager-link.next { text-align: right; margin-left: auto; }
.pager-dir { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.6px; color: var(--tan); }
.pager-name { font-size: 16px; font-weight: 800; color: var(--brown); margin-top: 3px; }

/* ================= LIGHTBOX ================= */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20,12,12,0.92);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px 16px;
}
.lightbox.open { display: flex; }
.lb-figure {
  margin: 0;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lb-img {
  max-width: min(1100px, 94vw);
  max-height: 82vh;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.lb-cap {
  color: #fff8ec;
  text-align: center;
  margin-top: 14px;
  font-size: 14px;
  max-width: 700px;
}
.lb-caption { display: block; }
.lb-credit { display: block; font-size: 11.5px; color: #cbb79a; margin-top: 4px; letter-spacing: 0.3px; }
.lb-close, .lb-nav {
  position: absolute;
  background: rgba(255,248,236,0.12);
  border: none;
  color: #fff8ec;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.15s ease;
  line-height: 1;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255,248,236,0.28); }
.lb-close {
  top: 18px; right: 18px;
  width: 44px; height: 44px;
  font-size: 28px;
}
.lb-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 52px; height: 52px;
  font-size: 34px;
}
.lb-prev { left: 14px; }
.lb-next { right: 14px; }
@media (max-width: 560px) {
  .lb-nav { width: 42px; height: 42px; font-size: 26px; }
}

/* ================= CREDITS PAGE ================= */
.credits .credit-loc {
  font-size: 19px;
  color: var(--brown);
  margin: 24px 0 8px 0;
}
.credit-list {
  list-style: none;
  margin: 0 0 8px 0;
  padding: 0;
}
.credit-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.credit-cap {
  display: block;
  font-size: 14.5px;
  color: var(--brown);
  font-weight: 600;
}
.credit-meta {
  display: block;
  font-size: 12.5px;
  color: var(--tan);
  margin-top: 2px;
}
.credit-meta a { color: var(--teal); }
