.news-events-section {
    padding: 60px 0;
    font-family: 'Poppins', sans-serif;
}
.news-header {
    text-align: center;
    margin-bottom: 50px;
}
.news-header h2 {
    color: #1a56a6;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 5px;
}
.news-header p {
    color: #666;
    font-size: 16px;
}
.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.news-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #f3f3f3 !important;
    cursor: pointer;
}
.news-card:hover {
    transform: translateY(-5px);
}
.news-card-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f3f3f3;
    margin-bottom: 15px;
}
.news-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.news-card:hover .news-card-img-wrap img {
    transform: scale(1.05);
}
.news-card-title {
    color: #1a56a6;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card-date {
    color: #888;
    font-size: 14px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.news-card-date i {
    font-size: 13px;
}

/* Pagination */
.news-pagination {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 10px;
}
.news-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}
.news-pagination a:hover, .news-pagination a.active {
    background: #1a56a6;
    color: white;
    border-color: #1a56a6;
}

/* Responsive */
@media (max-width: 1200px) {
    .news-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991px) {
    .news-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 575px) {
    .news-grid { grid-template-columns: 1fr; }
}

/* Feature 43-1 Integration Start */
.foyer-section {
    background: #f3f3f3;
    padding: 80px 0;
    font-family: 'Montserrat', sans-serif;
}

.foyer-container-split {
    max-width: 1450px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 0 60px;
}

.foyer-images-part {
    flex: 1.1;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: repeat(3, minmax(140px, auto)); 
    gap: 15px;
}

.foyer-content-part {
    flex: 0.9;
    padding-left: 20px;
}

.foyer-item-tall {
    grid-column: 1;
    grid-row: 1 / span 2;
}
.foyer-item-fix-under {
    grid-column: 1;
    grid-row: 3;
}

.foyer-item-sm-1 { grid-column: 2; grid-row: 1; }
.foyer-item-sm-2 { grid-column: 2; grid-row: 2; }
.foyer-item-sm-3 { grid-column: 2; grid-row: 3; }

.foyer-img-box {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    background: #ddd;
    height: 100%;
    width: 100%;
}

.foyer-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.foyer-title {
    color: #0063AF;
    font-weight: 700;
    font-size: 36px;
    margin-bottom: 20px;
}

.foyer-desc {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

@media (max-width: 991px) {
    .foyer-container-split {
        flex-direction: column;
    }
    .foyer-images-part, .foyer-content-part {
        width: 100%;
    }
    .foyer-images-part {
        grid-template-rows: repeat(3, 150px);
    }
}
/* Feature 43-1 Integration End */

/* Feature 42 Template Styles */
.news-feature-42 {
    font-family: 'Montserrat', sans-serif;
}
.news-feature-42 .section-tittle h2 {
    color: #0063AF;
    font-size: 31px;
    font-weight: 700;
    margin-bottom: 22px;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}
.news-feature-42 .section-tittle p {
    color: #666;
    font-size: 16px;
    margin-bottom: 50px;
    text-align: center;
}
.news-horizontal-card {
    display: flex;
    align-items: center;
    gap: 50px;
    background: #f3f3f3;
    margin-bottom: 30px;
    justify-content: center;
}
.news-horizontal-img {
    flex: 0 0 50%;
    max-width: 50%;
}
.news-horizontal-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
.news-horizontal-content {
    flex: 0 0 40%;
    max-width: 40%;
}
.news-horizontal-content h2 {
    color: #0063AF;
    font-size: 31px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 20px;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
}
.properties-entry {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #333;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 30px;
}
.properties-entry i {
    font-size: 18px;
    color: #333;
}
.news-btn-blue {
    display: inline-block;
    background: #00509d;
    color: #fff !important;
    padding: 15px 45px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: background 0.3s ease;
}
.news-btn-blue:hover {
    background: #1a56a6;
}

@media (max-width: 991px) {
    .news-feature-42 {
        padding-left: 20px;
        padding-right: 20px;
    }
    .news-horizontal-card {
        flex-direction: column;
        gap: 30px;
    }
    .news-horizontal-img, .news-horizontal-content {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .news-horizontal-content {
        text-align: left;
    }
}
