/* News Section Styles */
.news-section {
    background: var(--secondary-color);
    padding: 60px 0;
    color: #fff;
}

.news-section .description-superstars {
    color: #fff;
    text-align: center;
    margin-bottom: 40px;
}

.news-section .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin: 0 0 100px 0;
}

.news-section .news-card {
    display: block;
    text-decoration: none;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    color: #fff;
}

.news-section .news-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    text-decoration: none;
    color: #fff;
}

.news-section .news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 0.9em;
}

.news-section .news-category {
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-section .news-date {
    color: rgba(255, 255, 255, 0.7);
}

.news-section .news-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4em;
    margin: 0 0 12px 0;
    color: #fff;
    line-height: 1.3;
}

.news-section .news-excerpt {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95em;
}

.news-section .news-footer {
    text-align: center;
    margin-top: 40px;
}

.news-section .button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #fff;
    border: 2px solid var(--primary-color);
    padding: 15px 30px;
    font-family: Montserrat, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-section .button:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

@media (max-width: 991px) {
    .news-section .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .news-section .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-section .button {
        width: 100%;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
} 