/* News Detail Page Styles */

.news-banner-section {
    padding-top: 60px;
    padding-bottom: 0;
}

.news-banner-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 30px;
}

.news-detail-content-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.news-detail-main {
    min-width: 0;
}

.news-detail-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 15px 0;
    line-height: 1.2;
}

.news-detail-date {
    font-size: 1.125rem;
    color: #666666;
    margin: 0 0 30px 0;
}

.news-detail-description {
    font-size: 1.125rem;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 50px;
}

.news-detail-description p {
    margin-bottom: 1.5rem;
}

.news-social-share {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-bottom: 60px;
}

.social-share-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 25px 0;
    text-align: center;
}

.social-share-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-share-btn {
    width: 50px;
    height: 50px;
    background: #5BC4C9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-share-btn .social-icon {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.social-share-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.related-news-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.related-news-title {
    font-size: 3rem;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin: 0 0 40px 0;
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}


body.mic-toolbox-fonts-simple .news-detail-title {
    font-size: 2.5rem;
}

body.mic-toolbox-fonts-simple .news-detail-description {
    font-size: 1rem;
}

body.mic-toolbox-fonts-simple .social-share-title {
    font-size: 1.25rem;
}

body.mic-toolbox-fonts-simple .related-news-title {
    font-size: 2.5rem;
}
