.home-page {
  min-height: 100vh;
  margin: 0;
  background:
    radial-gradient(circle at 85% 5%, rgba(255, 204, 89, .2), transparent 29%),
    linear-gradient(150deg, #f7f9fc 0%, #eef3f8 100%);
  color: #24364e;
  font-family: "Noto Sans KR", "Malgun Gothic", sans-serif;
}

.home-shell {
  width: min(72rem, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 6.5rem) 0;
}

.home-kicker {
  margin: 0 0 .7rem;
  color: #956713;
  font-size: .83rem;
  font-weight: 850;
  letter-spacing: .12em;
}

.home-shell h1 {
  max-width: 48rem;
  margin: 0;
  color: #14233c;
  font-family: Georgia, "Noto Serif KR", serif;
  font-size: clamp(2.4rem, 7vw, 4.8rem);
  line-height: 1.13;
  letter-spacing: -.05em;
}

.home-intro {
  max-width: 49rem;
  margin: 1.35rem 0 0;
  color: #50627a;
  font-size: 1.05rem;
  line-height: 1.8;
  word-break: keep-all;
}

.week-panel {
  margin-top: 3.3rem;
  padding: clamp(1.35rem, 4vw, 2.3rem);
  border: 1px solid #d7e0ea;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 1.3rem 3.5rem rgba(29, 50, 82, .1);
}

.week-panel__label {
  margin: 0 0 .45rem;
  color: #31547f;
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.week-panel h2 {
  margin: 0;
  color: #172a46;
  font-size: clamp(1.45rem, 4vw, 2.15rem);
}

.week-panel > p {
  margin: .75rem 0 0;
  color: #5b6b80;
  line-height: 1.7;
}

.document-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.document-card {
  display: grid;
  min-height: 13rem;
  align-content: space-between;
  gap: 1rem;
  padding: 1.35rem;
  border: 1px solid #d7e1ec;
  border-radius: 1.1rem;
  background: #fff;
  color: inherit;
  text-decoration: none;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease;
}

.document-card:hover,
.document-card:focus-visible {
  transform: translateY(-3px);
  border-color: #8ea9c8;
  box-shadow: 0 .9rem 2rem rgba(29, 50, 82, .11);
  outline: none;
}

.document-card__number {
  color: #9a6a15;
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .1em;
}

.document-card h3 {
  margin: .35rem 0 .55rem;
  color: #18304f;
  font-size: 1.35rem;
}

.document-card p {
  margin: 0;
  color: #5b6c81;
  line-height: 1.65;
}

.document-card__open {
  color: #2f5d8d;
  font-weight: 800;
}

.home-note {
  margin: 1.25rem 0 0;
  color: #6b788a;
  font-size: .9rem;
}

@media (max-width: 44rem) {
  .document-grid { grid-template-columns: 1fr; }
  .document-card { min-height: 11rem; }
}
