<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* News Content Body Styles */
.news-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 0 0 0;
}

.news-lead {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 400;
}

.news-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
}

.news-article-content {
    font-size: 1.125rem;
    line-height: 1.8;
}

.news-article-content p {
    margin-bottom: 1.5rem;
}

.news-article-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 2.5rem 0 1.5rem;
    color: var(--heading-color);
}

.news-article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--heading-color);
}

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

.news-article-content li {
    margin-bottom: 0.5rem;
}

.news-article-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: var(--text-muted);
}

/* News Images */
.news-image-container {
    margin: 2rem 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.news-image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    padding: 1rem;
    background-color: var(--background-light);
    font-size: 0.875rem;
    color: var(--text-muted);
    text-align: center;
}

/* Meta Information */
.news-meta {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.meta-item i {
    color: var(--primary-color);
}

/* Share Section */
.share-section {
    padding: 2rem 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin: 3rem 0;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: var(--background-light);
    color: var(--heading-color);
    text-decoration: none;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    font-weight: 500;
}

.share-btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.share-btn i {
    font-size: 1.25rem;
}

/* SVG Icons fÃ¼r Share Buttons */
.share-icon {
    width: 1.25rem;
    height: 1.25rem;
    display: inline-block;
    vertical-align: middle;
}

/* Author Section */
.author-section {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    margin: 3rem 0;
}

.author-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: bold;
    flex-shrink: 0;
}

.author-details h4 {
    margin-bottom: 0.5rem;
    color: var(--heading-color);
}

.author-bio {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.author-articles {
    color: var(--primary-color);
    font-weight: 500;
}

/* Tags */
.news-tags {
    margin: 2rem 0;
}

.tag-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--background-light);
    color: var(--text-color);
    text-decoration: none;
    border-radius: 20px;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Related Articles */
.related-articles {
    background-color: var(--background-light);
    padding: 3rem 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.related-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.related-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}

.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-card:hover .related-image img {
    transform: scale(1.05);
}

.related-content {
    padding: 1.5rem;
}

.related-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.related-excerpt {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* News specific additions */
.news-headline-main {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin: 3rem 0 1.5rem;
    position: relative;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

.news-headline-sub {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
}

/* News Share Section */
.news-share {
    margin: 3rem 0;
    padding: 2rem;
    background: var(--light-color);
    border-radius: var(--border-radius);
    text-align: center;
}

.news-share-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.news-share-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.share-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e0e0e0;
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #333;
}

.share-button.facebook:hover {
    border-color: #1877f2;
    color: #1877f2;
}

.share-button.twitter:hover {
    border-color: #1da1f2;
    color: #1da1f2;
}

.share-button.whatsapp:hover {
    border-color: #25d366;
    color: #25d366;
}

.share-button.email:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Author Info Box */
.author-info {
    margin: 4rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, var(--light-color) 0%, #ffffff 100%);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.author-info-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.author-details h3 {
    margin: 0 0 0.25rem 0;
    font-size: 1.3rem;
    color: var(--dark-color);
}

.author-details p {
    margin: 0;
    color: #666;
    font-size: 0.95rem;
}

.author-bio {
    margin-top: 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* News Navigation */
.news-navigation {
    margin: 4rem 0;
    padding: 2rem 0;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.news-nav-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .news-nav-grid {
        grid-template-columns: 1fr;
    }
}

.news-nav-item {
    display: flex;
    flex-direction: column;
}

.news-nav-label {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-image-caption {
    padding: 1rem;
    background-color: #f8f9fa;
    font-size: 0.875rem;
    color: #666;
    text-align: center;
    font-style: italic;
}

.news-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding-left: 1.5rem;
    margin: 2rem 0;
    font-style: italic;
    color: #666;
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.news-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.news-table th,
.news-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.news-table th {
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
}

.news-table tr:last-child td {
    border-bottom: none;
}

.news-table tr:hover {
    background-color: #f8f9fa;
}

.news-nav {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.news-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.news-nav-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.news-nav-icon {
    color: var(--primary-color);
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.news-nav-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.news-nav-link:hover {
    color: #008ba3;
    text-decoration: underline;
}

/* Inline Ads fÃ¼r News */
.news-ad-inline {
    margin: 3rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: var(--border-radius);
    border: 1px solid #e0e0e0;
}

/* Responsive */
@media (max-width: 768px) {
    .news-article {
        padding: 2rem 0 0 0;
    }
    
    .news-article-content {
        font-size: 1rem;
    }
    
    .news-article-content h2 {
        font-size: 1.5rem;
    }
    
    .author-info {
        flex-direction: column;
        text-align: center;
    }
    
    .share-buttons {
        justify-content: center;
    }
}</pre></body></html>