/* News content styling */
.news-details-content {
    line-height: 1.6;
    color: #333;
}

.news-details-content h1,
.news-details-content h2,
.news-details-content h3,
.news-details-content h4,
.news-details-content h5,
.news-details-content h6 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.news-details-content p {
    margin-bottom: 1rem;
}

.news-details-content ul,
.news-details-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.news-details-content ul li,
.news-details-content ol li {
    margin-bottom: 0.5rem;
}

.news-details-content img {
    max-width: 100%;
    height: auto;
    margin: 1rem 0;
    border-radius: 5px;
}

.news-details-content blockquote {
    border-left: 4px solid #d5a011;
    padding-left: 1rem;
    margin-left: 0;
    color: #555;
    font-style: italic;
}

.news-details-content a {
    color: #d5a011;
    text-decoration: none;
}

.news-details-content a:hover {
    text-decoration: underline;
}

.news-details-content table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1rem;
}

.news-details-content table th,
.news-details-content table td {
    border: 1px solid #ddd;
    padding: 8px;
}

.news-details-content table th {
    background-color: #f2f2f2;
    text-align: left;
}