/*
 * ============================================================
 * 07 — BONUS BLOCK  (space-offers-archive-item)
 * Bonus shortcode kortelių stiliai.
 * ============================================================
 */

.space-offers-archive-item.space-dark-style .space-offers-archive-item-ins {
    background: rgba(8, 18, 40, 0.30) !important;
    border: 1px solid var(--sg-violet-border);
    border-radius: var(--sg-radius);
    backdrop-filter: blur(10px) saturate(150%);
    -webkit-backdrop-filter: blur(10px) saturate(150%);
    box-shadow:
        0 0 20px rgba(37, 99, 235, 0.15),
        0 0 45px rgba(96, 165, 250, 0.05);
    transition:
        transform var(--sg-transition),
        box-shadow var(--sg-transition) !important;
    position: relative;
    overflow: hidden;
}

/* Glow */
.space-offers-archive-item.space-dark-style .space-offers-archive-item-ins::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: var(--sg-radius);
    background:
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.20), transparent 60%),
        radial-gradient(circle at 75% 75%, rgba(96, 165, 250, 0.15), transparent 70%);
    opacity: 0.6;
    z-index: 0;
    transition: opacity var(--sg-transition), transform var(--sg-transition);
}

.space-offers-archive-item.space-dark-style .space-offers-archive-item-ins:hover::before {
    opacity: 0.85;
    transform: scale(1.03);
}

.space-offers-archive-item.space-dark-style .space-offers-archive-item-ins > * {
    position: relative;
    z-index: 1;
}

.space-offers-archive-item.space-dark-style .space-offers-archive-item-ins:hover {
    transform: translateY(-2px);
}
