/* Enhanced Blog Styles for Corpify */

/* Blog Listing Page */
.blog-header {
    position: relative;
    background: linear-gradient(135deg, #0062cc, #0097a7);
    padding: 5rem 0;
}

.blog-search-form .form-control {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.blog-search-form .btn {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.blog-categories {
    border-bottom: 1px solid #eee;
}

.blog-category-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    color: #495057;
    text-decoration: none;
    border-radius: 2rem;
    transition: all 0.2s ease;
}

.blog-category-link:hover {
    background-color: #e9ecef;
    color: #212529;
}

.blog-category-link.active {
    background-color: #0d6efd;
    color: white;
}

.category-count {
    font-size: 0.8rem;
    opacity: 0.7;
}

.featured-post-card {
    border: none;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-post-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.featured-post-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.featured-post-meta {
    margin-bottom: 1rem;
}

.featured-badge {
    background-color: #0d6efd;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    margin-right: 0.5rem;
}

.featured-category a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
}

.featured-date {
    color: #6c757d;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.featured-post-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.featured-post-title a {
    color: #212529;
    text-decoration: none;
}

.featured-post-title a:hover {
    color: #0d6efd;
}

.featured-post-excerpt {
    flex-grow: 1;
    margin-bottom: 1.5rem;
}

.featured-post-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-author {
    font-size: 0.9rem;
    color: #6c757d;
}

.blog-card {
    margin-bottom: 2rem;
    border: 1px solid #eee;
    border-radius: 0.5rem;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.blog-card-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 1.5rem;
}

.blog-card-meta {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
}

.blog-category a {
    color: #0d6efd;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
}

.blog-date {
    color: #6c757d;
    font-size: 0.85rem;
    margin-left: 1rem;
}

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

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

.blog-card-title a:hover {
    color: #0d6efd;
}

.blog-card-text {
    color: #6c757d;
    margin-bottom: 1rem;
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.blog-author {
    font-size: 0.85rem;
    color: #6c757d;
}

.sidebar-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.sidebar-section h4 {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f8f9fa;
}

.sidebar-categories {
    list-style: none;
    padding-left: 0;
}

.sidebar-categories li {
    margin-bottom: 0.5rem;
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    color: #495057;
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.2s ease;
}

.sidebar-categories a:hover {
    color: #0d6efd;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    align-items: center;
}

.popular-post-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 0.25rem;
    margin-right: 1rem;
}

.popular-post h6 {
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.popular-post h6 a {
    color: #212529;
    text-decoration: none;
}

.popular-post h6 a:hover {
    color: #0d6efd;
}

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

.tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background-color: #f8f9fa;
    color: #495057;
    border-radius: 2rem;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.tag:hover {
    background-color: #0d6efd;
    color: white;
}

.blog-pagination .page-link {
    color: #0d6efd;
}

.blog-pagination .page-item.active .page-link {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.blog-cta .card {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

/* Blog Post Page */
.blog-post-header .post-meta {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.blog-post-header .meta-primary {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.blog-post-header .meta-author {
    display: flex;
    align-items: center;
}

.blog-post-header .author-image-circle {
    margin-right: 0.75rem;
}

.blog-post-header .meta-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #6c757d;
    font-size: 0.875rem;
}

.blog-post-header .meta-info .separator {
    width: 4px;
    height: 4px;
    background-color: #6c757d;
    border-radius: 50%;
}

.blog-post-header .meta-tags {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-left: 3.25rem; /* Aligns with the author name */
}

.blog-post-header .badge {
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.35rem 0.75rem;
    border-radius: 2rem;
    text-decoration: none;
}

.blog-post-header .badge.bg-primary {
    background-color: #0d6efd;
    color: white;
}

.blog-post-header .badge.bg-secondary {
    background-color: #f0f2f5;
    color: #4b5563;
}

.blog-post-header .badge.bg-secondary:hover {
    background-color: #e5e7eb;
    color: #111827;
}

.blog-post-category {
    background-color: #0d6efd;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    text-decoration: none;
}

.blog-post-category:hover {
    background-color: #0b5ed7;
    color: white;
}

.blog-post-date, .blog-post-reading-time {
    color: #6c757d;
    font-size: 0.9rem;
}

.blog-post-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.blog-post-excerpt {
    font-size: 1.25rem;
    color: #495057;
    margin-bottom: 2rem;
}

.blog-post-author {
    display: flex;
    align-items: center;
    margin-top: 2rem;
}

.blog-post-author-image {
    margin-right: 1rem;
}

.blog-post-author-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.blog-post-author-info h5 {
    margin-bottom: 0.25rem;
}

.blog-post-author-info p {
    margin-bottom: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.blog-post-featured-image {
    margin-bottom: 3rem;
}

.blog-post-featured-image img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
}

.blog-post-content {
    padding: 3rem 0;
    position: relative;
}

.blog-social-sidebar {
    position: sticky;
    top: 100px;
    float: left;
    margin-left: -80px;
}

.blog-social-share {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-share-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    transition: transform 0.2s ease;
}

.social-share-link:hover {
    transform: scale(1.1);
    color: white;
}

.social-share-link.facebook {
    background-color: #1877f2;
}

.social-share-link.twitter {
    background-color: #1da1f2;
}

.social-share-link.linkedin {
    background-color: #0a66c2;
}

.social-share-link.email {
    background-color: #6c757d;
}

.blog-post-article {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #212529;
}

.blog-post-article p {
    margin-bottom: 1.5rem;
}

.blog-post-article h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.blog-post-article h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1.25rem;
    font-weight: 600;
}

.blog-post-article ul, .blog-post-article ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.blog-post-article li {
    margin-bottom: 0.5rem;
}

.blog-post-article .lead {
    font-size: 1.25rem;
    font-weight: 300;
    color: #495057;
}

.blog-image-container {
    margin: 2rem 0;
}

.blog-image-container img {
    width: 100%;
}

.image-caption {
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.75rem;
}

.example-box {
    background-color: #f8f9fa;
    border-left: 4px solid #0d6efd;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.25rem;
}

.example-box h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.pro-tip {
    background-color: #e8f4fd;
    border-left: 4px solid #0dcaf0;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0.25rem;
}

.pro-tip h4 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #0c63e4;
}

.author-box {
    display: flex;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 0.5rem;
    margin: 3rem 0;
}

.author-image {
    margin-right: 1.5rem;
}

.author-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
}

.author-bio h4 {
    margin-top: 0;
    margin-bottom: 1rem;
}

.related-posts {
    margin: 3rem 0;
}

.related-posts h3 {
    margin-bottom: 1.5rem;
}

.related-post-card {
    display: block;
    color: #212529;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    color: #0d6efd;
}

.related-post-card img {
    border-radius: 0.5rem;
    margin-bottom: 1rem;
    height: 150px;
    object-fit: cover;
}

.related-post-card h4 {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.blog-post-comments {
    margin-top: 4rem;
}

.blog-post-comments h3 {
    margin-bottom: 1.5rem;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.comment {
    display: flex;
}

.comment-avatar {
    margin-right: 1rem;
}

.comment-avatar img {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.comment-content {
    flex-grow: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-header h5 {
    margin-bottom: 0;
}

.comment-date {
    color: #6c757d;
    font-size: 0.85rem;
}

.blog-post-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-related-posts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-related-post {
    margin-bottom: 1rem;
}

.sidebar-related-post a {
    display: block;
    color: #212529;
    text-decoration: none;
}

.sidebar-related-post a:hover {
    color: #0d6efd;
}

.sidebar-related-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 0.25rem;
    margin-bottom: 0.75rem;
}

.sidebar-related-post h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.blog-post-navigation {
    padding: 2rem 0;
    border-top: 1px solid #dee2e6;
}

.blog-post-nav {
    display: inline-block;
    color: #495057;
    text-decoration: none;
    padding: 0.5rem 0;
}

.blog-post-nav:hover {
    color: #0d6efd;
}

.nav-label {
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 991.98px) {
    .blog-social-sidebar {
        display: none;
    }
    
    .blog-post-title {
        font-size: 2rem;
    }
    
    .author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-image {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .blog-card-img {
        height: 200px;
    }
    
    .featured-post-img {
        height: 250px;
    }
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

.animate-fade-in.delay-100 {
    animation-delay: 0.1s;
}

.animate-fade-in.delay-200 {
    animation-delay: 0.2s;
}

.animate-fade-in.delay-300 {
    animation-delay: 0.3s;
}

.animate-fade-up {
    animation: fadeUp 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional fixes for meta alignment */
.blog-post-header .meta-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.blog-post-header .primary-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.blog-post-header .secondary-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.blog-post-header .category-badge {
    height: 28px;
    padding: 0 16px;
    display: inline-flex;
    align-items: center;
    background-color: #0d6efd;
    color: white;
    border-radius: 14px;
    font-size: 0.875rem;
    font-weight: 500;
}

.blog-post-header .tag-badge {
    height: 24px;
    padding: 0 12px;
    display: inline-flex;
    align-items: center;
    background-color: #f0f2f5;
    color: #4b5563;
    border-radius: 12px;
    font-size: 0.8125rem;
    font-weight: 500;
}

.blog-post-header .tag-badge:hover {
    background-color: #e5e7eb;
    color: #111827;
}

.blog-post-header .meta-text {
    color: #6b7280;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
}

.blog-post-header .meta-text i {
    margin-right: 0.25rem;
}
/* Additional styles for better visual hierarchy */
.blog-post-header .post-meta-container {
    margin-bottom: 2rem;
}

.blog-post-header .main-meta {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.blog-post-header .tags-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    padding-left: 0.25rem;
}

.blog-post-header .tags-label {
    color: #6c757d;
    font-size: 0.875rem;
    margin-right: 0.5rem;
}

/* Clear any conflicting styles */
.blog-post-header .badge {
    margin: 0;
    text-decoration: none;
}


/* Force all author images to be perfectly round */
.blog-post-author-image img,
.author-image img,
.author-image-circle,
.author-image-circle img {
    border-radius: 50% !important;
    width: 60px !important;
    height: 60px !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* Ensure container is also round */
.blog-post-author-image,
.author-image,
.author-image-circle {
    border-radius: 50% !important;
    overflow: hidden !important;
    display: inline-block !important;
}







/* Force the container too */
.author-bio .author-image-circle,
.author-bio div[style*="width: 64px"] {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    display: block !important;
}


/* ASPECT RATIO FIX - Handle non-square author images properly */
.author-bio .author-image-circle {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    position: relative !important;
}

.author-bio .author-image-circle img,
.author-bio .author-avatar {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    object-position: center top !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
}

/* Override any inline styles */
.author-bio div[style*="width: 64px"] {
    width: 64px !important;
    height: 64px !important;
    border-radius: 50% !important;
    overflow: hidden !important;
}

.author-bio div[style*="width: 64px"] img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top !important;
    border-radius: 50% !important;
}

/* Sponsored Ad Card Styling */
.blog-card.sponsored {
    border: 2px solid #ffc107;
    background: linear-gradient(135deg, #fff9e6 0%, #ffffff 100%);
}

.sponsored-label .badge {
    font-size: 0.75rem;
    padding: 0.5rem 0.75rem;
}

.sponsored-content {
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsored-footer {
    border-top: 1px solid #dee2e6 !important;
}

.sponsored-footer small {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}



/* Horizontal Ad Banner Styling - Clean and Centered */
.horizontal-ad-banner {
    width: 100%;
    max-width: none;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
}

.horizontal-ad-banner .adsbygoogle {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto;
}


.horizontal-ad-banner small {
    font-size: 0.7rem;
    color: #999;
    margin-bottom: 0.5rem;
}

.horizontal-ad-banner .adsbygoogle {
    width: 100% !important;
    max-width: 100% !important;
}


.horizontal-ad-banner small {
    font-size: 0.75rem;
    color: #6c757d;
}

/* Sidebar Ad Styling for blog_post.php */
.sidebar-ad-content {
    width: 100%;
}

.sidebar-ad-content .adsbygoogle {
    width: 100% !important;
    height: 250px !important;
    display: block !important;
}

.sidebar-ad-note {
    text-align: center;
    border-top: 1px solid #dee2e6;
    padding-top: 0.5rem;
}

.sidebar-ad-note small {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    color: #6c757d;
}
.blog-header {
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
    background-color: #004080;
}

.blog-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 64, 128, 0.8) 100%);
    z-index: 1;
}

.blog-header .container {
    position: relative;
    z-index: 2;
}

.blog-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    z-index: 0;
}

.blog-header .display-4 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    color: #ffffff;
}

.blog-header .lead {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 2rem;
    max-width: 90%;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.blog-header .img-fluid {
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    max-height: 350px;
    object-fit: cover;
    width: 100%;
}

.blog-header .img-fluid:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.search-container {
    position: relative;
    max-width: 100%;
    margin-bottom: 2rem;
}

.search-container .form-control {
    border-radius: 50px;
    padding-left: 1.5rem;
    padding-right: 4rem;
    border: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.search-container .btn {
    border-radius: 50px;
    padding: 0.5rem 1rem;
    margin: 0.25rem;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

@media (max-width: 991.98px) {
    .blog-header {
        padding: 3rem 0;
    }
    
    .blog-header .display-4 {
        font-size: 2.5rem;
    }
    
    .blog-header .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 767.98px) {
    .blog-header {
        padding: 2.5rem 0;
    }
    
    .blog-header .display-4 {
        font-size: 2rem;
    }
}
/* Clickable title links for featured posts */
.title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.title-link:hover {
    color: #007bff;
    text-decoration: none;
}

/* Clickable excerpt links for featured posts */
.blog-card .excerpt-link,
.blog-card-body .excerpt-link,
p.mb-4 .excerpt-link {
    color: #5a6268 !important;
    text-decoration: none !important;
    transition: color 0.3s ease;
}

.blog-card .excerpt-link:hover,
.blog-card-body .excerpt-link:hover,
p.mb-4 .excerpt-link:hover {
    color: #007bff !important;
    text-decoration: none !important;
}
/* Fix for blog card images to cover full horizontal width */
.blog-card-img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    display: block !important;
}

.blog-card .blog-card-img {
    border-radius: 0.375rem 0.375rem 0 0 !important;
}
/* Infinite Loading Styles */
#load-more-btn {
    min-width: 200px;
    transition: all 0.3s ease;
}

#load-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,123,255,0.3);
}

#load-more-btn:disabled {
    transform: none;
    box-shadow: none;
}

.blog-post-item {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#loading-indicator {
    animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

#end-of-posts {
    animation: slideInUp 0.5s ease-out;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Loading spinner customization */
.spinner-border-sm {
    width: 1rem;
    height: 1rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #load-more-btn {
        min-width: 150px;
        font-size: 0.9rem;
    }
}
