﻿.news-section .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.news-section .section-divider {
    width: 60px;
    height: 3px;
    background-color: #ff6a00;
    margin: 10px auto;
}

.news-card {
    border: 2px solid #ffc084;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.4s;
    overflow: hidden;
    background: linear-gradient(7deg, #203b68, #091e3e);
    border-color: #091e3e;
}

    .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: #0060ff;
    border-radius: 5px;
    align-items: center;
    height: 25px;
    padding-left: 15px;
}

.news-card .news-description {
    font-size: 1rem;
    width: 100%;
    height: 150px;
    color: #fff;
    text-align: justify;
}

.btn-primary {
    background-color: #ff6a00;
    border-color: #ff6a00;
    color: white;
}

    .btn-primary:hover {
        background-color: #e65c00;
        border-color: #e65c00;
        color: white;
    }
