@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Archivo';
  src: url('../fonts/Archivo-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html, body {
  width: 100%;
  min-height: 100%;
  background: #dfedf5;
  color: #000;
  font-family: 'Archivo', system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body {
  min-height: 100vh;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ─── track list panels ─── */
.sides {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.side {
  background: #fff;
  padding: 14px 18px 18px;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.side h2 {
  font-size: inherit;
  font-weight: 700;
  margin: 0 0 2px;
}

.side ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

.side li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.side li .name {
  overflow: hidden;
  text-overflow: ellipsis;
}

.side li .dur {
  color: #d8d8d8;
  flex-shrink: 0;
}

.side li.muted .name,
.side li.muted .dur {
  color: #d8d8d8;
}

.side li a {
  display: contents;
}

.side li a:hover .name {
  text-decoration: underline;
}

/* ─── info icon (top right) ─── */
.info {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 28px;
  height: 28px;
  border: 1.5px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  font-style: italic;
  font-family: 'Archivo', serif;
  background: transparent;
  cursor: pointer;
}

/* ─── footer boxes ─── */
.footer {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: end;
}

.foot-box {
  background: #fff;
  padding: 6px 10px;
  font-size: 11px;
  line-height: 1.45;
  font-weight: 400;
}

.foot-box .dim {
  color: #b8b8b8;
}

.foot-right {
  text-align: left;
}

/* ─── mobile ─── */
@media (max-width: 720px) {
  .sides {
    grid-template-columns: 1fr;
  }
  .side {
    font-size: 22px;
  }
  .info {
    display: none;
  }
  .footer {
    grid-template-columns: 1fr;
  }
}
