/* KOTOLINK Kiba Park — KOTOLINK-KIBA-COMPLETE-ALIGN-01 */
:root {
  --ink: #17352c;
  --green: #164a38;
  --green2: #2f6d51;
  --gold: #c69b43;
  --cream: #f7f2e7;
  --paper: #fffdf8;
  --muted: #64736d;
  --line: #d8d1c2;
  --shadow: 0 18px 50px rgba(21, 53, 43, 0.12);
  --serif: "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Noto Sans JP", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: var(--sans);
  line-height: 1.85;
}
a { color: inherit; }
button, input, textarea { font: inherit; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
.wrap { width: min(1120px, calc(100% - 36px)); margin: auto; }

.skip {
  position: absolute;
  left: -9999px;
}
.skip:focus {
  left: 1rem;
  top: 1rem;
  z-index: 99;
  background: #fff;
  padding: 0.8rem;
}

.top {
  background: #0c3024;
  color: #fff;
}
.top .wrap {
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.brand-mark {
  flex: 0 0 36px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  object-fit: contain;
}
.brand small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  opacity: 0.75;
}
.nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}
.nav a { text-decoration: none; }
.nav a:hover,
.nav a:focus-visible { color: var(--gold); }
.model {
  font-size: 11px;
  letter-spacing: 0.16em;
  opacity: 0.7;
}

.crumb {
  padding: 18px 0;
  font-size: 13px;
  color: #557065;
}
.crumb a { text-decoration: none; }
.crumb a:hover { text-decoration: underline; }

.hero {
  position: relative;
  min-height: 670px;
  color: #fff;
  display: grid;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
  background: #24483c;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 34, 25, 0.88) 0%, rgba(7, 34, 25, 0.56) 42%, rgba(7, 34, 25, 0.08) 78%),
    linear-gradient(0deg, rgba(7, 34, 25, 0.65), transparent 55%);
  z-index: -1;
}
.hero > img {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero-copy {
  padding: 76px 0 68px;
  max-width: 720px;
}
.eyebrow,
.kicker {
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #f0cf79;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 8vw, 92px);
  line-height: 1.04;
  margin: 12px 0;
}
.lead {
  font-size: clamp(18px, 2.4vw, 25px);
  font-weight: 700;
  max-width: 680px;
}
.ai-note {
  display: inline-flex;
  margin-top: 18px;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.48);
  font-size: 12px;
}
.hero-note {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 2;
  color: #18372f;
  background: linear-gradient(135deg, #c69b43, #f0cf79);
  padding: 8px 14px;
  font-size: 11px;
  font-weight: 900;
  border-radius: 99px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  letter-spacing: 0.06em;
}
.photo-clean {
  position: relative;
  z-index: 2;
  overflow: hidden;
  background: #fff;
  isolation: isolate;
}
.photo-clean img {
  position: relative;
  z-index: 2;
}
.photo-clean:before,
.photo-clean:after {
  display: none !important;
  content: none !important;
}

.facts {
  margin-top: -28px;
  position: relative;
  z-index: 2;
}
.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--paper);
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.fact {
  padding: 26px;
  border-right: 1px solid var(--line);
}
.fact:last-child { border: 0; }
.fact b {
  display: block;
  font-family: var(--serif);
  font-size: 24px;
  color: var(--green);
}
.fact span {
  font-size: 12px;
  color: var(--muted);
}

section { padding: 86px 0; }
.section-head {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 30px;
  margin-bottom: 34px;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.25;
  margin: 0;
}
.section-head p {
  margin: 8px 0 0;
  color: var(--muted);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
}
.card h3 {
  font-family: var(--serif);
  font-size: 24px;
  margin: 4px 0 8px;
}
.icon { font-size: 28px; }

.story {
  background: #123d2e;
  color: #fff;
}
.story .section-head p { color: #bdd2c9; }
.story-title {
  font-family: var(--serif);
  font-size: 30px;
  margin: 0 0 12px;
}
.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 32px;
}
.time {
  background: #123d2e;
  padding: 24px;
}
.time b {
  display: block;
  color: #f0cf79;
  font-size: 20px;
}
.time p {
  font-size: 14px;
  margin: 8px 0 0;
  color: #e3eee9;
}

.media-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
}
.media,
.photo {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.media { aspect-ratio: 3 / 2; }
.photo { aspect-ratio: 4 / 3; }
.media:before,
.media:after,
.photo:before,
.photo:after {
  display: none !important;
  content: none !important;
}
.caption {
  padding: 14px 18px;
  background: #fff;
  color: var(--muted);
  font-size: 13px;
}
.media-stack { display: grid; gap: 24px; }

.zones {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.zone {
  background: var(--paper);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
}
.zone .photo {
  border-radius: 0;
  box-shadow: none;
}
.zone-copy { padding: 22px; }
.zone-copy h3 {
  font-family: var(--serif);
  font-size: 25px;
  margin: 0 0 8px;
}

.teacher {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 38px;
  align-items: center;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.teacher-img {
  aspect-ratio: 1;
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
}
.teacher blockquote {
  font-family: var(--serif);
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.55;
  margin: 8px 0;
}
.teacher small { color: var(--muted); }

.info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.info article {
  border-top: 4px solid var(--gold);
  background: #fff;
  padding: 23px;
}
.info h3 { margin: 0 0 8px; }

.gallery-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
  margin-bottom: 20px;
}
.gallery-toolbar h2 {
  font-family: var(--serif);
  font-size: 42px;
  margin: 4px 0;
}
.gallery-toolbar p {
  margin: 0;
  color: var(--muted);
}
.gallery-rule {
  margin: 0 0 20px;
  padding: 18px 20px;
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
  color: var(--muted);
  font-size: 14px;
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.gallery-card .photo {
  border-radius: 0;
  box-shadow: none;
}
.gallery-meta { padding: 12px; }
.gallery-meta b { display: block; }
.votes {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.vote {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 7px 10px;
  cursor: pointer;
}
.vote[aria-pressed="true"] {
  background: #e3f0e9;
  border-color: var(--green);
}
.btn {
  border: 0;
  background: var(--green);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.btn.secondary {
  background: #fff;
  color: var(--green);
  border: 1px solid var(--green);
}
#moreWrap { margin-top: 18px; }
.center { text-align: center; }
.empty {
  padding: 40px;
  text-align: center;
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: 14px;
  color: var(--muted);
}

.map-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 24px;
}
.map {
  min-height: 420px;
  border: 0;
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow);
}
.access-card {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
}
.access-card h3 { margin-top: 0; }

.source {
  font-size: 13px;
  color: var(--muted);
}
.source a {
  overflow-wrap: anywhere;
  color: var(--green);
  font-weight: 700;
}
.source ul { padding-left: 1.2rem; }
.source li { margin: 8px 0; }

dialog {
  width: min(620px, calc(100% - 28px));
  border: 0;
  border-radius: 22px;
  padding: 0;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}
dialog::backdrop { background: rgba(4, 25, 18, 0.72); }
.modal { padding: 28px; }
.modal h2 { margin-top: 0; }
.field { margin: 15px 0; }
.field label {
  display: block;
  font-weight: 800;
  margin-bottom: 6px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #aab7b1;
  border-radius: 10px;
}
.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}
.status {
  min-height: 1.8em;
  color: var(--green);
  font-weight: 700;
}

footer {
  background: #0c3024;
  color: #dce8e3;
  padding: 42px 0;
  margin-top: 70px;
}
footer strong { display: block; margin-bottom: 8px; }
footer p { margin: 0; }
footer .backlink {
  display: inline-block;
  margin-top: 14px;
  font-size: 13px;
  color: #f0cf79;
  text-decoration: none;
}
footer .backlink:hover { text-decoration: underline; }
footer small {
  display: block;
  margin-top: 14px;
  opacity: 0.7;
}

@media (max-width: 850px) {
  .nav,
  .model { display: none; }
  .fact-grid,
  .cards,
  .zones,
  .info { grid-template-columns: 1fr 1fr; }
  .timeline { grid-template-columns: 1fr 1fr; }
  .media-grid,
  .teacher,
  .map-grid { grid-template-columns: 1fr; }
  .teacher-img { max-width: 360px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
  .wrap { width: min(100% - 24px, 1120px); }
  .hero { min-height: 600px; }
  .hero-copy { padding-bottom: 50px; }
  .fact-grid,
  .cards,
  .zones,
  .info { grid-template-columns: 1fr; }
  .section-head {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  section { padding: 64px 0; }
  .timeline { grid-template-columns: 1fr; }
  .gallery-toolbar {
    align-items: stretch;
    flex-direction: column;
  }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 9px;
  }
  .gallery-meta { padding: 9px; }
  .votes { flex-direction: column; }
  .teacher { padding: 20px; }
  .fact {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .map { min-height: 320px; }
}

/* parks-batch-03-align */
.section-head.row{display:flex;align-items:end;justify-content:space-between;gap:16px}
.section-head.row h2{margin-bottom:0}
.section-head.row button,.gallery #more-wrap button{min-height:48px;padding:10px 22px;border-radius:999px;font-weight:800;cursor:pointer;border:2px solid #173f34;background:#173f34;color:#fff}
.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px;margin-top:30px}
.gallery-card{border:1px solid #dae2dd;border-radius:16px;overflow:hidden;background:#fff}
.gallery-card>img{width:100%;height:180px;object-fit:cover}
.gallery-card h3{padding:0 14px;font-size:19px;margin:10px 0 4px}
.gallery-card>p{padding:0 14px;font-size:15px;color:#5c6c67;margin:0 0 10px}
.votes{display:flex;gap:6px;padding:0 10px 14px}
.gallery-card .votes button{min-height:44px;padding:6px 8px;border:1px solid #dae2dd;border-radius:999px;background:#f6f8f6;color:#19312b;font-size:14px;cursor:pointer}
.gallery-card .votes button.active{background:#fff1bd;border-color:#d5a936}
#more-wrap{text-align:center;margin-top:26px}
.small{font-size:16px;color:#5c6c67}
.gallery.section{max-width:1180px;margin:auto;padding:110px 24px}
.access.section,.access{padding-top:80px;padding-bottom:80px;max-width:1180px;margin:auto;padding-left:24px;padding-right:24px;display:grid;grid-template-columns:1.05fr .95fr;gap:56px;align-items:center}
.access h2{margin-bottom:18px}
.access iframe{width:100%;height:420px;border:0;border-radius:24px}
.access ul{padding-left:22px}
.access .primary,.access a.primary,.gallery-teaser a.gallery-link{display:inline-flex;align-items:center;justify-content:center;min-height:48px;padding:10px 22px;border-radius:999px;text-decoration:none;font-weight:800;border:2px solid #d5a936;background:#d5a936;color:#142e27;margin-top:15px}
.gallery-teaser{
  background:linear-gradient(135deg,#e8f1eb 0%,#f4f7f2 55%,#eef5f1 100%);
  max-width:none;
  margin:0;
  padding:72px 24px;
}
.gallery-teaser__inner{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(260px,0.95fr) minmax(280px,1.05fr);
  gap:40px;
  align-items:center;
}
.gallery-teaser__copy h2{
  font-family:var(--serif);
  font-size:clamp(34px,4.5vw,52px);
  line-height:1.15;
  margin:8px 0 14px;
  color:var(--green);
}
.gallery-teaser__copy > p{
  margin:0 0 8px;
  max-width:34em;
  font-size:17px;
  color:#38544d;
  font-weight:600;
  line-height:1.8;
}
.gallery-teaser a.gallery-link{margin-top:18px}
.gallery-teaser__preview{
  position:relative;
  display:grid;
  grid-template-columns:1.4fr 1fr;
  grid-template-rows:1fr 1fr;
  gap:10px;
  min-height:280px;
  text-decoration:none;
  color:inherit;
}
.gallery-teaser__shot{
  margin:0;
  border-radius:16px;
  overflow:hidden;
  isolation:isolate;
  background:#fff;
  box-shadow:0 12px 32px rgba(18,50,41,.12);
}
.gallery-teaser__shot img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:transform .45s ease;
}
.gallery-teaser__shot--main{
  grid-row:1 / span 2;
  min-height:280px;
}
.gallery-teaser__preview:hover .gallery-teaser__shot img,
.gallery-teaser__preview:focus-within .gallery-teaser__shot img{
  transform:scale(1.04);
}
.gallery-teaser__badge{
  position:absolute;
  right:14px;
  bottom:14px;
  z-index:2;
  padding:8px 14px;
  border-radius:999px;
  background:rgba(12,48,36,.88);
  color:#fff;
  font-size:12px;
  font-weight:800;
  letter-spacing:.04em;
  box-shadow:0 8px 20px rgba(0,0,0,.2);
}
@media(max-width:850px){
  .gallery-teaser__inner{grid-template-columns:1fr;gap:28px}
  .gallery-teaser__preview{min-height:220px}
  .gallery-teaser__shot--main{min-height:220px}
}
@media(max-width:560px){
  .gallery-teaser{padding:56px 18px}
  .gallery-teaser__preview{grid-template-columns:1fr 1fr;grid-template-rows:auto;min-height:0}
  .gallery-teaser__shot--main{grid-column:1 / -1;grid-row:auto;aspect-ratio:16/9;min-height:0}
  .gallery-teaser__shot:not(.gallery-teaser__shot--main){aspect-ratio:4/3}
}
.kicker{font-size:15px;font-weight:800;letter-spacing:.16em;color:#d5a936}
footer.site-footer-align,body>footer:last-of-type{background:#112e27;color:#eaf2ee;padding:54px max(24px,calc((100vw - 1180px)/2));display:grid;gap:20px}
footer.site-footer-align .brand,body>footer:last-of-type .brand{display:flex;align-items:center;gap:10px}
footer.site-footer-align .brand strong,body>footer:last-of-type .brand strong{color:#fff;font-size:21px}
footer.site-footer-align .brand small,body>footer:last-of-type .brand small{color:#cbd9d3;font-size:14px}
footer.site-footer-align .sources,body>footer:last-of-type .sources{display:flex;gap:18px;flex-wrap:wrap;font-size:15px}
footer.site-footer-align .sources a,body>footer:last-of-type .sources a,footer.site-footer-align .backlink,body>footer:last-of-type .backlink{color:#f4d77c}
footer.site-footer-align>small,body>footer:last-of-type>small{font-size:14px}
dialog{width:min(620px,calc(100% - 36px));border:0;padding:0;background:transparent;max-height:92vh}
dialog::backdrop{background:#0b201bbd}
.modal-card{background:#fff;border-radius:24px;padding:32px;width:100%;position:relative;overflow:auto;max-height:92vh}
.modal-card h2{font-size:32px;margin:0 0 20px}
.modal-card label{display:grid;gap:6px;margin:14px 0;font-weight:800}
.modal-card input,.modal-card textarea{border:1px solid #aebcb5;border-radius:10px;padding:10px;min-height:48px;width:100%}
.modal-card textarea{min-height:90px}
.modal-card .consent{grid-template-columns:24px 1fr;font-weight:400}
.modal-card .consent input{min-height:auto;width:auto}
.close{position:absolute;right:18px;top:14px;border:0;background:none;font-size:34px;min-width:44px;min-height:44px;cursor:pointer}
.submit{width:100%;min-height:48px;border:0;border-radius:999px;background:#173f34;color:#fff;font-weight:800;cursor:pointer}
@media(max-width:800px){.access.section,.access,.gallery-grid{grid-template-columns:1fr}.gallery-grid{grid-template-columns:repeat(2,1fr)}.access iframe{height:330px}.section-head.row{flex-direction:column;align-items:flex-start}}
@media(max-width:480px){.gallery-grid{grid-template-columns:1fr}}

/* gallery header (site-header) */
.site-header {
  height: 76px;
  padding: 0 max(24px, calc((100vw - 1120px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fffdf8;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.site-header .brand {
  color: var(--green);
  text-decoration: none;
}
.site-header .brand img {
  border-radius: 50%;
  object-fit: contain;
  background: #fff;
}
.site-header .brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.site-header .brand strong {
  font-size: 18px;
}
.site-header .brand small {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  opacity: 1;
}
.site-header nav {
  display: flex;
  gap: 28px;
}
.site-header nav a {
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  min-height: 44px;
  display: flex;
  align-items: center;
}
@media (max-width: 800px) {
  .site-header { height: 68px; padding: 0 16px; }
  .site-header nav { display: none; }
}

/* kiba real-photo update 2026-08-01 */
.photo-showcase {
  max-width: 1180px;
  margin: 0 auto;
  padding: 72px 24px 24px;
}
.showcase-head { text-align: center; margin-bottom: 36px; }
.showcase-head h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.2;
  margin: 8px 0 16px;
}
.showcase-head h2 em {
  font-style: normal;
  color: var(--green);
  position: relative;
}
.showcase-head h2 em:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 8px;
  background: linear-gradient(90deg, rgba(198, 155, 67, 0.55), rgba(22, 74, 56, 0.35));
  z-index: -1;
  border-radius: 99px;
}
.showcase-lead {
  max-width: 680px;
  margin: 0 auto;
  color: #38544d;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.8;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.showcase-item {
  position: relative;
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 14px 40px rgba(18, 50, 41, 0.12);
  border: 1px solid rgba(198, 155, 67, 0.2);
  grid-column: span 4;
}
.showcase-item img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.showcase-item:hover img,
.showcase-item:focus-within img { transform: scale(1.04); }
.showcase-item figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: linear-gradient(0deg, rgba(8, 34, 28, 0.82), transparent);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.showcase-item--hero { grid-column: span 8; grid-row: span 2; }
.showcase-item--hero img { min-height: 460px; }
.showcase-item:nth-child(2),
.showcase-item:nth-child(3),
.showcase-item:nth-child(4) { grid-column: span 4; }
.showcase-item:nth-child(5),
.showcase-item:nth-child(6) { grid-column: span 6; }
.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 28px;
}
.photo-card {
  margin: 0;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(198, 155, 67, 0.25);
}
.photo-card .photo-clean { aspect-ratio: 4 / 3; }
.photo-card figcaption {
  padding: 18px 20px;
  font-size: 13px;
  background: linear-gradient(180deg, #fff, #faf6ec);
}
.photo-card strong { display: block; font-size: 17px; }
.photo-card small { color: var(--muted); }
@media (max-width: 850px) {
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-item,
  .showcase-item--hero,
  .showcase-item:nth-child(n) {
    grid-column: span 1;
    grid-row: auto;
  }
  .showcase-item--hero img,
  .showcase-item img { min-height: 200px; }
  .photo-pair { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .photo-showcase { padding: 56px 18px 8px; }
  .showcase-grid { grid-template-columns: 1fr; }
  .hero-note { right: 14px; top: 14px; font-size: 10px; }
}
