:root {
  font-family: Arial, Helvetica, sans-serif;
  background: #f3f5f7;
  color: #172331;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
}

main {
  margin: 0 auto;
  max-width: 1160px;
  padding: 22px;
}

header {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
  margin-bottom: 16px;
}

h1,
h2,
p {
  margin: 0;
}

p {
  color: #5f6f81;
  margin-top: 4px;
}

#token {
  border: 1px solid #c8d2dc;
  border-radius: 6px;
  font-size: 15px;
  max-width: 280px;
  padding: 10px 12px;
  width: 100%;
}

.layout {
  display: grid;
  gap: 16px;
  grid-template-columns: minmax(0, 1fr) 300px;
}

#map {
  border: 1px solid #c8d2dc;
  border-radius: 8px;
  height: calc(100vh - 118px);
  min-height: 460px;
}

aside {
  background: #ffffff;
  border: 1px solid #d9e1e8;
  border-radius: 8px;
  padding: 16px;
}

dl {
  display: grid;
  gap: 8px 12px;
  grid-template-columns: 90px minmax(0, 1fr);
}

dt {
  color: #617184;
}

dd {
  font-weight: 700;
  margin: 0;
  overflow-wrap: anywhere;
}

@media (max-width: 760px) {
  header,
  .layout {
    grid-template-columns: 1fr;
  }

  header {
    align-items: stretch;
    flex-direction: column;
  }

  #map {
    height: 58vh;
    min-height: 320px;
  }
}
