/* Travel guide — long-form reading in a white block, same ground as the rest of the site.
 * The content is his prose from a Google Doc; this only sets it for reading.
 */
.travel-page { max-width: var(--w); margin: 0 auto; }

.travel-body {
  background: var(--block); box-shadow: var(--shadow);
  padding: 32px 40px 40px; max-width: none;
}

.travel-body h1 {
  font-family: var(--head); font-weight: 700; font-size: clamp(24px, 4vw, 34px);
  line-height: 1.15; margin: 34px 0 10px; color: var(--ink);
}
.travel-body h1:first-child { margin-top: 0; }
/* the # sections are the big dividers; give them a rule */
.travel-body h1 + p { margin-top: 6px; }
.travel-body h1:not(:first-child) {
  padding-top: 26px; border-top: 2px solid var(--rule2);
}

.travel-body h2 {
  font-family: var(--head); font-weight: 700; font-size: 21px;
  margin: 28px 0 6px; color: var(--ink);
}
.travel-body h3 {
  font-family: var(--sans); font-weight: 600; font-size: 16px;
  margin: 20px 0 4px; color: var(--ink);
}

.travel-body p { margin: 10px 0; max-width: 70ch; line-height: 1.65; color: var(--ink); }
.travel-body ul, .travel-body ol { max-width: 70ch; margin: 10px 0; padding-left: 22px; }
.travel-body li { margin: 6px 0; line-height: 1.6; }
.travel-body a { color: var(--link); }
.travel-body em { font-style: italic; }

/* ---- festivals page ---- */

.fest-note {
  background: #fbf6ee; border-left: 3px solid var(--accent);
  padding: 12px 16px; margin: 0 0 26px; font-size: 13.5px; color: var(--ink2);
  line-height: 1.55; max-width: 70ch;
}
.fest-note strong { color: var(--ink); font-weight: 600; }

.fest-gallery {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 18px; margin: 18px 0 30px;
}
.fest-shot { margin: 0; }
.fest-shot a { display: block; position: relative; line-height: 0; }
.fest-shot img {
  width: 100%; height: 230px; object-fit: cover; display: block;
  background: #f0f0ee; box-shadow: var(--shadow);
}
.fest-shot a:hover img { opacity: .92; }
.shot-video {
  position: absolute; left: 8px; bottom: 8px; line-height: 1;
  background: rgba(0,0,0,.66); color: #fff; font-family: var(--mono);
  font-size: 10px; letter-spacing: .08em; text-transform: uppercase; padding: 3px 6px;
}
.fest-shot figcaption {
  font-size: 12.5px; color: var(--ink2); line-height: 1.5; margin-top: 8px;
}
.fest-none {
  font-family: var(--mono); font-size: 12.5px; color: var(--ink3);
  border-top: 1px solid var(--rule); padding-top: 12px; margin-top: 14px;
}

@media (max-width: 40rem) {
  .travel-body { padding: 20px 18px 26px; }
  .fest-gallery { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 12px; }
  .fest-shot img { height: 150px; }
}
