.hero-section {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 0;
    position: relative;
}

.hero-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    line-height: 1.2;
}

.news-detail-section {
    padding: 80px 0;
    background: #f9fafb;
}

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

.news-detail-header {
    background: white;
    padding: 60px;
    border-radius: 12px 12px 0 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #6b7280;
}

.news-meta svg {
    width: 16px;
    height: 16px;
    vertical-align: middle;
    margin-right: 6px;
}

.news-detail-title {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    line-height: 1.2;
    margin: 0 0 20px 0;
}

.news-detail-description {
    font-size: 20px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.news-detail-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
}

.news-detail-content {
    background: white;
    padding: 60px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
}

.news-detail-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 20px;
}

.news-detail-content h2 {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin: 40px 0 20px 0;
}

.news-detail-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: #111827;
    margin: 30px 0 15px 0;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f3f4f6;
    color: #374151;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    margin-bottom: 30px;
    transition: all 0.3s;
}

.back-button:hover {
    background: #e5e7eb;
    transform: translateX(-4px);
}

.related-news-section {
    margin-top: 80px;
    padding: 60px 0;
    background: #f9fafb;
}

.related-news-title {
    font-size: 28px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 40px;
}

.related-news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.related-news-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.related-news-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e5e7eb;
}

.related-news-content {
    padding: 24px;
}

.related-news-content h3 {
    font-size: 18px;
    font-weight: 600;
    color: #111827;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.related-news-content p {
    font-size: 14px;
    color: #6b7280;
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.related-news-date {
    font-size: 13px;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 200px;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 32px;
    }

    .news-detail-header,
    .news-detail-content {
        padding: 30px 20px;
    }

    .news-detail-title {
        font-size: 32px;
    }

    .news-detail-description {
        font-size: 16px;
    }

    .news-detail-image {
        height: 300px;
    }

    .news-detail-content p {
        font-size: 16px;
    }

    .related-news-grid {
        grid-template-columns: 1fr;
    }
}