.news-popup .popup-content {
max-width: 900px;
}
.news-popup .popup-content .txt-box {
display: flex;
align-items: center;
justify-content: space-between;
padding: 2.4rem;
background-color: #364aff;
border-radius: 5px 5px 0 0;
}
.news-popup .popup-content .title {
font-size: 2rem;
font-weight: 400;
}
.news-popup .popup-content .popup-link-btn {
padding: 0.8rem 4.2rem;
border-radius: 50px;
background-color: white;
font-size: 1.6rem;
font-weight: 700;
}
.news-popup .popup-content .content {
padding: 2.4rem;
}
.news-popup .popup-content .content img {
width: 100%;
}
@media (max-width: 768px) {
.news-popup .popup-content .txt-box {
flex-direction: column;
gap: 1rem;
align-items: flex-start;
}
}