.news-detail-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
    padding-top: 40px;
    padding-bottom: 40px;
}

.news-detail-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
}

.news-detail-card {
    max-width: 1200px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s cubic-bezier(.4,2,.2,1) forwards;
    background: linear-gradient(120deg, #ffffff 80%, #e3f0ff 100%);
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(60, 80, 120, 0.10), 0 1.5px 6px rgba(0,0,0,0.04);
    border: 1.5px solid #e3e8f0;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: none;
    }
}

.news-detail-card h1 {
    font-size: 2.3rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

.news-detail-card .text-muted {
    font-size: 1.08rem;
    margin-bottom: 1.5rem;
}

.news-detail-columns {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.news-detail-col {
    flex: 1 1 0;
    min-width: 320px;
    background: linear-gradient(120deg, #f8faff 80%, #e3f0ff 100%);
    border-radius: 12px;
    padding: 1.5rem 1.7rem;
    box-shadow: 0 2px 12px rgba(60, 80, 120, 0.07);
    font-size: 1.13rem;
    border: 1.2px solid #e3e8f0;
    transition: box-shadow 0.2s, transform 0.2s;
    margin-bottom: 0.5rem;
}
.news-detail-col:hover {
    box-shadow: 0 6px 24px rgba(60, 80, 120, 0.13);
    transform: translateY(-4px) scale(1.02);
}

.news-detail-card img {
    max-height: 350px;
    object-fit: cover;
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(60, 80, 120, 0.10);
}

@media (max-width: 1300px) {
    .news-detail-card {
        max-width: 98vw;
    }
}

@media (max-width: 900px) {
    .news-detail-columns {
        flex-direction: column;
        gap: 1.2rem;
    }
    .news-detail-col {
        min-width: unset;
    }
}
