/* ==========================================================================
   ELEMENTOR PROMO TILES WIDGET
   ========================================================================== */

.mircato-promo-grid {
    display: grid;
    width: 100%;
    /* Columns and Gap set via Controls */
}

.mircato-promo-item {
    position: relative;
    display: flex;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    /* Default text color */
    transition: all 0.3s ease;
}

.mircato-promo-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s ease;
    z-index: 1;
}

.mircato-promo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.mircato-promo-content {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Vertical align center default */
    height: 100%;
}

/* Badge */
.mircato-promo-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #e23e57;
    /* Default sale color */
    color: #fff;
    padding: 5px 10px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 3px;
    z-index: 4;
}

/* Typography Defaults */
.mircato-promo-subtitle {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    margin-bottom: 8px;
}

.mircato-promo-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 15px;
    line-height: 1.2;
    color: #fff;
}

.mircato-promo-btn {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-decoration: underline;
    /* Text link style for tiles usually */
    margin-top: 10px;
}

/* Hover Animations */
.mircato-promo-grid.hover-zoom .mircato-promo-item:hover .mircato-promo-bg {
    transform: scale(1.1);
}

.mircato-promo-grid.hover-lift .mircato-promo-item:hover .mircato-promo-content {
    transform: translateY(-5px);
}

.mircato-promo-grid.hover-fade .mircato-promo-item:hover .mircato-promo-overlay {
    background-color: rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 768px) {
    .mircato-promo-grid {
        grid-template-columns: 1fr;
        /* Force Stack on Mobile */
        gap: 15px;
    }

    .mircato-promo-item {
        min-height: 250px;
    }
}