* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: #fff9f0;
}

body {
  min-height: 100%;
  margin: 0;
  background:
    radial-gradient(circle at 15% 0%, rgba(132, 160, 145, .2), transparent 32%),
    radial-gradient(circle at 88% 8%, rgba(232, 119, 82, .12), transparent 26%),
    linear-gradient(180deg, #fff9f0 0%, #f4ede3 100%);
  color: #252523;
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Noto Sans KR", "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(132, 160, 145, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(132, 160, 145, .05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, .28), transparent 54%);
}

main {
  position: relative;
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 80px;
  line-height: 1.72;
  overflow-x: hidden;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-bottom: 24px;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 42px;
  height: 42px;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand__name {
  color: #2f3b36;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 31px;
  font-weight: 700;
  line-height: .95;
}

.brand__caption {
  color: #7d776f;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.1;
}

.lang {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
  margin: -66px 0 32px auto;
}

.lang a {
  min-width: 74px;
  border: 1px solid rgba(78, 68, 58, .12);
  border-radius: 999px;
  background: rgba(255, 252, 247, .72);
  color: #6e8279;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(57, 46, 32, .05);
}

.lang a[aria-current="page"] {
  border-color: transparent;
  background: #7f9c8d;
  color: #fff9f0;
}

.policy-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin: 0 0 34px;
  border: 1px solid rgba(78, 68, 58, .1);
  border-radius: 16px;
  background: rgba(255, 252, 247, .6);
  padding: 6px;
  box-shadow: 0 10px 30px rgba(57, 46, 32, .05);
}

.policy-tabs a {
  min-width: 0;
  border: 1px solid transparent;
  border-radius: 11px;
  background: transparent;
  color: #7d776f;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 14px;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color .2s ease,
    background-color .2s ease,
    color .2s ease,
    box-shadow .2s ease,
    transform .2s ease;
}

.policy-tabs a:hover {
  border-color: rgba(132, 160, 145, .22);
  background: rgba(132, 160, 145, .08);
  color: #50685d;
}

.policy-tabs a[aria-current="page"] {
  border-color: #7f9c8d;
  background: #7f9c8d;
  color: #fff9f0;
  box-shadow: 0 8px 18px rgba(80, 104, 93, .2);
}

.policy-tabs a:focus-visible {
  outline: 3px solid rgba(232, 119, 82, .28);
  outline-offset: 2px;
}

.policy-tabs a:active {
  transform: translateY(1px);
}

h1,
h2 {
  line-height: 1.32;
}

h1 {
  margin: 0;
  color: #252523;
  font-size: clamp(30px, 5vw, 48px);
  font-weight: 800;
  letter-spacing: 0;
}

h1 + .meta {
  margin-top: 12px;
}

main > p:not(.meta) {
  max-width: 760px;
  margin: 18px 0 0;
  color: #5f5a53;
  font-size: 16px;
}

.meta {
  display: inline-flex;
  margin: 0;
  border: 1px solid rgba(132, 160, 145, .2);
  border-radius: 999px;
  background: rgba(132, 160, 145, .1);
  color: #65766f;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 11px;
}

section {
  position: relative;
  margin-top: 18px;
  border: 1px solid rgba(78, 68, 58, .08);
  border-radius: 18px;
  background: rgba(255, 252, 247, .78);
  padding: 22px 24px;
  box-shadow: 0 18px 42px rgba(57, 46, 32, .06);
}

section:first-of-type {
  margin-top: 32px;
}

h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 12px;
  color: #33413b;
  font-size: 19px;
  font-weight: 800;
}

h2::before {
  content: "";
  width: 8px;
  height: 26px;
  border-radius: 999px;
  background: #7f9c8d;
  flex: 0 0 auto;
}

p {
  margin: 8px 0;
  overflow-wrap: anywhere;
  word-break: normal;
  white-space: normal;
}

section p {
  color: #58534c;
}

ul {
  margin: 10px 0 0;
  padding-left: 0;
  list-style: none;
}

li {
  position: relative;
  margin: 8px 0;
  padding-left: 20px;
  color: #58534c;
  overflow-wrap: anywhere;
  word-break: normal;
  white-space: normal;
}

li::before {
  content: "";
  position: absolute;
  top: .75em;
  left: 2px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #e87752;
}

@media (max-width: 640px) {
  main {
    width: min(100% - 28px, 920px);
    padding-top: 24px;
  }

  .brand {
    margin-bottom: 18px;
  }

  .lang {
    justify-content: flex-start;
    margin: 0 0 22px;
  }

  .policy-tabs {
    gap: 4px;
    margin-bottom: 28px;
    padding: 5px;
  }

  .policy-tabs a {
    min-height: 44px;
    padding: 10px 3px;
    font-size: 11px;
    line-height: 1.25;
    white-space: normal;
  }

  h1 {
    font-size: 32px;
  }

  section {
    border-radius: 16px;
    padding: 18px 16px;
  }
}
