nav {
    position: fixed;
    background: var(--dark);
    right: 0;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    padding: 1rem;
    justify-content: space-between;
    font-size: .9rem;
    z-index: 1000;
    gap: 2rem;
}

.nav_intern {
    display: flex;
    align-items: center;
    gap: .8rem;
    flex: 1;
    justify-content: space-between;
    width: 100%;
}

.nav_logo {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.nav_menu_container {
    display: none;
}

.nav_menu_item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    height: 2rem;
}

.nav_menu_item_hidden_mobile {
    display: flex;
}

.social-icon {
    height: 1rem;
}

.nav_flag {
    height: 1rem;
}

.particles {
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

.particles_container {
    display: flex;
    height: 16rem;
    align-items: center;
    justify-content: center;
    position: relative;
    top: 4rem;
}

.teaser_headline {
    text-align: center;
    font-size: 1.4rem;
    font-weight: 400;
    margin: 1rem;
}

.content {
    margin: 5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.full_player_container {
    width: 100%;
    max-width: 60rem;
    margin: 0rem 0rem 2rem 0rem;
}

.news_nav {
    display: flex;
    margin: 4rem 0 2rem 0;
    align-items: center;
    gap: 1rem;
    padding: 0 1rem;
    border-bottom: 1px solid #42b7f3;
    border-left: 3rem solid transparent;
    border-right: 3rem solid transparent;
}

.news_nav_item {
    min-width: 8rem;
    height: 3rem;
    position: relative;
    fill: white;
}

.news_nav_item_active .news_nav_link {
    color: #8dd9ff;
}

.news_nav_link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    text-align: center;
    font-size: 1rem;
    white-space: nowrap;
}

.news_nav_play_button {
    display: none;
    background-color: var(--blue);
    opacity: .9;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    justify-content: center;
    align-items: center;
    padding: 0.25rem;
    flex-direction: row;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    gap: 0.25rem;
    cursor: pointer;
    pointer-events: all;
}

.news_nav_item_active .news_nav_play_button {
    display: flex;
}

.news_nav_play_button span {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

@media screen and (max-width: 878px) {
    .news_nav {
        gap: 0;
        margin: 3rem 0 2rem 0;
        border-left: unset;
        border-right: unset;
    }

    .news_nav_item {
        min-width: 3.75rem;
        height: 2.5rem;
    }

    .news_nav_link {
        font-size: 0.5rem;
    }

    .news_nav_play_button span {
        display: none;
    }
}

.article_body {
    font-size: .9rem;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.18px;
    text-align: justify;
}

.article_sources {
    font-size: .7rem;

    a {
        font-size: .8rem;
        display: inline-block;
        width: 100%;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

.about_us_section {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    margin-bottom: 1rem;
}

.about_us_image {
    border-radius: 100px;
    width: 200px;
    height: 200px;
}

.about_us_text {
    margin: 0.5rem 0 0.5rem 0;
    font-size: 0.9rem;
}

footer {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 2rem;
    background: #141313;
    width: 100%;
    font-size: .7rem;
    position: fixed;
    bottom: 0;
    a {
        font-weight: normal;
        font-size: .7rem;
    }
}

