.oc-featured-location-spotlight {
    position: relative;
}

.oc-featured-location-spotlight .container-xxl {
    max-width: 1440px;
}

.oc-featured-location-spotlight .oc-fls-card {
    border-radius: 2rem;
    overflow: hidden;
    background-color: var(--bs-light, #f8f9fa);
}

.oc-featured-location-spotlight .oc-fls-content {
    padding: 2rem 1.25rem;
}

.oc-featured-location-spotlight .oc-fls-media {
    padding: 1.25rem;
}

.oc-featured-location-spotlight .oc-fls-eyebrow-wrap {
    margin-bottom: 1rem;
}

.oc-featured-location-spotlight .oc-fls-eyebrow {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    line-height: 1.2;
    background: rgba(0, 0, 0, 0.06);
}

.oc-featured-location-spotlight .oc-fls-heading {
    margin: 0 0 1.5rem 0;
    line-height: 1.1;
}

.oc-featured-location-spotlight .oc-fls-description {
    font-size: 1.125rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.oc-featured-location-spotlight .oc-fls-location {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
    font-size: 1rem;
    line-height: 1.5;
}

.oc-featured-location-spotlight .oc-fls-location-icon {
    flex: 0 0 auto;
    line-height: 1;
}

.oc-featured-location-spotlight .oc-fls-location-link {
    color: inherit;
    text-decoration: none;
}

.oc-featured-location-spotlight .oc-fls-location-link:hover,
.oc-featured-location-spotlight .oc-fls-location-link:focus {
    text-decoration: underline;
}

.oc-featured-location-spotlight .oc-fls-actions {
    margin-top: 0;
}

.oc-featured-location-spotlight .oc-fls-btn {
    padding: 0.875rem 1.5rem;
}

.oc-featured-location-spotlight .oc-fls-image-link {
    display: block;
    text-decoration: none;
}

.oc-featured-location-spotlight .oc-fls-image {
    width: 100%;
    height: 100%;
    min-height: 260px;
    max-height: 420px;
    object-fit: cover;
    border-radius: 1.25rem;
    box-shadow: 0 0.75rem 2rem rgba(0, 0, 0, 0.12);
}

.oc-featured-location-spotlight .fade-in-up {
    opacity: 0;
    animation: ocFlsFadeInUp 520ms ease forwards;
}

.oc-featured-location-spotlight .fade-in-up-delay-1 {
    animation-delay: 0.05s;
}

.oc-featured-location-spotlight .fade-in-up-delay-2 {
    animation-delay: 0.16s;
}

@keyframes ocFlsFadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 0.5rem, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@media (min-width: 768px) {
    .oc-featured-location-spotlight .oc-fls-content {
        padding: 3rem;
    }

    .oc-featured-location-spotlight .oc-fls-media {
        padding: 2rem;
    }
}

@media (min-width: 992px) {
    .oc-featured-location-spotlight .oc-fls-content {
        padding: 3.5rem 3.5rem 3.5rem 3.5rem;
    }

    .oc-featured-location-spotlight .oc-fls-media {
        padding: 2.5rem 3rem 2.5rem 1.5rem;
    }

    .oc-featured-location-spotlight .oc-fls-image {
        min-height: 420px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .oc-featured-location-spotlight .fade-in-up {
        opacity: 1;
        animation: none;
    }
}