/* agendi · Galleria foto */

.ag-gallery-album-card {
    display: block;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 18px rgba(26, 31, 46, 0.08);
    transition: transform .2s ease, box-shadow .2s ease;
    color: inherit;
    height: 100%;
}

.ag-gallery-album-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(26, 31, 46, 0.12);
    color: inherit;
}

.ag-gallery-album-cover {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #eef1f5;
}

.ag-gallery-album-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(26, 31, 46, 0.75);
    color: #fff;
    font-size: .75rem;
    padding: .25rem .55rem;
    border-radius: 999px;
}

.ag-gallery-album-body {
    padding: 1rem 1.1rem 1.2rem;
}

.ag-gallery-item {
    margin: 0;
}

.ag-gallery-thumb {
    border-radius: 10px;
    overflow: hidden;
    background: #eef1f5;
    aspect-ratio: 1;
}

.ag-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .25s ease;
}

.ag-gallery-thumb:hover img {
    transform: scale(1.04);
}

.ag-gallery-caption {
    line-height: 1.35;
}

.ag-gallery-pagination .page-link {
    border-radius: 8px;
    margin: 0 2px;
    color: var(--ag-ink, #1a1f2e);
}

.ag-gallery-pagination .page-item.active .page-link {
    background: var(--ag-warm, #c45c26);
    border-color: var(--ag-warm, #c45c26);
}

.ag-empty-state {
    min-height: 240px;
}
