
.news-container {
    margin-top: 2rem;
    margin-bottom: 4rem;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
    padding: 2rem;
    line-height: 1.8;
}

.news-image-wrapper {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
}

.news-main-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 500px;
}

.news-header {
    border-bottom: 1px solid #eee;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
}

.news-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 10px;
    font-weight: bold;
}

.news-meta {
    font-size: 0.9rem;
    color: #777;
}

.news-body {
    font-size: 1.1rem;
    color: #444;
    text-align: justify;
}

.news-attachment {
    margin-top: 3rem;
    padding: 1.5rem;
    background: #f9f9f9;
    border-right: 4px solid #007bff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
}

.attachment-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #555;
}

.btn-download {
    background-color: #007bff;
    color: white;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-download:hover {
    background-color: #0056b3;
    color: #fff;
}

@media (max-width: 768px) {
    .news-attachment {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}
