:root {
  color-scheme: dark;
  font:
    15px/1.6 -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: #f0f2f8;
  background: #090b10;
}
body {
  margin: 0;
}
main {
  max-width: 1180px;
  margin: auto;
  padding: 60px 24px;
}
a {
  color: #b8a4ef;
  text-underline-offset: 4px;
}
h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.05em;
}
p {
  color: #abb1c2;
  max-width: 560px;
}
.maps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-block: 45px;
}
.maps section {
  min-width: 0;
}
details {
  border-bottom: 1px solid #2b3040;
  padding-block: 15px;
}
summary {
  cursor: pointer;
  font-size: 17px;
  font-weight: 600;
}
table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
  font-size: 12px;
  table-layout: fixed;
}
th,
td {
  border-top: 1px solid #2b3040;
  padding: 8px;
  text-align: left;
  vertical-align: top;
  overflow-wrap: anywhere;
}
th:first-child {
  width: 58px;
}
footer {
  color: #abb1c2;
  font-size: 12px;
}
@media (max-width: 760px) {
  .maps {
    grid-template-columns: 1fr;
  }
  main {
    padding-top: 36px;
  }
}
