/* #NewsModal {
    margin-top: -70px;
    height: 100vh + 70px !important;
} */
.nm-container{
    margin-top: -70px;
    width: calc(600px + 2*16px);
    margin: -50px auto auto auto;
    height: 800px;
    display: flex;
    flex-direction: column;
}
.nm-content-container{
    height: 100%;
    width: 600px;
    display: flex;
    flex-direction: column;
    margin: auto;
}

.nm-container video, .nm-container img {
    width: 600px;   
    height: auto;   
}

.nm-news-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.nm-title {
    width: 600px;
    margin: auto;
    padding: 32px 0;
    border-bottom: 1px solid var(--primary-color);
    text-align: center;
}
.nm-info-text {
    margin: auto;
    width: 500px;
    margin-bottom: 8px;
}

.nm-info-text>p {
    overflow-y: auto;
    height: 200px;
}
.nm-footer {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.nm-news-controls {
    margin: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}



