.news-detail-section {
    padding-bottom: 80px;
}

.news-detail-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.news-main-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 30px;
    line-height: 1.4;
    text-align: left;
}

.news-main-image {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

.news-main-image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.news-main-meta {
    text-align: start;
    margin-bottom: 30px;
}

.meta-date {
    font-size: 14px;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.news-main-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #334155;
    margin-bottom: 20px;
}

.news-main-content p {
    font-size: 15px;
    color: #64748b;
    line-height: 1.8;
    margin-bottom: 20px;
    text-align: justify;
}

@media (max-width: 768px) {
    .news-main-title {
        font-size: 24px;
    }
}