.sisl-bannerpanel {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.sisl-banner {
    position: relative;
    flex: 1 1 0;
    min-width: 260px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    display: block;
}

.sisl-banner-overlay {
    position: absolute;
    inset: 0;
}

.sisl-banner-text {
    position: relative;
    z-index: 1;
    padding: 24px;
    color: #fff;
}

.sisl-banner-text h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 400;
    line-height:30px;
    text-transform: none;
}

.sisl-banner-reveal {
    max-height: 0;
    opacity: 0.5;
    overflow: hidden;
    transform: translateY(200px);
    transition: opacity 0.6s ease, transform 0.6s ease, max-height 0.6s ease;
}

.sisl-banner:hover .sisl-banner-reveal {
    opacity: 1;
    max-height: 300px;
    margin-top: 8px;
    transform: translateY(0);
}

.sisl-banner-desc {
    margin: 0 0 12px;
}

@media (max-width: 639px) {
    .sisl-banner {
        flex: 1 1 100%;
    }
}
