/* News Container */
.news-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

/* News Header */
.news-header {
    text-align: center;
    margin-bottom: 20px;
}

.news-title {
    font-size: 28px;
    font-weight: bold;
    color: #2C2048;
}

.news-date {
    font-size: 14px;
    color: #6c757d;
}

/* blog Image */
.news-image {
    text-align: center;
    margin-bottom: 20px;
}

.news-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 6px;
}

/* blog Content */
.news-content {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
}

.news-description {
    font-weight: 600;
    margin-bottom: 15px;
}

.news-extended-content {
    font-size: 16px;
    color: #555;
}

.news-extended-content h2 {
    font-size: 22px;
    color: #2C2048;
    margin-top: 20px;
}

.news-extended-content p {
    margin-bottom: 15px;
}

/* Back Button */
.back-button {
    text-align: center;
    margin-top: 30px;
}

.btn-own {
    display: inline-block;
    padding: 10px 20px;
    background-color: #2C2048;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background 0.3s ease-in-out;
}

.btn-own:hover {
    background-color: #284b63;
}
