/* CSS for Single News Page */

.news-article-section {
    padding: 60px 0;
    max-width: 1200px;
    margin: 0 auto;
}

.news-header {
    text-align: center;
    margin-bottom: 40px;
}

.news-date {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.news-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 2.5rem;
    color: #000;
    line-height: 1.2;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.news-main-image {
    width: 100%;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
}

.news-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.news-content-wrapper {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.news-sidebar {
    width: 50px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 10px;
}

.social-share-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-share-btn:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.news-body {
    flex-grow: 1;
    font-family: 'Jost', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.news-body p {
    margin-bottom: 20px;
}

.news-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 40px 0;
}

.news-gallery img {
    width: 100%;
    border-radius: 10px;
    height: 250px;
    object-fit: cover;
}

/* Related Posts Section */
.related-posts-section {
    background-color: #f9f9f9;
    padding: 60px 0;
    margin-top: 60px;
}

.related-title {
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.8rem;
    margin-bottom: 40px;
}

.related-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.related-card:hover {
    transform: translateY(-5px);
}

.related-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.related-content {
    padding: 20px;
}

.related-date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 10px;
}

.related-card h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 15px;
    line-height: 1.4;
}

.read-more {
    font-size: 0.9rem;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    border-bottom: 1px solid #000;
    padding-bottom: 2px;
}

@media (max-width: 768px) {
    .news-title {
        font-size: 1.8rem;
    }

    .news-content-wrapper {
        flex-direction: column;
    }

    .news-sidebar {
        flex-direction: row;
        width: 100%;
        margin-bottom: 20px;
    }

    .news-gallery {
        grid-template-columns: 1fr;
    }
}