.sm-alt-location-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    min-height: 300px;
}

@media (min-width: 1024px) {
    .sm-alt-location-thumb {
        min-height: 454px;
    }
}

.sm-alt-location-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.sm-alt-location-thumb:hover img {
    transform: scale(1.05);
}

.sm-alt-location-title {
    position: absolute;
    bottom: 16px;
    left: 16px;
    max-width: calc(100% - 32px);
    background-color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    color: #000;
}