.grid-section {
    padding: 0 0;
    color: #fff;
}

.news-card {
    background-color: #222;
    border-radius: 48px;
    margin-top: 20%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 4px 15px rgba(255, 98, 0, 0.2);
}

.news-img img {
    background-position: 50%;
    background-size: cover;
    border-radius: 24px;
    width: 95%;
    transform: translate(2.5%, 6%);
    height: auto;
    min-height: 300px;
}

.news-content {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    flex-grow: 1;
}

.news-content h3 {
    font-size: 1.5rem;
    margin-top: 1rem;
    margin-bottom: 10px;
}

.news-content .description {
    font-size: 1rem;
    margin-bottom: 30px;
}

.news-content a {
    background-color: #ff6200;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
    margin-top: auto;  
    align-self: center; 
}

.news-content a:hover {
    background-color: #ff6200;
}

.news-content a.btn-success {
    font-size: 0.9rem;
    padding: 10px 18px;
    margin-top: 15px;
}
