:root {
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: #252525;
  background: #f6f7f8;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

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

body {
  min-height: 100vh;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 72px 24px 96px;
  text-align: center;
}

.mark {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4px;
  margin-bottom: 28px;
}

.mark span {
  display: block;
  width: 9px;
  border-radius: 2px 2px 0 0;
  background: #4b5563;
}

.mark span:nth-child(1) {
  height: 20px;
}

.mark span:nth-child(2) {
  height: 31px;
}

.mark span:nth-child(3) {
  height: 25px;
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  font-weight: 650;
  letter-spacing: -0.035em;
}

.status {
  margin: 18px 0 0;
  font-size: 0.95rem;
  font-weight: 550;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6b7280;
}

.description {
  max-width: 520px;
  margin: 22px 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #6b7280;
}

.examiner {
  width: min(760px, 100%);
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid #d9dde2;
}

.examiner h2 {
  margin: 0;
  font-size: 1.25rem;
  line-height: 1.4;
  font-weight: 650;
}

.examiner > p {
  max-width: 620px;
  margin: 12px auto 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #6b7280;
}

.catalogues {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 32px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.catalogues li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  min-width: 0;
  padding: 8px 0;
  border-bottom: 1px solid #e3e6e9;
}

.catalogues a {
  flex: 0 0 auto;
  font-weight: 650;
  color: #4b5563;
  text-decoration: none;
}

.catalogues a:hover {
  text-decoration: underline;
}

.catalogues span {
  min-width: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #6b7280;
}

footer {
  margin-top: 56px;
  font-size: 0.78rem;
  color: #9ca3af;
}

.dot {
  padding: 0 7px;
}

@media (max-width: 640px) {
  .page {
    padding-top: 52px;
  }

  .catalogues {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
