 /* CSS for news.php enhancements */

.content .container {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    color: #333;
}

.content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #444;
}

.content h4 b {
    color: #af022e;
    font-size: 2rem;
    transition: color 0.3s ease;
}

.content h4 b:hover {
    color: #d6336c;
    animation: pulse 1.5s infinite;
}

.content img {
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    height: auto;
}

.content img:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.row.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.row.fade-in-section.visible {
    opacity: 1;
    transform: none;
}

@keyframes pulse {
    0% {
        text-shadow: 0 0 5px #d6336c;
    }
    50% {
        text-shadow: 0 0 20px #af022e;
    }
    100% {
        text-shadow: 0 0 5px #d6336c;
    }
}
