:root{
  --bg: #ffffff;
  --ink: #0a0a0a;
  --muted: rgba(10,10,10,0.55);
  --line: rgba(10,10,10,0.14);
}

/* RESET */
*{ box-sizing: border-box; }

body{
  margin: 0;
  background: var(--bg);
  color: var(--ink);

  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* HEADER */
.top{
  border-bottom: 1px solid;
}

.header-img{
  width: 100%;
  height: auto;
  display: block;
}

.header-meta{
  display: flex;
  justify-content: space-between;
  padding: 14px 24px;
}

.artist{
  font-size: 14px;
}

.section{
  font-size: 12px;

}

/* BACK LINK */
.back{
  padding: 12px 24px;
  border-bottom: 1px solid;
}

.back-link{
  font-size: 12px;
  text-decoration: none;
  border: 1px solid;
  padding: 6px 10px;
}

/* CONTENT — BACKGROUND STARTS HERE */
.wrap{
  min-height: 100vh;

  background-image: url("/images/NMIP/parisrain.jpg"); 
  background-size: cover;                  
  background-position: center center;     
  background-repeat: no-repeat;
  background-attachment: fixed;            

  padding: 24px;
}

/* RELEASE LIST */
.grid{
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}

.release{
  width: min(520px, 92vw);
  border-bottom: 1px solid var(--line);
  padding-bottom: 16px;
}

.cover{
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid var(--ink);
}

.meta{
  margin-top: 12px;
}

.line{
  display: flex;
  justify-content: space-between;
}

.title{
  font-size: 13px;
  color: rgb(255, 255, 255)
}

.date{
  font-size: 12px;
  color: rgb(255, 255, 255);
}

.links{
  margin-top: 8px;
  display: flex;
  gap: 16px;
}

.link{
  font-size: 12px;
  color: rgb(255, 255, 255);
  text-decoration: underline;
}

/* FOOTER */
.foot{
  border-top: 1px solid var(--line);
  padding: 18px 24px;
  font-size: 11px;
  color: var(--muted);
}

