/* Blog List Styles */
.blog-list article {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding-bottom: 2rem;
    margin-bottom: 2rem !important;
    border-bottom: 2px solid var(--bs-primary);
}

.blog-list article:last-child {
    border-bottom: none;
    margin-bottom: 0 !important;
}

.blog-list article:hover {
    /* transform: translateY(-5px); */

}

.blog-list .post-thumbnail {
    overflow: hidden;
    border-radius: 8px;
}

.blog-list .post-thumbnail img {
    transition: transform 0.3s ease;
}

.blog-list .post-thumbnail:hover img {
    transform: scale(1.05);
    overflow: hidden;
}

.blog-list .entry-title a {
    color: var(--bs-primary);
    transition: color 0.3s ease;
}

.blog-list .entry-title a:hover {
    color: var(--bs-primary);
    text-decoration: underline !important;
}

.blog-list .entry-meta {
    font-size: 0.875rem;
}

.blog-list .entry-summary {
    line-height: 1.6;
    color: #666;
}

.blog-list .btn {
    border: 0px;
}

/* Blog Detail Styles */
.single .entry-header {
    border-bottom: 1px solid #dee2e6;
}

.single .entry-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.single .entry-meta {
    font-size: 0.9rem;
}

.single .entry-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
}

.single .entry-content p {
    margin-bottom: 1.5rem;
}

.single .entry-content h2,
.single .entry-content h3,
.single .entry-content h4 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.single .entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.single .post-navigation a {
    color: var(--bs-primary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.single .post-navigation a:hover {
    color: var(--bs-primary);
    text-decoration: underline !important;
}

/* Pagination Styles */
.pagination-wrapper .nav-links {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.pagination-wrapper .page-numbers {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    color: var(--bs-primary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pagination-wrapper .page-numbers:hover,
.pagination-wrapper .page-numbers.current {
    background-color: var(--bs-primary);
    color: #fff;
    border-color: var(--bs-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .single .entry-title {
        font-size: 2rem;
    }

    .single .entry-content {
        font-size: 1rem;
    }
}