#page-discography {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

#page-discography h1 {
    margin-top: 0;
    margin-bottom: 0.25em;
}

.discography-asterisk {
    font-style: italic;
    font-size: 0.7em;
}

#discography-container-columns {
    margin-top: 20px;
    background-color: aliceblue;
    padding: 20px;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    gap: 20px;
    width: 100%;
    max-width: 860px;
    box-sizing: border-box;
    margin-bottom: 30px;
    color: black;
}

.discography-column {
    width: 300px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
}

.discography-column a {
    color: black;
}

.discography-column:first-child {
    align-items: center;
}

.discography-column:last-child {
    text-align: left;
}

.anim3D {
    perspective: 1000px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform-style: preserve-3d;
}

@keyframes float3D {
    0% {
        transform: rotateY(20deg) rotateX(5deg) translateZ(20px) scale(1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    50% {
        transform: rotateY(-20deg) rotateX(-5deg) translateZ(0px) scale(1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.7);
    }

    80% {
        transform: rotateY(20deg) rotateX(5deg) translateZ(20px) scale(1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }

    100% {
        transform: rotateY(0deg) rotateX(0deg) translateZ(0px) scale(1);
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    }
}

.cd-cover {
    max-width: 300px;
    width: 100%;
    height: auto;
    display: block;
    animation-name: float3D;
    animation-duration: 4s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    position: relative;
    overflow: hidden;
}

.cd-cover__image {
    display: block;
    width: 100%;
    height: auto;
}

.cd-cover::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.5) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: translateX(-150%) skewX(-25deg);
    animation-name: sheenEffect;
    animation-duration: 6s;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-delay: 1s;
}

@keyframes sheenEffect {
    0% {
        transform: translateX(-150%) skewX(-25deg);
    }

    40%,
    60% {
        transform: translateX(150%) skewX(-25deg);
    }

    100% {
        transform: translateX(150%) skewX(-25deg);
    }
}

.discography-column h2 {
    margin-top: 0;
    margin-bottom: 0.75em;
    font-size: 1.5em;
}

.discography-column h3 {
    font-style: italic;
    margin-bottom: 0.75em;
    font-weight: 400;
    font-size: 1.2em;
}

.discography-shop-icon {
    height: 30px;
    width: 30px;
}

.discography-column a.product-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 15px;
}

.discography-column a.product-link .price-tag {
    font-size: 1.6em;
}

#discography-malpermesita {
    width: 100px;
    aspect-ratio: 1;
}

#discography-shop p {
    margin: 0.5em 0;
}

#discography-shop a {
    text-decoration: none;
    color: aliceblue;
}

@media (max-width: 859px) {
    #discography-container-columns {
        flex-direction: column;
        align-items: center;
    }

    .discography-column {
        width: 100%;
        max-width: 400px;
        align-items: center;
    }
}