/**
 * Image Card Block Styles
 *
 * @package Town_Hall
 */

.image-card {
    padding: var(--padding-top, 0) var(--padding-right, 0) var(--padding-bottom, 0) var(--padding-left, 0);
    width: var(--width-desktop, 300px);
    height: var(--height-desktop, 400px);
}

.image-card-wrapper {
    position: relative;
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    border-radius: 2px;
    overflow: hidden;
    width: 100%;
    height: 100%;
}

.image-card__image {
    width: 100%;
    height: 100% !important;
    object-fit: var(--image-fit, cover);
    object-position: var(--image-position, center);
    border-radius: 2px;
    position: relative;
}

.image-card__label {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    height: 18px;
}

.image-card__label .left,
.image-card__label .right {
    display: block;
    height: 100%;
    position: relative;
}

.image-card__label .left {
    left: 2px;
}

.image-card__label .right {
    right: 2px;
}

.image-card__label-text {
    font-family: 'Union', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 18px;
    padding: 0 2px;
    white-space: nowrap;
    text-transform: uppercase;
    z-index: 1;
    background-color: var(--label-bg-color);
}

.image-card__button {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 3;
}

/* Mobile styles */
@media (max-width: 768px) {
    .image-card {
        width: var(--width-mobile, 300px);
        height: var(--height-mobile, 400px);
        padding: var(--mobile-padding-top, 0) var(--mobile-padding-right, 0) var(--mobile-padding-bottom, 0) var(--mobile-padding-left, 0);
    }
    
    .image-card__label-text {
        font-size: 12px;
        padding: 0 16px;
    }
}
