/* News & Press Cards - New Style */
.news-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.news-card {
    background: var(--dark-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: inherit;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: inherit;
}

.news-card:hover .news-card-title {
    color: var(--secondary-color);
}

.news-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.news-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card-category {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.news-card-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.4;
    font-weight: 500;
}

.news-card-meta {
    margin-top: auto;
}

.news-card-date {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1200px) {
    .news-card-grid {
        grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    }
}

@media (max-width: 768px) {
    .news-card-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }
    
    .news-card-image {
        height: 200px;
    }
    
    .news-card-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .news-card-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
} 