.news-carousel-container {
    display: flex;
    margin-top: -5em;
}

.news-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    position: relative;
    width: 3em;
    height: 3em;
    z-index: 0;

    border-radius: 9999px;
    border: 1px solid var(--glass-border);

    background: rgba(255, 255, 255, 0.75);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    cursor: pointer;

    transition: transform .2s ease, border-color .2s ease, background .2s ease;

    color: var(--text);
    /* svg inherits */

    margin-top: auto;
    margin-bottom: auto;
    margin-left: 3em;
    margin-right: 3em;

    overflow: hidden;
}

.news-nav:hover {
    border: 1px solid var(--primary);
}

.news-carousel-pane {
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    background-color: var(--white);
    transition: all .4s ease;
    margin-left: auto;
    margin-right: auto;
    padding: 2em;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    margin-top: 5em;
    margin-bottom: 2em;
}

.news-carousel-pane:hover {
    border: 1px solid var(--primary);
}

.news-carousel-pane-info {
    margin-left: auto;
    margin-right: auto;
    display: flex;
}

.news-carousel-pane-info-img {
    width: 40%;
}

.news-carousel-pane-info-description {
    width: 60%;
    padding: 3em;
}

.news-carousel-pane.hidden {
    display: none;
}

.news-carousel-pane .title {
    font-family: 'Archivo Black', sans-serif;
    font-size: 36px;
    margin-bottom: 0.5em;
}

.news-carousel-pane .artist {
    font-family: 'Archivo Black', sans-serif;
    font-size: 24px;
    color: var(--text-muted);
    margin-bottom: 0.5em;
}

.news-carousel-pane .brief {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(24px, 3vw, 36px);
    background: linear-gradient(135deg, var(--text) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-left: auto;
    margin-right: auto;
}

.news-carousel-pane .release-date {
    font-family: 'Archivo Black', sans-serif;
    font-size: clamp(16px, 3vw, 24px);
    margin: 1em auto;
    color: rgba(0, 0, 0, 0.6);
}

.news-carousel-pane img {
    width: 100%;
    border-radius: 24px;
    margin: 2em auto;
}

.news-carousel-pane .audio-player-container {
    margin-left: 2em;
    margin-right: 2em;
    margin-top: 2em;
}

@media (max-width: 1200px) {
    .news-nav {
        margin-left: 1.5em;
        margin-right: 1.5em;
    }

    .news-carousel-pane .title {
        font-size: 24px;
    }

    .news-carousel-pane .artist {
        font-size: 20px;
    }

    .news-carousel-pane .brief {
        font-size: 20px;
    }

    .news-carousel-pane .release-date {
        font-size: 16px;
    }
}