/* ==========================================
   News Pages Styles
========================================== */
.news-grid-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.news-list-card {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    /* border-radius: 12px; */
    overflow: hidden;
    /* box-shadow: 0 5px 20px rgba(0,0,0,0.04); */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.news-list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.news-list-image {
    flex: 0 0 35%;
    position: relative;
    overflow: hidden;
    max-height: 250px;
}

.news-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-list-card:hover .news-list-image img {
    transform: scale(1.05);
}

.news-list-content {
    flex: 0 0 65%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-meta-bar {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
    font-size: 13px;
    color: #777;
    flex-wrap: wrap;
}

.news-category-badge {
    background: rgba(1, 82, 137, 0.1);
    color: #2e3790;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}

.news-meta-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-meta-item i {
    color:  #2e3790;
}

.news-list-title {
    font-size: 20px;
    font-weight: 600;
    color: #0c1a2d;
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-list-card:hover .news-list-title {
    color:  #2e3790;
}

.news-read-more {
    margin-top: auto;
    font-weight: 600;
    color:  #2e3790;
    display: flex;
    align-items: center;
    gap: 5px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: gap 0.3s ease;
}

.news-list-card:hover .news-read-more {
    gap: 10px;
}

/* Responsive News List */
@media (max-width: 768px) {
    .news-list-image {
        flex: 0 0 100%;
        height: 250px;
    }
    .news-list-content {
        flex: 0 0 100%;
        padding: 20px;
    }
}

/* ==========================================
   News Details Styles
========================================== */
.news-details-hero {
    /* border-radius: 12px; */
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-height: 500px;
}

.news-details-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-details-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #eaeaea;
    flex-wrap: wrap;
}

.news-details-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.news-details-content blockquote {
    background: #f8f9fa;
    border-left: 4px solid #2e3790;
    padding: 20px 30px;
    margin: 30px 0;
    font-style: italic;
    font-size: 18px;
    color: #333;
    border-radius: 0 8px 8px 0;
}
