﻿/* ============================================================
   Sections CSS (part 2) — news / hours / depts / admission /
   doctors / access / blog / cta / footer
   ============================================================ */

section { scroll-margin-top: 120px; }

/* ---------- News ---------- */
.news { padding-block: var(--pad-section); }
.news-inner {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}
.news-year-label {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--ink-soft); font-family: ui-monospace, monospace;
  padding: 0 0 8px 0; opacity: 0.6;
}
.news-list { list-style: none; margin: 0; padding: 0; }
.news-row {
  display: grid;
  grid-template-columns: auto auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 20px 6px;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: background 0.18s;
}
.news-row:first-child { border-top: 1px solid var(--line); }
.news-row:hover { background: var(--primary-tint); }
.news-date { font-size: 13px; font-weight: 700; color: var(--ink-soft); letter-spacing: 0.04em; font-family: ui-monospace, monospace; }
.news-cat {
  font-size: 13px; font-weight: 700; letter-spacing: 0.04em;
  padding: 4px 12px; border-radius: var(--r-pill);
  background: var(--surface-2); color: var(--ink-soft);
  white-space: nowrap;
}
.news-cat-alert { background: color-mix(in oklab, var(--accent) 20%, var(--surface)); color: var(--accent); }
.news-cat-soft { background: var(--primary-soft); color: var(--primary-deep); }
.news-text { font-size: 15px; color: var(--ink); line-height: 1.6; }
.news-arrow { color: var(--ink-faint); }

/* ---------- Hours ---------- */
.hours { padding-block: var(--pad-section); background: var(--surface-2); }
.hours-head { margin-bottom: 24px; }
.hours-card { max-width: 920px; margin-inline: auto; padding: clamp(20px, 3vw, 36px); }
.hours-table-scroll { overflow-x: visible; }
.hours-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 6px;
}
.hours-table th, .hours-table td { text-align: center; }
.hours-table thead th {
  font-size: 15px; font-weight: 700; color: var(--ink);
  padding: 10px 0;
  background: var(--surface-2);
  border-radius: var(--r-sm);
}
.hours-table thead th.is-off { color: var(--accent); background: var(--accent-soft); }
.hours-corner { background: transparent !important; }
.hours-table tbody th {
  text-align: left;
  padding: 16px 18px;
  background: var(--surface-2);
  border-radius: var(--r-sm);
  white-space: nowrap;
}
.hours-table tbody th strong { display: block; font-size: 15px; color: var(--ink); }
.hours-table tbody th span { font-size: 14px; color: var(--ink-soft); font-family: ui-monospace, monospace; }
.hours-table td {
  padding: 16px 0;
  border-radius: var(--r-sm);
  font-weight: 700;
}
.hours-table td.open { background: var(--primary-soft); color: var(--primary-deep); }
.hours-table td.open .mark-dot { color: #1a1a1a; font-size: 15px; line-height: 1; display: inline-block; }
.hours-table td.closed { background: color-mix(in oklab, var(--surface-3) 55%, var(--surface)); color: var(--ink-faint); }
.hours-table td .dash { font-size: 15px; }
.hours-notes {
  list-style: none; margin: 28px 0 0; padding: 22px 0 0;
  border-top: 1px dashed var(--line);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px;
}
.hours-notes li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink-soft); line-height: 1.6;
}
.hours-notes li svg { color: var(--primary); flex: none; margin-top: 2px; }
.hours-notes strong { color: var(--ink); }

/* ---------- Departments ---------- */
.depts { padding-block: var(--pad-section); }
.depts-head { margin-bottom: 28px; }
.depts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.dept-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 36px);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  position: relative; overflow: hidden;
  --dc: var(--primary); --dcd: var(--primary-deep); --dcl: var(--primary-soft);
}
.dept-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 6px; background: var(--dc); }
.dept-card:hover { transform: translateY(-4px); box-shadow: 0 18px 44px -20px var(--dcd); border-color: color-mix(in oklab, var(--dc) 36%, var(--line)); }
.dept-card-head { display: flex; align-items: center; gap: 16px; }
.dept-icon {
  width: 60px; height: 60px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--dcd); color: #fff;
}
.dept-titles { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.dept-titles h3 { font-size: 18px; letter-spacing: 0.04em; }
.dept-badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 18.5px; font-weight: 700;
  padding: 5px 12px; border-radius: var(--r-pill);
  background: var(--dcl); color: var(--dcd);
}
.dept-lead { margin-top: 16px; font-size: 15px; color: var(--ink); font-weight: 500; }
.dept-symptoms-label {
  margin-top: 22px; font-size: 18.5px; font-weight: 700;
  letter-spacing: 0.08em; color: var(--dcd);
}
.dept-symptoms { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 9px; }
.dept-symptoms li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink-soft); line-height: 1.6;
}
.dept-symptoms li svg { color: var(--dc); flex: none; margin-top: 3px; }
.dept-extra {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 14px; color: var(--ink-soft); line-height: 1.55;
}
.dept-extra span {
  display: inline-block; font-weight: 700; color: var(--ink);
  background: var(--surface-2); padding: 2px 10px; border-radius: var(--r-pill);
  margin-right: 8px; font-size: 13px;
}
.dept-facility { margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--line); }
.dept-facility > span { font-weight: 700; font-size: 13px; color: var(--ink); }
.dept-facility-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }
.dept-facility-tags em {
  font-style: normal; font-size: 14px; font-weight: 700;
  padding: 6px 13px; border-radius: var(--r-pill);
  background: var(--dcl); color: var(--dcd);
}
/* per-department accent colors */
.depts-grid .dept-card:nth-child(1) { --dc:#2bad78; --dcd:#147a52; --dcl:#e2f1e8; }
.depts-grid .dept-card:nth-child(2) { --dc:#2f80c4; --dcd:#1f6299; --dcl:#e6f0fa; }
.depts-grid .dept-card:nth-child(3) { --dc:#e0922b; --dcd:#a96a12; --dcl:#fbeed6; }
.depts-grid .dept-card:nth-child(4) { --dc:#27a8ae; --dcd:#147b80; --dcl:#e0f2f3; }

/* ---------- Stats band ---------- */
.stats-band { padding-block: clamp(36px, 4vw, 56px); }
.stats-band-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
  background: linear-gradient(135deg, var(--primary-deep), color-mix(in oklab, var(--primary) 86%, black));
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 40px) clamp(20px, 3vw, 36px);
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.stats-band-inner::after {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.14) 1px, transparent 1.6px);
  background-size: 26px 26px;
  mask-image: radial-gradient(80% 120% at 100% 0%, #000, transparent 62%);
  pointer-events: none;
}
.stat-item {
  position: relative; text-align: center; color: #fff;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  padding: 4px 0;
}
.stat-item + .stat-item::before {
  content: ""; position: absolute; left: -8px; top: 12%; bottom: 12%;
  width: 1px; background: rgba(255,255,255,0.18);
}
.stat-ic {
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: var(--r-md); background: rgba(255,255,255,0.16); color: #fff;
  margin-bottom: 4px;
}
.stat-num { font-size: clamp(34px, 4.4vw, 48px); font-weight: 700; letter-spacing: 0.02em; line-height: 1; }
.stat-num small { font-size: 0.46em; font-weight: 700; margin-left: 3px; }
.stat-label { font-size: 14px; font-weight: 700; color: rgba(255,255,255,0.88); letter-spacing: 0.06em; }

/* ---------- Admission ---------- */
.admission { padding-block: var(--pad-section); background: var(--surface-2); }
.admission-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 68px); align-items: center;
}
.admission-lead { margin-top: 18px; font-size: 15px; color: var(--ink-soft); line-height: 1.6; }
.admission-stats { display: flex; gap: 16px; margin-top: 28px; flex-wrap: wrap; }
.admission-stat {
  flex: 1; min-width: 150px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 20px;
  display: flex; flex-direction: column; gap: 4px;
}
.admission-stat-icon {
  width: 48px; height: 48px; display: grid; place-items: center;
  border-radius: 50%; background: var(--primary-deep); color: #fff;
  margin-bottom: 8px;
}
.admission-stat strong { font-size: 22px; color: var(--ink); letter-spacing: 0.02em; }
.admission-stat strong small { font-size: 14px; font-weight: 700; margin-left: 3px; }
.admission-stat > span { font-size: 14px; color: var(--ink-soft); }
.admission-note {
  display: flex; align-items: flex-start; gap: 10px;
  margin-top: 24px; font-size: 14px; color: var(--ink-soft); line-height: 1.55;
}
.admission-note svg { color: var(--primary); flex: none; margin-top: 2px; }
.admission-photo { aspect-ratio: 4 / 3.4; border-radius: var(--r-lg); box-shadow: var(--shadow-md); border: 6px solid var(--surface); }

/* ---------- Doctors ---------- */
.doctors { padding-block: var(--pad-section); }
.doctors-head { margin-bottom: 28px; }
.doctors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.doctor-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.doctor-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.doctor-photo { aspect-ratio: 4 / 3.2; }
.doctor-body { padding: 22px 24px 26px; }
.doctor-role {
  display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: 0.06em;
  color: var(--primary-deep); background: var(--primary-soft);
  padding: 4px 12px; border-radius: var(--r-pill);
}
.doctor-name { margin-top: 12px; font-size: 17px; letter-spacing: 0.05em; }
.doctor-spec { margin-top: 8px; font-size: 14px; color: var(--ink-soft); }

/* ---------- Access ---------- */
.access { padding-block: var(--pad-section); background: var(--surface-2); }
.access-inner { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.access-addr { margin-top: 18px; font-size: 15px; font-weight: 700; color: var(--ink); line-height: 1.55; }
.access-list { list-style: none; margin: 24px 0 0; padding: 0; display: grid; gap: 14px; }
.access-list li { display: flex; align-items: center; gap: 14px; font-size: 15px; color: var(--ink); }
.access-ic {
  width: 46px; height: 46px; flex: none; display: grid; place-items: center;
  border-radius: 50%; background: var(--primary-deep); color: #fff;
}
.access-contact { display: flex; align-items: center; gap: 18px; margin-top: 30px; flex-wrap: wrap; }
.access-fax { font-size: 14px; font-weight: 700; color: var(--ink-soft); letter-spacing: 0.03em; }
.access-media { display: grid; grid-template-columns: 1.4fr 1fr; gap: 16px; min-width: 0; }
.access-media > * { min-width: 0; }
.access-map { aspect-ratio: 1 / 1; border-radius: var(--r-lg); box-shadow: var(--shadow-md); border: 6px solid var(--surface); overflow: hidden; }
.access-photo { aspect-ratio: 1 / 1; border-radius: var(--r-lg); box-shadow: var(--shadow-md); border: 6px solid var(--surface); align-self: stretch; }

/* ---------- Blog ---------- */
.blog { padding-block: var(--pad-section); }
.blog-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 26px; }
.blog-more { display: inline-flex; align-items: center; gap: 7px; font-weight: 700; color: var(--primary-deep); font-size: 14px; }
.blog-more:hover { gap: 11px; }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-thumb { aspect-ratio: 16 / 10; }
.blog-body { padding: 20px 22px 24px; }
.blog-meta { display: flex; align-items: center; gap: 12px; }
.blog-meta time { font-size: 18.5px; font-weight: 700; color: var(--ink-soft); font-family: ui-monospace, monospace; }
.blog-cat { font-size: 13px; font-weight: 700; padding: 3px 10px; border-radius: var(--r-pill); background: var(--primary-soft); color: var(--primary-deep); }
.blog-title { margin-top: 12px; font-size: 15px; line-height: 1.55; letter-spacing: 0.02em; }

/* ---------- Recruit ---------- */
.recruit { padding-block: var(--pad-section); }
.recruit-band {
  position: relative;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
  background: linear-gradient(135deg, var(--primary-deep), color-mix(in oklab, var(--primary) 88%, black));
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.5vw, 44px);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.recruit-deco {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.16) 1px, transparent 1.6px);
  background-size: 26px 26px;
  mask-image: radial-gradient(90% 120% at 0% 0%, #000, transparent 60%);
  pointer-events: none;
}
.recruit-head { position: relative; color: #fff; }
.recruit-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.1em;
  color: #fff; background: rgba(255,255,255,0.16);
  padding: 7px 15px; border-radius: var(--r-pill);
}
.recruit-head h2 {
  margin-top: 16px;
  font-size: clamp(20px, 2.6vw, 28px);
  line-height: 1.35; letter-spacing: 0.03em; color: #fff;
}
.recruit-head h2 mark {
  background: none; color: #fff;
  box-shadow: inset 0 -0.36em 0 rgba(255,255,255,0.22);
  padding: 0 2px;
}
.recruit-lead {
  margin-top: 20px; font-size: 15px; line-height: 1.6;
  color: rgba(255,255,255,0.9); max-width: 34ch;
}
.recruit-actions { display: flex; align-items: center; gap: 20px; margin-top: 30px; flex-wrap: wrap; }
.recruit-btn {
  background: #fff; color: var(--primary-press);
  box-shadow: 0 12px 26px -12px rgba(0,0,0,0.5);
}
.recruit-btn:hover { background: var(--primary-tint); transform: translateY(-2px); }
.recruit-tel {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700; color: #fff; letter-spacing: 0.04em;
}
.recruit-tel svg { opacity: 0.85; }

.recruit-jobs { position: relative; }
.recruit-jobs-label {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.78); margin-bottom: 10px;
}
.recruit-cards { display: grid; gap: 12px; }
.job-card {
  display: flex; align-items: center; gap: 14px;
  background: var(--surface);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  transition: transform 0.18s;
}
.job-card:hover { transform: translateX(6px); }
.job-icon {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--primary-deep); color: #fff;
}
.job-text { display: flex; flex-direction: column; gap: 3px; }
.job-text h3 { font-size: 16px; letter-spacing: 0.04em; color: var(--ink); }
.job-text p { font-size: 14px; color: var(--ink-soft); line-height: 1.5; }
.job-emp {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13px; font-weight: 700; color: var(--primary-deep);
  margin-top: 4px;
}
.recruit-note {
  display: flex; align-items: flex-start; gap: 9px;
  margin-top: 12px; font-size: 13px; line-height: 1.6;
  color: rgba(255,255,255,0.82);
}
.recruit-note svg { flex: none; margin-top: 2px; opacity: 0.85; }

/* ---------- Team / 部署・職種紹介 ---------- */
.team { padding-block: var(--pad-section); background: var(--surface-2); }
.team-head { margin-bottom: 28px; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.team-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in oklab, var(--primary) 30%, var(--line)); }
.team-photo { aspect-ratio: 16 / 9; }
.team-body { padding: 22px 24px 26px; }
.team-icon {
  width: 52px; height: 52px; display: grid; place-items: center;
  border-radius: var(--r-md); background: var(--primary-soft); color: var(--primary-deep);
  margin-bottom: 14px;
}
.team-titles { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.team-titles h3 { font-size: 16px; letter-spacing: 0.04em; color: var(--ink); }
.team-titles small { font-size: 13px; font-weight: 700; letter-spacing: 0.12em; color: var(--ink-faint); }
.team-desc { margin-top: 12px; font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* ---------- CTA ---------- */
.cta { padding-block: clamp(48px, 6vw, 84px); }
.cta-inner {
  background: linear-gradient(135deg, var(--primary-deep), color-mix(in oklab, var(--primary) 85%, black));
  border-radius: var(--r-lg);
  padding: clamp(32px, 5vw, 56px);
  display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.cta-inner::after {
  content: ""; position: absolute; right: -40px; top: -40px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(255,255,255,0.14), transparent 70%);
}
.cta-text { position: relative; }
.cta-text h2 { color: #fff; font-size: clamp(26px, 3.2vw, 36px); letter-spacing: 0.04em; }
.cta-text p { color: rgba(255,255,255,0.86); margin-top: 12px; font-size: 15px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; position: relative; }
.cta-btn { background: #fff; color: var(--primary-press); }
.cta-btn.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,0.6); }
.cta-btn.btn-ghost:hover { background: rgba(255,255,255,0.12); }
.cta-btn.btn-primary:hover { background: #fff; transform: translateY(-2px); }

/* ---------- Footer ---------- */
.footer { background: color-mix(in oklab, var(--ink) 94%, black); color: #d9d4ca; }
.footer-inner { display: grid; grid-template-columns: 1.2fr 1.8fr; gap: clamp(32px, 5vw, 72px); padding-block: clamp(48px, 6vw, 72px); }
.logo-foot .logo-text strong { color: #fff; }
.logo-foot .logo-text small { color: #a8a195; }
.footer-addr { margin-top: 20px; font-size: 14px; line-height: 1.6; color: #b8b2a6; }
.footer-pay { display: inline-flex; align-items: center; gap: 9px; margin-top: 18px; font-size: 18.5px; color: #d9d4ca; background: rgba(255,255,255,0.07); padding: 9px 15px; border-radius: var(--r-pill); }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col h4 { font-size: 14px; color: #fff; letter-spacing: 0.06em; margin-bottom: 16px; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 11px; }
.footer-col a { font-size: 14px; color: #b8b2a6; transition: color 0.18s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-block: 22px; flex-wrap: wrap; }
.footer-bottom-inner span { font-size: 18.5px; color: #948d81; }
.footer-depts { letter-spacing: 0.04em; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1180px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
  .header-phone-text small { display: none; }
}
@media (max-width: 880px) {
  body { font-size: 16px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-media { max-width: 560px; }
  .hero-photo-2 { display: none; }
  .hero-split .hero-inner { grid-template-columns: 1fr; }
  .quickbadges-inner { grid-template-columns: 1fr; }
  .news-inner { grid-template-columns: 1fr; gap: 20px; }
  .depts-grid { grid-template-columns: 1fr; }
  .admission-inner { grid-template-columns: 1fr; }
  .admission-photo { order: -1; aspect-ratio: 16 / 9; }
  .doctors-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .team-grid { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; }
  .access-inner { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; max-width: 440px; margin-inline: auto; }
  .footer-inner { grid-template-columns: 1fr; }
  .recruit-band { grid-template-columns: 1fr; }
  .recruit-head h2 br { display: none; }
}
@media (max-width: 560px) {
  .header-phone { padding: 6px; }
  .header-phone-text { display: none; }
  .noticebar { font-size: 13px; }
  .noticebar-sep { display: none; }
  .noticebar-inner { gap: 6px; flex-direction: column; align-items: flex-start; padding-inline: 16px; }
  .noticebar-item { white-space: nowrap; }
  .hours-table { border-spacing: 3px; table-layout: fixed; }
  .hours-table colgroup { display: none; }
  .hours-corner { width: 72px; }
  .hours-table thead th { font-size: 13px; padding: 8px 0; }
  .hours-table tbody th { padding: 10px 6px; white-space: normal; width: 72px; }
  .hours-table tbody th strong { font-size: 13px; }
  .hours-table tbody th span { font-size: 11px; }
  .hours-table td { padding: 10px 0; }
  .hours-table td.open .mark-dot { font-size: 13px; }
  .hours-table td .dash { font-size: 13px; }
  .access-photo { display: none; }
  .access-media { grid-template-columns: 1fr; }
  .access-map { aspect-ratio: 4 / 3; }
  .qbadge { padding: 10px 12px; gap: 8px; }
  .qbadge-icon { width: 32px; height: 32px; }
  .hours-notes { grid-template-columns: 1fr; }
  .news-row { grid-template-columns: auto 1fr; row-gap: 6px; }
  .news-arrow { display: none; }
  .news-text { grid-column: 1 / -1; }
  .footer-nav { grid-template-columns: 1fr 1fr; }
  .stats-band-inner { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
  .stat-item:nth-child(3)::before, .stat-item:nth-child(odd)::before { display: none; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
}
