/* BPN – Lanzamientos section: release items, column layout. */

.section--lanzamientos {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lanzamientos-list {
  list-style: none;
  margin: 0;
  margin-top: 2.5rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  width: 100%;
  max-width: min(90vw, 400px);
  padding-bottom: 14rem;
}

.lanzamiento {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.lanzamiento-link {
  text-decoration: none;
  color: var(--bpn-text);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lanzamiento-link:hover,
.lanzamiento-link:focus-visible,
.lanzamiento-image-link:hover,
.lanzamiento-image-link:focus-visible {
  opacity: 0.8;
}

.lanzamiento-id {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  text-transform: uppercase;
}

.section--lanzamiento>.lanzamiento-id {
  margin-top: 2rem;
}

.lanzamiento-name {
  margin: 0.25rem 0 0;
  font-size: 1.5rem;
  font-weight: 700;
  font-style: normal;
  text-transform: uppercase;
}

.lanzamiento-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem 0;
  padding: 0.20em 1.20em;
  font-size: 0.875rem;
  font-family: "Roobert-Regular", sans-serif;
  font-weight: 400;
  color: var(--bpn-text);
  border: 1px solid var(--bpn-text);
  border-radius: 50%/50%;
  position: relative;
}

/* Horizontal line crossing through the year, contained inside oval */
.lanzamiento-year::after {
  content: "";
  position: absolute;
  left: 0.5em;
  right: 0.5em;
  top: 50%;
  height: 1px;
  background: var(--bpn-text);
  transform: translateY(-50%);
}

.lanzamiento-image-link {
  display: block;
  line-height: 0;
}

.lanzamiento-image {
  display: block;
  width: 100%;
  max-width: 388px;
  height: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  margin-top: 1rem;
}

/* Release specs block: left-aligned lines, block centered */
.lanzamiento-specs {
  margin: 1.5rem auto 0;
  padding: 0;
  text-align: center;
  max-width: min(90vw, 320px);
  font-weight: 300;
  font-size: 0.7rem;
  font-family: "Roobert-Regular", sans-serif;
  text-transform: uppercase;
  color: var(--bpn-text);
  line-height: 1.6;
}

.lanzamiento-specs p {
  margin: 0;
}

/* Bottom vinyl disk: clear/translucent style with center label */
.lanzamiento-vinyl {
  margin-top: 2rem;
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}


.lanzamiento-vinyl__image {
  display: block;
  width: 100%;
  max-width: 220px;
  height: 200px;
  aspect-ratio: 1;
  object-fit: cover;
  margin-top: 1rem;
}


@media (max-width: 400px) {
  .lanzamiento-id {
    font-size: 1rem;
  }

  .lanzamiento-name {
    font-size: 1.25rem;
  }

  .lanzamiento-image {
    width: 110vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}