<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Blog Archive Page */
.page-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #333;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 0.5rem;
}

.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.blog-thumbnail-link {
    overflow: hidden;
    display: block;
}

.card-img-top {
    height: 200px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card-title a {
    color: #333;
    text-decoration: none;
}

.card-meta {
    color: #6c757d;
    font-size: 0.875rem;
}

.card-meta a {
    color: #6c757d;
    text-decoration: none;
}

.card-text {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Blog Sidebar */
.tag-cloud{
    display: flex;
    flex-wrap: wrap;
    gap: 0.2rem;
}


/* Single Post Page */
.entry-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.featured-image {
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.entry-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

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

.entry-content h2, 
.entry-content h3, 
.entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.tags-links {
    font-size: 0.95rem;
}

.tags-links a {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    margin: 0.25rem;
    background-color: #f0f0f0;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* Comments Section */
.comments-area {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.comments-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.comment-metadata {
    font-size: 0.875rem;
    color: #6c757d;
    margin-bottom: 1rem;
}

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

.comment-respond {
    margin-top: 2rem;
}

.comment-reply-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.comment-form label {
    display: block;
    margin-bottom: 0.5rem;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    border: 1px solid #ddd;
}

.comment-form input[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.comment-form input[type="submit"]:hover {
    background-color: #0069d9;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .entry-title {
        font-size: 1.75rem;
    }
    
    .card-img-top {
        height: 180px;
    }
    
    .entry-content {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .card-img-top {
        height: 160px;
    }
    
    .entry-title {
        font-size: 1.5rem;
    }
}
.featured-posts-header{
    display: flex;
    align-items: start;
    justify-content: center;
    flex-direction: column;

}
.featured-posts-header .title{
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
}

/* Homepage Featured Posts */
.homepage-featured-posts {
    border-bottom: 1px solid #eee;
}

.homepage-featured-posts .news-post-card {
    transition: transform 0.2s ease;
}

.homepage-featured-posts .news-post-card:hover {
    transform: translateY(-3px);
}

.homepage-featured-posts .news-post-card .card {
    background-color: transparent;
    padding: 0 10px;
    display: flex;
    align-items: center;
    flex-direction: row;
}

.homepage-featured-posts .card-title {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.homepage-featured-posts .news-meta {
    font-size: 0.85rem;
    color: #6c757d;
}

.homepage-featured-posts .card-text {
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .featured-posts-header{
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 1rem;
        width: 100%;
    }

    .featured-posts-header .title{
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .homepage-featured-posts .card-title {
        font-size: 1.1rem;
    }
    
    .homepage-featured-posts .card-text {
        font-size: 0.9rem;
    }
} </pre></body></html>