/* News Card Enhancement */
.news-card {
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.news-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(14, 91, 115, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.news-card:hover::before {
    opacity: 1;
}

.news-card:hover {
    transform: translateY(-10px) rotate(1deg);
    box-shadow: 0 20px 50px rgba(14, 91, 115, 0.25);
}

.news-card img {
    transition: transform 0.5s ease;
}

.news-card:hover img {
    transform: scale(1.1);
}

.news-card .card-body {
    position: relative;
    z-index: 2;
}

.news-section-title {
    color: #0e5b73;
}

.news-title {
    color:#0e5b73;
}

.news-image-wrapper {
    overflow: hidden;
    height: 220px;
}

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

.btn-news {
    background:#0e5b73;
    color:white;
    border-radius: 20px;
    padding: 8px 20px;
    transition: all 0.3s ease;
}