@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,wght@0,500;1,400&family=DM+Serif+Display&family=Karla:wght@400;500;600&display=swap');

:root{
  --bg: #F7F5F0;
  --ink: #131110;
  --line: rgba(19,17,16,0.14);
  --max: 760px;
}

*{ box-sizing: border-box; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Karla', sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a{ color: inherit; }

main{
  max-width: var(--max);
  margin: 0 auto;
  padding: 4.5rem 1.5rem 5rem;
}

.logo{
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 2.25rem;
}

.tagline{
  text-align: center;
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  max-width: 34ch;
  margin: 0 auto 3.5rem;
}

.divider{
  width: 60px;
  height: 1px;
  background: var(--ink);
  opacity: 0.25;
  margin: 0 auto 4rem;
}

.eyebrow{
  display: block;
  text-align: center;
  font-size: 0.9rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-bottom: 2.25rem;
}

.release{
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.release .status{
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  border: 1px solid var(--ink);
  border-radius: 20px;
  opacity: 0.7;
  margin-bottom: 1rem;
}

.release h2{
  font-family: 'Fraunces', serif;
  font-weight: 500;
  font-size: 1.6rem;
  margin: 0 0 0.35rem;
}

.release p{
  margin: 0;
  opacity: 0.65;
  font-size: 0.95rem;
}

.release.demo{
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  gap: 1rem;
  flex-wrap: wrap;
}

.release.demo h2{ font-size: 1.15rem; }

.release.demo a{
  font-size: 0.85rem;
  text-decoration: underline;
  white-space: nowrap;
}

.about{
  max-width: 48ch;
  margin: 0 auto 4rem;
  text-align: center;
  font-size: 1.02rem;
}

.artist-card{
  display: block;
  width: 100%;
  max-width: 340px;
  margin: 0 auto 4rem;
  background: #fff;
  padding: 1rem 1rem 1.5rem;
  box-shadow: 0 1px 3px rgba(19,17,16,0.12);
  text-decoration: none;
  text-align: center;
  transition: transform .2s ease;
}

.artist-card:hover{ transform: translateY(-2px); }

.artist-card img{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  margin-bottom: 1.25rem;
}

.artist-card .artist-name{
  font-family: 'DM Serif Display', serif;
  font-style: normal;
  text-transform: lowercase;
  font-size: 1.5rem;
  color: var(--ink);
}

footer{
  text-align: center;
  padding: 0 1.5rem 3rem;
  font-size: 0.8rem;
  opacity: 0.5;
}

footer a{ text-decoration: underline; }

@media (max-width: 500px){
  .release.demo{ flex-direction: column; align-items: flex-start; }
}
