@font-face {
  font-family: Pretendard;
  src: url("/fonts/PretendardVariable.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --ink: #272922;
  --muted: #72766c;
  --gold: #886929;
  --line: #e5e7e0;
  --paper: #f6f6f1;
  --dark: #282e29;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: white;
  font:
    16px/1.7 Pretendard,
    system-ui,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid #a77a26;
  outline-offset: 4px;
}
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid #a77a26;
  outline-offset: 2px;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  word-break: keep-all;
  letter-spacing: -0.045em;
}
h1 {
  font-size: 48px;
  line-height: 1.25;
  font-weight: 700;
}
h2 {
  font-size: 26px;
  line-height: 1.4;
  font-weight: 650;
}
h3 {
  font-weight: 650;
}
button {
  border: 0;
}
img {
  display: block;
  max-width: 100%;
}
.wrap {
  max-width: 1200px;
  padding: 0 30px;
  margin: auto;
}
.header {
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}
.brand {
  display: inline-flex;
  align-items: baseline;
  font-weight: 850;
  letter-spacing: -0.065em;
  font-size: 34px;
  line-height: 1;
}
.brand b {
  color: var(--gold);
}
.brand small {
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.02em;
  margin-left: 12px;
  color: var(--muted);
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 550;
}
.nav a:hover {
  color: var(--gold);
}
.nav .nav-owner {
  color: var(--gold);
  padding-left: 22px;
  border-left: 1px solid var(--line);
}
.hero {
  padding: 66px 0 54px;
  position: relative;
  isolation: isolate;
}
.hero-photo {
  position: absolute;
  z-index: -1;
  inset: 0 -30px 0 18%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 48%);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
}
.hero-photo:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, #fff 0%, #ffffffc9 23%, #ffffff00 70%),
    linear-gradient(0deg, #fff, #ffffff00 28%);
}
.eyebrow {
  display: block;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 18px;
}
.hero h1 em {
  font-style: normal;
  color: var(--gold);
}
.hero-content {
  max-width: 650px;
}
.hero p {
  margin-top: 22px;
  color: #65685e;
  max-width: 530px;
}
.search {
  display: flex;
  gap: 15px;
  align-items: center;
  border: 1px solid #5b6153;
  background: #fff;
  border-radius: 5px;
  padding: 8px 8px 8px 19px;
  height: 68px;
  margin-top: 28px;
}
.search svg {
  width: 22px;
  flex: none;
  color: #747b6c;
}
.search input {
  border: 0;
  background: none;
  min-width: 0;
  width: 100%;
  outline: none;
  font-size: 16px;
}
.search button {
  background: var(--dark);
  color: white;
  border-radius: 3px;
  padding: 12px 25px;
  white-space: nowrap;
  font-weight: 600;
  font-size: 14px;
}
.search button:hover,
.button.primary:hover {
  background: #414c3e;
}
.search-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  margin-top: 17px;
  color: #757c6f;
}
.near-link {
  font-weight: 600;
  color: #4d5e46;
}
.near-link svg {
  width: 16px;
  vertical-align: -3px;
  margin-right: 5px;
}
.section {
  padding: 39px 0;
  border-top: 1px solid var(--line);
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 25px;
  gap: 18px;
}
.section-title > p,
.section-title > a {
  font-size: 14px;
  color: var(--muted);
}
.region-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.region-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 16px 14px;
  font-weight: 550;
  font-size: 15px;
}
.region-grid a:hover {
  background: #f5f6ef;
}
.arrow {
  color: #9a9f90;
  font-weight: 400;
  font-size: 15px;
}
.intro-strip {
  background: var(--paper);
  padding: 24px 29px;
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 6px 0 42px;
}
.intro-strip strong {
  font-size: 17px;
  white-space: nowrap;
  font-weight: 650;
}
.intro-strip p {
  color: #6f7568;
  font-size: 14px;
}
.intro-strip a {
  white-space: nowrap;
  margin-left: auto;
  font-size: 14px;
  color: var(--gold);
}
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.guide-card {
  border-top: 2px solid #59634e;
  padding: 21px 0;
}
.guide-card .guide-no {
  font-size: 13px;
  color: var(--gold);
  letter-spacing: 0.1em;
  font-weight: 600;
}
.guide-card h3 {
  font-size: 21px;
  margin: 12px 0 9px;
}
.guide-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.guide-card:hover h3 {
  color: var(--gold);
}
.guide-card .arrow {
  display: block;
  margin-top: 17px;
}
.data-note {
  color: var(--muted);
  font-size: 12px;
  border-top: 1px solid var(--line);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.footer {
  padding: 35px 0 45px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 30px;
  align-items: flex-start;
}
.footer .brand {
  font-size: 28px;
}
.footer p {
  font-size: 12px;
  color: var(--muted);
  max-width: 430px;
}
.footer nav {
  display: flex;
  gap: 20px;
  margin-left: auto;
  font-size: 12px;
  color: #646c60;
}
.subpage {
  padding-top: 30px;
  padding-bottom: 65px;
  min-height: 65vh;
}
.breadcrumb {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  font-size: 12px;
  color: #81877b;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.page-heading {
  padding: 30px 0;
}
.page-heading h1 {
  font-size: 39px;
}
.page-heading p {
  color: var(--muted);
  margin-top: 16px;
  max-width: 770px;
  font-size: 15px;
}
.page-heading .eyebrow {
  margin-bottom: 13px;
}
.area-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.area-grid a {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  font-size: 14px;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.area-grid a:hover {
  background: var(--paper);
}
.area-grid a span {
  font-size: 12px;
  color: #8a917f;
}
.section-kicker {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 7px;
}
.results-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 28px 0 0;
  font-size: 14px;
}
.results-header small {
  font-size: 12px;
  color: var(--muted);
}
.shop-list {
  margin-top: 9px;
}
.shop-row {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}
.shop-symbol {
  width: 53px;
  height: 53px;
  display: grid;
  place-items: center;
  background: #f4f4ed;
  color: #8d815f;
  flex: none;
}
.shop-symbol svg {
  width: 24px;
}
.shop-info {
  min-width: 0;
  flex: 1;
}
.shop-info h2 {
  font-size: 21px;
  line-height: 1.4;
}
.shop-info h2 a:hover {
  color: var(--gold);
}
.shop-info p {
  color: #67705e;
  font-size: 14px;
  margin-top: 7px;
  overflow-wrap: anywhere;
}
.shop-info small {
  display: block;
  color: #929987;
  font-size: 12px;
  margin-top: 6px;
}
.shop-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid #d6dbce;
  border-radius: 3px;
  padding: 10px 19px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  background: white;
  color: #39432f;
}
.button:hover {
  background: #f5f6ef;
}
.button.primary {
  background: var(--dark);
  color: white;
  border-color: var(--dark);
}
.button svg {
  width: 16px;
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 30px;
  font-size: 14px;
}
.muted {
  color: var(--muted);
}
.notice {
  padding: 18px 22px;
  background: #f7f5ed;
  font-size: 14px;
  color: #7b6a44;
  margin: 24px 0;
}
.notice a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.empty {
  text-align: center;
  padding: 55px 25px;
  background: var(--paper);
  margin-top: 25px;
}
.empty h2 {
  font-size: 24px;
}
.empty p {
  margin: 14px 0 23px;
  color: var(--muted);
  font-size: 15px;
}
.carousel-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.carousel-card img {
  aspect-ratio: 1;
  object-fit: contain;
  border: 1px solid #e8e7de;
  background: #f7f6f0;
  width: 100%;
  height: auto;
}
.carousel-card figcaption {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
  margin-top: 10px;
  word-break: keep-all;
}
.carousel-card:hover img {
  border-color: #aa9561;
}
.carousel-card small {
  font-size: 12px;
  color: var(--muted);
}
.detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 60px;
  margin-top: 10px;
}
.detail-card img {
  border: 1px solid var(--line);
}
.detail-card figcaption {
  font-size: 13px;
  color: var(--muted);
  margin-top: 12px;
}
.info-block {
  border-top: 1px solid var(--line);
  padding: 26px 0;
}
.info-block h2 {
  font-size: 22px;
  margin-bottom: 14px;
}
.info-block p {
  font-size: 15px;
  color: #65705c;
}
.facts {
  margin: 0;
}
.facts > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 18px;
  font-size: 14px;
  padding: 11px 0;
}
.facts dt {
  color: #88917e;
}
.facts dd {
  margin: 0;
  overflow-wrap: anywhere;
}
.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.meta-label {
  display: inline-block;
  font-size: 12px;
  color: #7c825f;
  background: #f2f3e9;
  padding: 3px 8px;
  margin-bottom: 12px;
}
.text-link {
  font-size: 14px;
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.related {
  margin-top: 40px;
}
.related h2 {
  font-size: 22px;
  margin-bottom: 18px;
}
.related a {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding: 15px 0;
  font-size: 14px;
}
.guide-index {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 45px;
}
.guide-index > a {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  display: flex;
  gap: 24px;
}
.guide-index .number {
  color: #afa27b;
  font-size: 36px;
  font-weight: 300;
  line-height: 1.2;
}
.guide-index small {
  font-size: 12px;
  color: var(--gold);
}
.guide-index h2 {
  font-size: 23px;
  margin: 7px 0 10px;
}
.guide-index p {
  color: var(--muted);
  font-size: 14px;
}
.article {
  max-width: 860px;
}
.article .page-heading {
  padding-bottom: 33px;
  border-bottom: 2px solid #686e58;
}
.article .page-heading h1 {
  font-size: 40px;
}
.article-lead {
  padding: 27px 28px;
  background: var(--paper);
  margin-top: 32px;
  font-size: 20px;
  font-weight: 550;
  color: #5d654e;
}
.article-section {
  display: flex;
  gap: 26px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.article-section > span {
  color: #b0a580;
  font-size: 27px;
  font-weight: 300;
}
.article-section h2 {
  font-size: 23px;
  margin-bottom: 15px;
}
.article-section p {
  color: #626b5a;
  line-height: 1.95;
  word-break: keep-all;
}
.checklist {
  list-style: none;
  padding: 19px 23px;
  background: #f6f7f0;
  margin: 21px 0 0;
}
.checklist li {
  padding: 5px 0;
  font-size: 14px;
  color: #667257;
}
.checklist li:before {
  content: "✓";
  margin-right: 12px;
  color: #9d894d;
}
.article-sources {
  margin-top: 30px;
  padding: 22px 25px;
  background: var(--paper);
  font-size: 12px;
  color: var(--muted);
}
.article-sources a {
  display: block;
  text-decoration: underline;
  margin-top: 8px;
}
.prose {
  max-width: 820px;
}
.prose h2 {
  font-size: 23px;
  margin: 30px 0 13px;
}
.prose p,
.prose li {
  color: #65705d;
  font-size: 15px;
}
.prose ul {
  padding-left: 20px;
}
.form-wrap {
  max-width: 720px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  margin-bottom: 22px;
}
.field label {
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.field label small {
  font-weight: 400;
  color: var(--muted);
  margin-left: 5px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #d6ddce;
  border-radius: 3px;
  background: white;
  color: var(--ink);
}
.field textarea {
  resize: vertical;
  min-height: 150px;
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: #6d775f;
  margin: 15px 0 22px;
}
.consent input {
  margin-top: 6px;
}
.form-status {
  margin: 17px 0;
  font-size: 14px;
}
.form-status.error {
  color: #a23e30;
}
.hp {
  position: absolute;
  left: -10000px;
  visibility: hidden;
}
.location-panel {
  text-align: center;
  background: var(--paper);
  padding: 44px 20px;
  margin: 18px 0;
}
.location-panel svg {
  width: 35px;
  color: #958455;
}
.location-panel h2 {
  font-size: 25px;
  margin: 13px 0;
}
.location-panel p {
  font-size: 14px;
  color: var(--muted);
  max-width: 530px;
  margin: 0 auto 24px;
}
.radius-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin: 22px 0;
}
.radius-buttons button[aria-pressed="true"] {
  background: var(--dark);
  color: #fff;
}
.near-results {
  margin-top: 25px;
}
.skip {
  position: absolute;
  left: 20px;
  top: -60px;
  background: #fff;
  padding: 10px;
  z-index: 20;
}
.skip:focus {
  top: 10px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.bottom-note {
  font-size: 12px;
  color: var(--muted);
  margin-top: 25px;
}
.mobile-map {
  display: none;
}
@media (max-width: 1000px) {
  h1 {
    font-size: 43px;
  }
  .hero-content {
    max-width: 570px;
  }
  .hero-photo {
    left: 8%;
  }
  .carousel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .carousel-card img {
    max-height: 240px;
  }
  .detail-grid {
    gap: 30px;
    grid-template-columns: minmax(0, 1fr) 250px;
  }
  .area-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .guide-grid {
    gap: 23px;
  }
  .guide-card h3 {
    font-size: 19px;
  }
  .footer {
    flex-wrap: wrap;
  }
  .footer nav {
    margin-left: 0;
  }
}
@media (max-width: 700px) {
  body {
    font-size: 15px;
  }
  .wrap {
    padding: 0 20px;
  }
  .header {
    height: 76px;
  }
  .brand {
    font-size: 29px;
  }
  .brand small {
    font-size: 10px;
    margin-left: 8px;
  }
  .nav {
    gap: 17px;
    font-size: 12px;
  }
  .nav .nav-owner {
    display: none;
  }
  .hero {
    padding: 39px 0 36px;
  }
  h1 {
    font-size: 34px;
  }
  .eyebrow {
    font-size: 12px;
    margin-bottom: 17px;
  }
  .hero-photo {
    inset: 0 -20px auto 12%;
    height: 240px;
    opacity: 0.42;
  }
  .hero-photo img {
    object-position: 80% center;
  }
  .hero-photo:after {
    background: linear-gradient(0deg, #fff, #ffffff00 90%);
  }
  .hero p {
    font-size: 14px;
    max-width: 290px;
    line-height: 1.9;
    margin-top: 18px;
  }
  .search {
    height: 62px;
    padding-left: 14px;
    gap: 10px;
    margin-top: 25px;
  }
  .search input {
    font-size: 15px;
  }
  .search button {
    padding: 11px 18px;
  }
  .search-row {
    font-size: 12px;
    gap: 9px;
    align-items: center;
  }
  .section {
    padding: 29px 0;
  }
  .section-title {
    margin-bottom: 20px;
    align-items: flex-start;
  }
  .section-title h2 {
    font-size: 22px;
  }
  .section-title > p {
    display: none;
  }
  .section-title > a {
    font-size: 12px;
    white-space: nowrap;
  }
  .region-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .region-grid a {
    padding: 14px 12px;
    font-size: 14px;
  }
  .intro-strip {
    padding: 23px;
    display: block;
    margin-bottom: 29px;
  }
  .intro-strip p {
    font-size: 13px;
    margin-top: 9px;
  }
  .intro-strip a {
    display: inline-block;
    margin-top: 13px;
    font-size: 13px;
  }
  .guide-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .guide-card {
    padding: 21px 0;
    position: relative;
  }
  .guide-card h3 {
    font-size: 21px;
    margin: 7px 0;
  }
  .guide-card .arrow {
    position: absolute;
    right: 2px;
    top: 23px;
    margin: 0;
  }
  .guide-card p {
    font-size: 14px;
    max-width: 92%;
  }
  .guide-preview .guide-card:nth-child(n + 4) {
    display: none;
  }
  .data-note {
    display: block;
    font-size: 11px;
  }
  .data-note a {
    display: block;
    margin-top: 8px;
  }
  .footer {
    gap: 20px;
    padding: 26px 0 35px;
  }
  .footer p {
    font-size: 11px;
  }
  .footer nav {
    width: 100%;
    gap: 19px;
    font-size: 12px;
  }
  .subpage {
    padding-top: 22px;
    padding-bottom: 45px;
  }
  .page-heading {
    padding: 25px 0;
  }
  .page-heading h1 {
    font-size: 31px;
  }
  .page-heading p {
    font-size: 14px;
  }
  .area-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .area-grid a {
    padding: 12px;
    font-size: 13px;
  }
  .shop-row {
    gap: 14px;
    flex-wrap: wrap;
    padding: 23px 0;
  }
  .shop-symbol {
    width: 39px;
    height: 39px;
  }
  .shop-symbol svg {
    width: 20px;
  }
  .shop-info {
    flex-basis: calc(100% - 55px);
  }
  .shop-info h2 {
    font-size: 20px;
  }
  .shop-info p {
    font-size: 13px;
  }
  .shop-info small {
    font-size: 11px;
  }
  .shop-actions {
    width: 100%;
    justify-content: flex-start;
    padding-left: 53px;
  }
  .shop-actions .button {
    font-size: 12px;
    padding: 8px 13px;
  }
  .results-header {
    font-size: 13px;
    gap: 12px;
    align-items: flex-start;
  }
  .results-header small {
    font-size: 11px;
  }
  .carousel-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 0 0 16px;
  }
  .carousel-card {
    flex: 0 0 63%;
    scroll-snap-align: start;
  }
  .carousel-card img {
    max-height: none;
  }
  .carousel-card figcaption {
    font-size: 14px;
  }
  .detail-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
  }
  .detail-card {
    max-width: 300px;
    order: -1;
  }
  .detail-card img {
    max-height: 220px;
    object-fit: contain;
    width: 100%;
  }
  .detail-card figcaption {
    font-size: 12px;
  }
  .facts > div {
    grid-template-columns: 87px 1fr;
    gap: 12px;
    font-size: 13px;
  }
  .info-block h2 {
    font-size: 21px;
  }
  .info-block p {
    font-size: 14px;
  }
  .guide-index {
    grid-template-columns: 1fr;
  }
  .guide-index > a {
    padding: 25px 0;
    gap: 19px;
  }
  .guide-index h2 {
    font-size: 21px;
  }
  .guide-index .number {
    font-size: 30px;
  }
  .article .page-heading h1 {
    font-size: 31px;
  }
  .article-lead {
    font-size: 18px;
    padding: 23px;
  }
  .article-section {
    gap: 16px;
    padding: 28px 0;
  }
  .article-section > span {
    font-size: 23px;
  }
  .article-section h2 {
    font-size: 21px;
  }
  .article-section p {
    font-size: 15px;
    word-break: normal;
  }
  .checklist {
    padding: 15px 18px;
  }
  .checklist li {
    font-size: 13px;
  }
  .article-sources {
    padding: 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .field label {
    font-size: 14px;
  }
  .field input,
  .field textarea {
    font-size: 16px;
  }
  .notice {
    padding: 17px;
    font-size: 13px;
  }
  .prose p,
  .prose li {
    font-size: 14px;
  }
  .mobile-map {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 20px max(10px, env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: white;
    z-index: 10;
  }
  .mobile-map a {
    width: 100%;
  }
  body:has(.mobile-map) .footer {
    padding-bottom: 100px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
fieldset:disabled {
  opacity: 0.6;
}
fieldset:disabled button {
  cursor: not-allowed;
}
.region-grid {
  grid-template-columns: repeat(8, 1fr);
}
@media (max-width: 700px) {
  .region-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.page-heading p {
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.footer nav {
  flex-wrap: wrap;
}
@media (max-width: 370px) {
  .brand small {
    display: none;
  }
}
