.z-sb-container {
    position: relative;
    width: 100%;
    max-width: 1400px;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    --text-main: #1a1a1a;
    font-family: 'Outfit', sans-serif;
}

.z-sb-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1),
        filter 0.6s ease;
    filter: brightness(0.95);
}

.z-sb-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.3) 70%,
        rgba(0, 0, 0, 0.6) 100%
    );
    opacity: 0.7;
    transition: opacity 0.6s ease;
}

.z-sb-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 50px 50px;
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    pointer-events: none;
    text-align: left;
}

.z-sb-tag {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
    font-weight: 400;
}

.z-sb-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: white;
}

.z-sb-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
    max-width: 600px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.2);
}

/* Hover Effects */
.z-sb-container:hover .z-sb-image {
    transform: scale(1.08);
    filter: brightness(1.05);
}

.z-sb-container:hover .z-sb-overlay {
    opacity: 0.85;
}

.z-sb-container:hover .z-sb-content {
    transform: translateY(0);
    opacity: 1;
}

/* Always visible minimal info */
.z-sb-minimal-info {
    position: absolute;
    bottom: 30px;
    left: 30px;
    color: white;
    transition: opacity 0.4s ease;
    text-align: left;
}

.z-sb-minimal-tag {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 5px;
}

.z-sb-minimal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 400;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    color: white;
}

.z-sb-container:hover .z-sb-minimal-info {
    opacity: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .z-sb-container {
        height: 500px;
    }

    .z-sb-title {
        font-size: 2.8rem;
    }

    .z-sb-content {
        padding: 40px 35px 35px;
    }
}

@media (max-width: 768px) {
    .z-sb-container {
        height: 400px;
    }

    .z-sb-title {
        font-size: 2rem;
    }

    .z-sb-subtitle {
        font-size: 0.95rem;
    }

    .z-sb-content {
        padding: 30px 25px 25px;
    }

    .z-sb-minimal-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 480px) {
    .z-sb-container {
        height: 350px;
    }

    .z-sb-title {
        font-size: 1.6rem;
    }

    .z-sb-content {
        padding: 25px 20px 20px;
    }
}
