/* Main Layout */
.main-layout {
    max-width: 100%;
    margin: 20px auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}


/* News Article Section */
.news-article {
    background: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.breadcrumb {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #FF8C00;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.news-category {
    display: inline-block;
    background-color: #FF8C00;
    color: white;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
    text-decoration: none;
}

.breaking {
    background-color: #dc3545;
}

.industry-news {
    background-color: #00A8E1;
}

.regional {
    background-color: #FF8C00;
}

.news-title {
    font-size: 34px;
    color: #003366;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 25px;
    border-bottom: 2px solid #f0f0f0;
    color: #666;
    font-size: 14px;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.news-meta a {
    color: #003366;
    font-weight: 700;
    text-decoration: underline;
}

.news-summary {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
    font-style: italic;
}

/* old code image placeholder
.news-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #003366, #00A8E1);
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
}
*/

/* Featured Image */
.news-featured-image {
    width: 100%;
    background-color: white;
    padding: 0 0 16px;
}

.news-page .featured-image-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 4px;
    border-top: none;
}


.image-placeholder {
    overflow: hidden;
}


.image-placeholder {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    /* border-radius: 8px; optional */
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}


.image-caption {
    color: #666;
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
    text-align: left;
}


/* Article Content */
.news-content p {
    color: #333;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 25px;
}


.news-content h2 {
    color: #003366;
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: 700;
}


.news-content h3 {
    color: #003366;
    font-size: 24 px;
    margin: 30px 0 15px;
    font-weight: 700;
}



.news-content ul {
    margin: 15px 0 20px 30px;
}

.news-content li {
    margin-bottom: 10px;
    color: #333;
    font-size: 17px;
    line-height: 1.7;
}

.quote-box {
    background: #f8f9fa;
    border-left: 4px solid #FF8C00;
    padding: 20px 25px;
    margin: 30px 0;
    font-style: italic;
    color: #555;
    font-size: 18px;
    line-height: 1.8;
}

.quote-author {
    font-style: normal;
    font-weight: 600;
    color: #003366;
    margin-top: 10px;
}

/* Share Section */
.share-section {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.share-label {
    font-weight: 600;
    color: #003366;
    font-size: 15px;
}

.share-buttons {
    display: flex;
    gap: 10px;
}

.share-btn {
    width: 38px;
    height: 38px;
    background-color: #003366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.share-btn:hover {
    background-color: #FF8C00;
    transform: translateY(-2px);
}



/* Tablet and up (≥641px - 768px) */
@media (min-width: 641px) {

    .news-title {
        font-size: 44px;
    }

    .news-summary {
        font-size: 18px;
    }

    .news-article {
        padding: 28px 20px;
    }

    .news-image {
        height: 250px;
    }

}



/* Small desktop and up (≥769px - 1025px)  */
@media (min-width: 769px) {

    .news-title {
        font-size: 50px;
    }

    .news-summary {
        font-size: 20px;
    }

    .news-content p {
        font-size: 20px;
    }

    .news-content h2 {
        font-size: 32px;
    }

    .news-content h3 {
        font-size: 27px;
    }


    .news-content li {
        font-size: 20px;
    }

    .quote-box {
        font-size: 20px;
    }

}


/* Large desktop (≥1025px - ∞) */
@media (min-width: 1025px) {


    .main-layout {
        max-width: 1400px;
        /* margin: 40px auto; 
        padding: 0 16px; */
        display: grid;
        grid-template-columns: minmax(0, 1fr) 350px;
        gap: 24px;
    }

}



