﻿.folder-card {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 0;
    overflow: hidden;
    transition: all 0.25s ease;
    position: relative;
}

    .folder-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    }

.folder-inner-card {
    width: 100%;
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(3px);
    color: var(--bs-white);
    text-align: center;
}

.image-count-span {
    color: var(--bs-white);
    font-size: 0.875rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    top: 8px;
    right: 12px;
    z-index: 9;
}

.folder-inner-card > i {
    font-size: 64px;
    color: var(--bs-yellow);
    padding: 40px 24px;
}

.gallery-card {
    padding: 0;
    position: relative;
    overflow: hidden;
}

    .gallery-card img {
        width: 100%;
        aspect-ratio: 4/3;
        object-fit: cover;
        border-radius: 16px;
        cursor: pointer;
        transition: transform 0.2s ease;
    }

        .gallery-card img:hover {
            transform: scale(1.05);
        }

.gallery-content {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    color: var(--bs-white);
}

.modal-body {
    padding: 40px;
}
