#news-detail-popup {
    position: fixed;
    background-color: #0008;
    height: 100vh;
    width: 100%;
    top: 0; left: 0;
    z-index: 100000;
}

.scroll-wrapper {
    height: 100vh;
    overflow: scroll;
}

.scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.news-detail-drawer {
    background-color: white;
    padding: 60px 40px;
    border-radius: 30px;
}

.news-popup__img-border {
    border-radius: 30px;
    max-height: 450px;
    overflow: hidden;
}

#news-popup__close-button {
    position: absolute;
    right: 0; top: 0;
    background-color: rgba(var(--primary-color-values), 0.4);
    color: var(--primary-color);
    border-style: none;
    width: 65px;
    aspect-ratio: 1;
    line-height: 65px;
    border-radius: 100%;
    font-size: 1.5rem;
    margin: 15px 15px 0 0;
}

.news-popup__title {
    font-family: var(--secondary-text-font);
    font-weight: 700;
    margin-left: 25px;
}

.news-popup__content {
    font-family: var(--primary-text-font);
    font-size: 1.4rem;
    line-height: 1.7;
    margin-top: 40px;
    white-space: pre-wrap;
}

.categories__title {
    font-family: var(--secondary-text-font);
    font-size: 1.3rem;
    color: var(--primary-color);
    line-height: 1;
    margin: 0;
}

.categories__separator {
    border-width: 2px;
    border-color: var(--primary-color);
    opacity: 1;
}