/* News Category Page Styles */
.news-category-page {
    background: #FFFFFF;
    min-height: 100vh;
    padding: 150px 0 60px;
}

.news-category-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Titles */
.section-title {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #6B4C9A;
    margin-bottom: 30px;
    line-height: 1.2;
}

/* Highlight Section */
.highlight-section {
    margin-bottom: 80px;
}

.highlight-card {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.highlight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.highlight-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.3) 75%,
        transparent 100%
    );
    padding: 60px 40px 40px;
}

.highlight-content {
    color: #FFFFFF;
}

.highlight-title {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.3;
    color: #FFFFFF;
}

.highlight-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.95;
    max-width: 800px;
}

.highlight-empty {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    background: #F5F5F5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 1.1rem;
}

/* News List Section */
.news-list-section {
    margin-bottom: 60px;
}

.news-items-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 60px;
    margin-top: 40px;
}

.news-item {
    border-bottom: 1px solid #E0E0E0;
    padding-bottom: 20px;
    transition: border-color 0.3s ease;
}

.news-item:hover {
    border-bottom-color: #6B4C9A;
}

.news-item-link {
    text-decoration: none;
    display: block;
}

.news-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333333;
    margin: 0 0 10px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-item-link:hover .news-item-title {
    color: #6B4C9A;
}

.news-item-media,
.news-item-date {
    font-size: 0.9rem;
    color: #666666;
    margin: 5px 0;
    line-height: 1.4;
}

.news-item-media {
    font-weight: 500;
}

.news-item-date {
    color: #999999;
}

.news-items-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .news-category-page {
        padding: 40px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .highlight-section {
        margin-bottom: 50px;
    }

    .highlight-card {
        height: 300px;
    }

    .highlight-overlay {
        padding: 40px 25px 25px;
    }

    .highlight-title {
        font-size: 1.4rem;
    }

    .highlight-excerpt {
        font-size: 0.9rem;
    }

    .news-items-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .news-item-title {
        font-size: 1rem;
    }

    .news-item-media,
    .news-item-date {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .news-category-container {
        padding: 0 15px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .highlight-card {
        height: 250px;
    }

    .highlight-overlay {
        padding: 30px 20px 20px;
    }

    .highlight-title {
        font-size: 1.2rem;
    }

    .highlight-excerpt {
        font-size: 0.85rem;
    }

    .news-items-grid {
        gap: 25px;
    }
}

/* Print Styles */
@media print {
    .news-category-page {
        background: white;
    }

    .highlight-card {
        box-shadow: none;
        page-break-inside: avoid;
    }

    .news-item {
        page-break-inside: avoid;
    }
}
