@charset "UTF-8";

@charset "UTF-8";

/* Base Styling */
html, body {
    margin: 0;
    padding: 0;
    background-color: white;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Main Container */
.news-detail-container {
    max-width: 100vw;
    margin: 80px auto;
    padding: 25px;
    background-color: white;
    color: #222;
    animation: fadeInUp 0.8s ease;
}

/* Title */
.news-detail-title {
    text-align: center;
    font-size: 2.4em;
    color: #00bcd4;
    margin-bottom: 10px;
    font-weight: 600;
}

/* Date */
.news-detail-date {
    text-align: center;
    font-size: 1em;
    color: #777;
    margin-bottom: 25px;
}

/* Image */
.news-detail-img {
    display: block;
    max-width: 75%;
    height: auto;
    margin: 0 auto 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Content */
.news-detail-content {
    font-size: 1.1em;
    line-height: 1.8em;
    color: #333;
}

/* Button */
.pdf-button-container {
    text-align: center;
    margin-bottom: 30px;
}

.pdf-button {
    margin-top: 50px;
    display: inline-block;
    padding: 10px 20px;
    background-color: #00bcd4;
    color: white;
    font-weight: bold;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 188, 212, 0.3);
}

.pdf-button:hover {
    background-color: #0097a7;
}

/* Responsive */
@media (max-width: 600px) {
    .news-detail-container {
        margin: 70px 20px;
        padding: 20px;
    }

    .news-detail-img {
        max-width: 100%;
    }

    .news-detail-title {
        font-size: 1.8em;
    }
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
