/**
 * Gallery Card Components CSS
 * 
 * Gallery card styling with overlay effects
 * Extends base card system from cards.css
 * 
 * Contains:
 * - Gallery cards (.card-gallery)
 * - Image overlay effects
 * - Hover state interactions
 */

/* ============================
   Gallery Card
   ============================ */

body.theme-pt .card.card-gallery,
body.theme-pt .card.card-gallery:focus,
body.theme-pt .card.card-gallery:active {
    position: relative;
}

body.theme-pt .card.card-gallery img,
body.theme-pt .card.card-gallery .card-image img {
    height: auto;
}

body.theme-pt .card.card-gallery .overlay,
body.theme-pt .card.card-gallery .card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--card-overlay-gradient);
    opacity: 0;
    transition: var(--card-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

body.theme-pt .card.card-gallery .overlay img,
body.theme-pt .card.card-gallery .card-overlay img {
    width: 48px;
    height: 48px;
    opacity: 1;
    filter: brightness(0) invert(1);
    position: static;
    border-radius: 0;
}

