/* Styling for Advanced Posts List */
.apl-wrapper {
    position: relative;
}

.apl-post-item {
    transition: all 0.3s ease;
}

.apl-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border-radius: 0.5rem;
    overflow: hidden;
}

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

.apl-post-img {
    transition: transform 0.5s ease;
}

.apl-card.transition-hover:hover .apl-post-img {
    transform: scale(1.05);
}

.apl-title-link {
    transition: color 0.2s ease;
}

.apl-title-link:hover {
    color: #0d6efd !important;
}

.apl-toggle-btn {
    transition: all 0.2s ease;
}

/* .apl-toggle-btn.active {
    background-color: #0d6efd;
    color: white;
} */

/* 
.apl-toggle-btn svg {
    margin-right: 4px;
    margin-bottom: 2px;
} */

/* Loader Overlay/Transition */
.apl-loader {
    min-height: 50px;
}