/* Custom News Section */
.custom-news-section {
    background: #fff;
    padding: 100px 0;
}

/* Header */
.news-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-title {
    font-size: 40px;
    font-weight: 400;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.news-title .text-navy {
    color: #0A2540;
}

.news-title .text-orange {
    color: #F38400;
}

.news-title-underline {
    height: 2px;
    width: 150px;
    margin: 0 auto;
    background: linear-gradient(90deg, #0A2540 50%, #F38400 50%);
}

/* News Cards */
.custom-news-card {
    background: #fff;
    border: 1px solid #138936;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.custom-news-image {
    width: 100%;
    height: 280px;
}

.custom-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-news-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.custom-news-content h3 {
    font-size: 22px;
    font-weight: 400;
    color: #0A2540;
    line-height: 1.4;
    margin-bottom: 15px;
}

.custom-news-content p {
    color: #888;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.custom-news-divider {
    border-top: 1px solid #0A2540;
    opacity: 0.5;
    margin: 0 0 20px 0;
}

.custom-news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.custom-news-date {
    color: #0A2540;
    font-size: 14px;
    font-weight: 400;
}

/* Card Buttons */
.news-btn {
    display: inline-block;
    padding: 8px 25px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
}

.news-btn-outline {
    border: 1px solid #0A2540;
    color: #0A2540;
    background: transparent;
}

.news-btn-outline:hover {
    background: #0A2540;
    color: #fff;
}

.news-btn-solid {
    background: #0A2540;
    color: #fff;
    border: 1px solid #0A2540;
}

.news-btn-solid:hover {
    background: transparent;
    color: #0A2540;
}

@media (max-width: 991px) {
    .news-title {
        font-size: 30px;
    }
}

