.news-section {
    background: linear-gradient(135deg, rgba(249, 250, 251, 0.8) 0%, rgba(229, 231, 235, 0.8) 100%);
    backdrop-filter: blur(10px);
}

.news-grid {
    display: grid;
    gap: 2.5rem;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.news-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.news-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.news-image {
    height: 200px;
    width: 100%;
    object-fit: cover;
    background: linear-gradient(135deg, #10B981, #047857);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.news-content {
    padding: 2rem;
}

.news-date {
    font-size: 0.875rem;
    color: #6B7280;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.news-date i {
    margin-right: 0.5rem;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1F2937;
}

.news-excerpt {
    color: #4B5563;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.news-link {
    display: inline-flex;
    align-items: center;
    color: #10B981;
    font-weight: 600;
    transition: all 0.3s ease;
}

.news-link:hover {
    color: #047857;
    transform: translateX(5px);
}

.news-link i {
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.news-link:hover i {
    transform: translateX(3px);
}
