﻿
.news-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ddd;
}

.news-section .section-divider {
    width: 60px;
    height: 3px;
    background-color: #007bff;
    margin: 10px auto;
}

.news-card {
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.4s;
    overflow: hidden;
    background: linear-gradient(45deg, #389c8e, #2a7c71);
    border-color: #16ac97;
}

    .news-card:hover {
        transform: translateY(-15px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
           }

    .news-card .news-image {
        height: 200px;
        width: 100%;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        border-color:white;
    }

        .news-card .news-image img {
            height: 100%;
            width: 100%;
            object-fit: cover;
            border-radius: 8px;
           background-color:white;

        }
.news-title{
    color: white !important;
}

.news-card .news-title {
    font-size: 1.25rem;
    font-weight: 800;
    height: 120px;
    color: #fff;
}

    .news-card .news-date {
        font-size: 1.1rem;
        color:#fff;
       
        background-color:#ff6a00;
        border-radius:5px;
        align-items:center;
        height:25px;
        padding-left:15px;
        
    }

    .news-card .news-description {
        font-size: 1rem;
     width:200px;
        height: 150px;
        color:#fff;
    }

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
}

    .btn-primary:hover {
        background-color: #ff6a00;
        border-color: #ff6a00;
        color:white
    }

