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

* {
  box-sizing: border-box;
}

body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at 14% 12%, rgba(255, 255, 255, 0.9), transparent 32rem),
    #f1efe8;
}

main {
  width: min(100%, 48rem);
}

.eyebrow {
  margin: 0 0 1rem;
  color: #66705b;
  font-size: 0.76rem;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

h1 {
  max-width: 12ch;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 10vw, 6.75rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.intro {
  max-width: 36rem;
  margin: 2rem 0 4rem;
  color: #5b5c55;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.65;
}

h2 {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.albums {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid #d6d2c7;
  border-radius: 0.75rem;
  background: #d6d2c7;
}

article {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  min-height: 9rem;
  padding: 1.25rem;
  background: rgba(250, 249, 245, 0.88);
}

.year {
  grid-column: 1 / -1;
  align-self: start;
  color: #62635c;
  font-size: 0.9rem;
}

strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 400;
  line-height: 0.8;
}

.label {
  color: #73746c;
  font-size: 0.78rem;
}

.status {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
  color: #73746c;
  font-size: 0.82rem;
}

.status span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #c18455;
  box-shadow: 0 0 0 0.2rem rgba(193, 132, 85, 0.17);
}

@media (max-width: 35rem) {
  body {
    padding: 1.25rem;
  }

  .intro {
    margin-bottom: 3rem;
  }

  .albums {
    grid-template-columns: 1fr;
  }
}
