@media screen and (min-width: 641px) {
  .visible-sp {
    display: none !important;
  }
}

@media screen and (max-width: 640px) {
  .hidden-sp {
    display: none !important;
  }
}

.p-discography {
  min-height: 100vh;
}
.p-discography__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 24px 96px;
}
@media screen and (min-width: 641px) {
  .p-discography__inner {
    padding: 0 40px 96px;
  }
}
.p-discography__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media screen and (min-width: 641px) {
  .p-discography__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}
.p-discography__item {
  text-align: left;
  display: flex;
  flex-direction: column;
}
.p-discography__cover {
  aspect-ratio: 1;
  width: 100%;
  margin-bottom: 16px;
  border: 1px solid var(--color-gray-800);
  overflow: hidden;
  transition: all 0.5s;
  background: var(--color-dark);
}
.p-discography__cover-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.p-discography__cover-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-discography__cover-text {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--color-gray-500);
  font-family: var(--font-serif);
  opacity: 0.4;
  transition: opacity 0.5s;
}
.p-discography__item:hover .p-discography__cover-text {
  opacity: 1;
}
.p-discography__title {
  font-size: 14px;
  font-family: var(--font-serif);
  font-weight: 300;
  color: var(--color-gray-300);
  transition: color 0.3s;
}
.p-discography__item:hover .p-discography__title {
  color: white;
}
.p-discography__meta {
  margin-top: 4px;
  font-size: 10px;
  color: var(--color-gray-500);
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
}
.p-discography__modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 50;
  align-items: center;
  justify-content: center;
  padding: 16px;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(4px);
}
.p-discography__modal.is-open {
  display: flex;
}
.p-discography__modal-content {
  position: relative;
  width: 100%;
  max-width: 32rem;
  max-height: 85vh;
  overflow-y: auto;
  background: var(--color-dark);
  border: 1px solid var(--color-gray-800);
  padding: 32px;
}
@media screen and (min-width: 641px) {
  .p-discography__modal-content {
    padding: 40px;
  }
}
.p-discography__modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  color: var(--color-gray-500);
  transition: color 0.3s, transform 0.3s;
}
.p-discography__modal-close:hover {
  color: white;
  transform: rotate(90deg);
}
.p-discography__modal-cover {
  aspect-ratio: 1;
  width: 100%;
  max-width: 240px;
  margin: 0 auto 32px;
  border: 1px solid var(--color-gray-800);
  overflow: hidden;
  background: var(--color-dark);
}
.p-discography__modal-cover-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-discography__modal-title {
  font-size: 18px;
  font-family: var(--font-serif);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: white;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.6;
}
.p-discography__modal-meta {
  font-size: 10px;
  color: var(--color-gray-500);
  font-family: var(--font-sans);
  letter-spacing: 0.05em;
  text-align: center;
  margin-bottom: 24px;
}
.p-discography__modal-divider {
  width: 32px;
  height: 1px;
  background: var(--color-gray-700);
  margin: 0 auto 24px;
}
.p-discography__modal-info {
  font-size: 12px;
  font-family: var(--font-sans);
  margin-bottom: 24px;
}
.p-discography__modal-info-row {
  display: flex;
  gap: 16px;
  margin-bottom: 12px;
}
.p-discography__modal-info-row:last-child {
  margin-bottom: 0;
}
.p-discography__modal-info-label {
  color: var(--color-gray-500);
  flex-shrink: 0;
  width: 80px;
  letter-spacing: 0.05em;
}
.p-discography__modal-info-value {
  color: var(--color-gray-300);
}
.p-discography__modal-notes {
  font-size: 11px;
  font-family: var(--font-sans);
  color: var(--color-gray-400);
  line-height: 1.6;
  margin-bottom: 24px;
  white-space: pre-line;
}
.p-discography__modal-tracklist-title {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--color-gray-500);
  font-family: var(--font-sans);
  margin-bottom: 16px;
}
.p-discography__modal-tracklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-discography__modal-track {
  display: flex;
  gap: 12px;
  font-size: 12px;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--color-gray-400);
}
.p-discography__modal-track-num {
  color: var(--color-gray-600);
  flex-shrink: 0;
  width: 20px;
  text-align: right;
}/*# sourceMappingURL=p-discography.css.map */
