/* ============================================
   STEPS GRID — Clean 2-col grid + mobile swiper
============================================ */

.zsw-wrapper { position: relative; width: 100%; }

/* ---- Desktop / Tablet grid ---- */
.zsw-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

/* ---- Card base ---- */
.zsw-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 32px 28px;
    box-sizing: border-box;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}

.zsw-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

/* ---- Icon ---- */
.zsw-icon {
    display: inline-block;
    line-height: 1;
    color: #C9A961;
    margin-bottom: 14px;
}
.zsw-icon svg { width: 32px; height: 32px; fill: currentColor; }

/* ---- Number ---- */
.zsw-number {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #C9A961;
    margin-bottom: 10px;
    line-height: 1;
}

/* ---- Title ---- */
.zsw-title {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.3;
    margin: 0 0 12px;
    color: #111;
}

/* ---- Description ---- */
.zsw-desc {
    font-size: 15px;
    line-height: 1.65;
    color: #555;
    margin: 0;
}

/* ============================================
   MOBILE SWIPER — HIDDEN ON DESKTOP BY DEFAULT
============================================ */
.zsw-swiper { display: none; padding: 10px 0 40px; }

.zsw-swiper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
    padding: 8px 4px;
    box-sizing: border-box;
}

.zsw-swiper .zsw-card {
    width: 100%;
    box-shadow: 0 4px 18px rgba(0,0,0,0.04);
}

/* ---- Pagination dots ---- */
.zsw-pagination {
    position: relative !important;
    margin-top: 18px;
    text-align: center;
}
.zsw-pagination .swiper-pagination-bullet {
    width: 8px; height: 8px;
    background: #C9A961; opacity: 0.35;
    transition: all .25s;
}
.zsw-pagination .swiper-pagination-bullet-active {
    opacity: 1; width: 24px; border-radius: 4px;
}

/* ---- Arrows ---- */
.zsw-prev, .zsw-next { color: #C9A961; }
.zsw-prev::after, .zsw-next::after { font-size: 22px; font-weight: 700; }

/* ============================================
   FALLBACK: If carousel disabled, single column on mobile
============================================ */
@media (max-width: 600px) {
    .zsw-wrapper:not(.zsw-has-carousel) .zsw-grid {
        grid-template-columns: 1fr !important;
    }
}
