/* Card styling for KONI Aceh Website */
.card {
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.card--clean {
    margin-top: 0px;
}

.card__header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.card__header h4 {
    margin-bottom: 0;
    font-weight: 700;
}

.widget .card__header h4 {
    font-size: 16px;
}

/* Card content styling */
.card__content {
    padding: 24px;
}

.card__footer {
    padding: 16px 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.card__footer--sm {
    padding: 12px 24px;
}

/* Gallery items */
.gallery__item {
    position: relative;
    display: block;
    margin-bottom: 15px;
    overflow: hidden;
    border-radius: 4px;
}

.gallery__img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.gallery__item:hover .gallery__img {
    transform: scale(1.05);
}

.gallery__item-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-caption {
    color: #fff;
    padding: 15px;
    font-weight: 500;
    font-size: 14px;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding-top: 30px;
}
