/* News Page Styles */
.news-page {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: var(--bg-color);
}

.news-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-header h1 {
    font-family: 'Cinzel', serif;
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.news-intro {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--medium-text);
    max-width: 700px;
    margin: 30px auto 0;
    line-height: 1.6;
}

/* News Grid */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* News Card */
.news-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);
}

.news-card-image {
    width: 100%;
    overflow: hidden;
    background: var(--light-bg);
    position: relative;
}

.news-card-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.05);
}

.news-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-date {
    font-family: 'Cinzel', serif;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.news-card-title {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    color: var(--dark-text);
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.3;
}

.news-card-description {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--medium-text);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.news-card-location {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    color: var(--medium-text);
    font-style: italic;
}

.news-card-category {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 12px;
    background: var(--light-bg);
    color: var(--primary-color);
    border-radius: 20px;
    font-weight: 600;
}

/* Empty State */
.news-empty {
    text-align: center;
    padding: 80px 20px;
    grid-column: 1/-1;
}

.news-empty-icon {
    font-size: 80px;
    margin-bottom: 20px;
    opacity: 0.3;
}

.news-empty p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 20px;
    color: var(--medium-text);
    max-width: 500px;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 768px) {
    .news-page {
        padding: 100px 0 60px;
    }

    .news-header h1 {
        font-size: 36px;
    }

    .news-intro {
        font-size: 18px;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .news-card-content {
        padding: 20px;
    }

    .news-card-title {
        font-size: 20px;
    }
}
