﻿
.show-more-container {
    text-align: center;
    margin-top: 2rem;
    padding: 1rem 0;
    display: flex;
    justify-content: center;
}

.show-more-btn {
    background: transparent;
    color: #1C48B2;
    border: 1px solid rgba(28, 72, 178, 0.3);
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: none;
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.btn-text {
    transition: all 0.3s ease;
}

.btn-arrow {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

    .btn-arrow svg {
        transition: transform 0.3s ease;
        color: inherit;
    }

/* Arrow rotation for expanded state */
.show-more-btn.expanded .btn-arrow svg {
    transform: rotate(180deg);
}

.show-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(28, 72, 178, 0.3);
    background: linear-gradient(90deg, #1C48B2 0%, #CC338D 100%);
    color: white;
    border-color: transparent;
}

.show-more-btn:active {
    transform: translateY(0);
}

/* Batch-based card visibility - Show 6 blogs at a time */
.blog-card-batch-1 {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.blog-card-batch-2,
.blog-card-batch-3 {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

    .blog-card-batch-2.show,
    .blog-card-batch-3.show {
        display: block;
        opacity: 1;
        transform: translateY(0);
    }

/* Responsive Design */
@@media (max-width: 768px) {
    .show-more-btn {
        padding: 10px 25px;
        font-size: 14px;
    }

    .show-more-container {
        margin-top: 1.5rem;
        padding: 0.5rem 0;
    }
}
