:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #17211e;
  background: #f5f2eb;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-rows: 1fr auto;
  background:
    linear-gradient(90deg, #1d3b35 0 10px, transparent 10px),
    #f5f2eb;
}

main {
  display: grid;
  place-items: center;
  padding: 64px 40px;
}

.notice {
  width: min(100%, 880px);
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 56px;
  align-items: start;
}

.mark {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid #1d3b35;
  color: #1d3b35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  font-weight: 700;
}

.eyebrow {
  margin: 3px 0 22px;
  color: #6e5b3f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  color: #1d3b35;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
}

.rule {
  width: 56px;
  height: 3px;
  margin: 36px 0;
  background: #b86b3b;
}

.status {
  margin: 0 0 14px;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.25;
}

.detail {
  max-width: 620px;
  margin: 0;
  color: #53605c;
  font-size: 17px;
  line-height: 1.7;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 48px 28px 58px;
  border-top: 1px solid #d8d2c7;
  color: #6b746f;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  body {
    background:
      linear-gradient(90deg, #1d3b35 0 6px, transparent 6px),
      #f5f2eb;
  }

  main {
    place-items: center start;
    padding: 48px 28px 48px 34px;
  }

  .notice {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .mark {
    width: 72px;
    font-size: 20px;
  }

  h1 {
    font-size: clamp(48px, 17vw, 72px);
  }

  footer {
    padding: 20px 24px 22px 30px;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .mark,
  .content {
    animation: enter 700ms ease-out both;
  }

  .content {
    animation-delay: 100ms;
  }

  @keyframes enter {
    from {
      opacity: 0;
      transform: translateY(12px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
