.lws-ew-rsg {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.lws-ew-rsg__stop {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.lws-ew-rsg__heading {
    margin: 0;
    font-style: normal;
}

.lws-ew-rsg__heading em {
    font-style: italic;
}

.lws-ew-rsg__card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

.lws-ew-rsg__card-header {
    background: #D08560;
    color: #fff;
    padding: 16px 28px;
    font-size: 1.1em;
}

.lws-ew-rsg__card-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.lws-ew-rsg__card-title {
    margin: 0;
    font-size: 1.4em;
}

.lws-ew-rsg__card-text {
    line-height: 1.6;
}

.lws-ew-rsg__card-text > *:first-child { margin-top: 0; }
.lws-ew-rsg__card-text > *:last-child { margin-bottom: 0; }

.lws-ew-rsg__gallery {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(var(--lws-rsg-cols, 3), 1fr);
}

.lws-ew-rsg__gallery-item {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 8px;
}

.lws-ew-rsg__gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Carousel on tablet/mobile: horizontal scroll with snap */
@media (max-width: 1024px) {
    .lws-ew-rsg__gallery--carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 12px;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        scrollbar-width: thin;
    }

    .lws-ew-rsg__gallery--carousel .lws-ew-rsg__gallery-item {
        flex: 0 0 calc(
            (100% - (var(--lws-rsg-tablet, 2) - 1) * 12px) / var(--lws-rsg-tablet, 2)
        );
        scroll-snap-align: start;
        aspect-ratio: auto;
        max-height: 250px;
    }

    .lws-ew-rsg__gallery--carousel .lws-ew-rsg__gallery-item img {
        height: 250px;
        max-height: 250px;
        object-fit: cover;
    }
}

@media (max-width: 640px) {
    .lws-ew-rsg__gallery--carousel .lws-ew-rsg__gallery-item {
        flex: 0 0 calc(
            (100% - (var(--lws-rsg-mobile, 1) - 1) * 12px) / var(--lws-rsg-mobile, 1)
        );
    }
}

.lws-ew-rsg__tip {
    background: #FBF5EA;
    border-left: 4px solid #D08560;
    padding: 16px 20px;
    border-radius: 0 8px 8px 0;
    font-size: 0.95em;
}

.lws-ew-rsg__tip > *:first-child { margin-top: 0; }
.lws-ew-rsg__tip > *:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
    .lws-ew-rsg__gallery:not(.lws-ew-rsg__gallery--carousel) {
        grid-template-columns: 1fr 1fr;
    }
    .lws-ew-rsg__card-body { padding: 20px; }
    .lws-ew-rsg__card-header { padding: 12px 20px; }
}
