:root {
  color-scheme: light;
  font-family: Inter, Pretendard, "Noto Sans KR", "Segoe UI", sans-serif;
  background: #f4f6f8;
  color: #17202a;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-width: 320px;
  min-height: 100%;
  margin: 0;
}

body {
  background: #f4f6f8;
}

.topbar {
  min-height: 64px;
  border-bottom: 1px solid #d9dee5;
  background: #ffffff;
}

.topbar__inner,
main {
  width: min(100% - 40px, 1040px);
  margin: 0 auto;
}

.topbar__inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  color: #111820;
  font-size: 16px;
  font-weight: 800;
}

.state {
  color: #5d6875;
  font-size: 13px;
  font-weight: 700;
}

main {
  padding: 64px 0 48px;
}

.notice {
  max-width: 760px;
}

.eyebrow,
.market {
  margin: 0 0 12px;
  color: #52606d;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2,
p {
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  margin: 0;
  font-size: 36px;
  line-height: 1.25;
}

.summary {
  max-width: 700px;
  margin: 20px 0 0;
  color: #53606e;
  font-size: 16px;
  line-height: 1.7;
}

.destinations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.destination {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  padding: 28px;
  border: 1px solid #ccd3db;
  border-top: 4px solid #1e6a52;
  border-radius: 8px;
  background: #ffffff;
}

.destination--japan {
  border-top-color: #b04343;
}

.destination h2 {
  margin: 0;
  font-size: 21px;
  line-height: 1.4;
}

.destination p {
  margin: 10px 0 0;
  color: #66717d;
  font-size: 14px;
  line-height: 1.6;
}

.action {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border: 1px solid #1b2733;
  border-radius: 6px;
  color: #ffffff;
  background: #1b2733;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.action:focus-visible {
  outline: 3px solid #2f80ed;
  outline-offset: 3px;
}

.support {
  margin: 24px 0 0;
  color: #5d6875;
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 700px) {
  .topbar__inner,
  main {
    width: min(100% - 32px, 1040px);
  }

  main {
    padding-top: 40px;
  }

  h1 {
    font-size: 28px;
  }

  .destinations {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .destination {
    min-height: 220px;
    padding: 24px;
  }
}

@media (max-width: 380px) {
  .topbar__inner,
  main {
    width: min(100% - 24px, 1040px);
  }

  h1 {
    font-size: 25px;
  }

  .destination {
    padding: 20px;
  }
}
