:root {
    --color-navy: #005F86;
    --color-slate: #54585A;
    --font-family-lora: 'Lora', serif;
}

.properties-slider-wrapper {
    margin-block: 3rem;
}

.properties-slider-wrapper h2.title {
    font-family: var(--font-family-lora);
    text-align: left;
    margin: 0 0 1.75rem;
    line-height: 1;
    font-size: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    letter-spacing: -1px;
}

.properties-slider-wrapper .splide__slide {
    border-radius: 0;
    overflow: hidden;
    border: 1px solid #DDDDDD;
    display: flex;
    flex-direction: column;
    background-color: #F4F0E8;
}

.properties-slider-wrapper .splide__slide:first-child {
    @media (max-width: 900px) {
        margin-left: 1.5rem;
    }
}

.properties-slider-wrapper .splide__track::after {
    content: "";
    width: 20%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background: linear-gradient(270deg, #FFFFFF 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
}

.properties-slider-wrapper .featured-image {
    position: relative;
    height: 250px;
}

.properties-slider-wrapper .featured-image img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.properties-slider-wrapper .featured-image span.badge {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.6rem 1.2rem;
    background-color: var(--color-navy);
    color: #fff;
    font-weight: 500;
    border-radius: 0;
    border-bottom-left-radius: 8px;
}

.properties-slider-wrapper .featured-image span.price-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
    background-color: var(--color-navy);
    color: #fff;
    font-size: 1.15rem !important;
    padding: 0.5rem 0.75rem 0.75rem;
    line-height: 1;
    font-weight: 600;
}

.properties-slider-wrapper .home-info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.properties-slider-wrapper .home-info h3 {
    font-family: var(--font-family-lora);
    font-weight: 500;
    font-size: 1.25rem;
    text-transform: unset;
    letter-spacing: -1px;
    margin: 0 0 0.5rem;
    line-height: 1;
}

.properties-slider-wrapper .home-info h3 a {
    color: var(--color-slate);
    font-size: 1.5rem;
    line-height: 1;
    text-decoration: none;
}

.properties-slider-wrapper .home-info div.city {
    margin: 0 0 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #DDDDDD;
    font-size: 0.85rem;
    color: var(--color-slate);
}

.properties-slider-wrapper .home-info a {
    line-height: 1;
    border-radius: 6px;
    font-size: 0.85rem;
    text-align: center;
}

.properties-slider-wrapper .home-info a:hover {
    filter: brightness(0.9);
}

.properties-slider-wrapper .home-info .global-btn {
    white-space: nowrap;
    margin: auto 0 0;
    display: block;
    background-color: var(--color-navy);
    color: #fff;
    padding: 1rem;
    font-weight: 600;
    border-radius: 0;
    text-decoration: none;
}

.properties-slider-wrapper .specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    margin: 0 0 1rem;
}

.properties-slider-wrapper .specs>span {
    background-color: #ffffff;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    line-height: 1;
    font-weight: 300;
    font-size: 1rem;
    color: var(--color-slate);
}

@media (max-width: 900px) {
    .properties-slider-wrapper .specs>span {
        font-size: 0.8rem;
    }
}

.properties-slider-wrapper .splide__arrow {
    background-color: #fff !important;
    opacity: 1 !important;
    color: var(--color-navy) !important;
    border-radius: 50% !important;
    height: 60px;
    width: 60px;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 10px 0px #00000033 !important;
}

.properties-slider-wrapper .splide__arrow svg {
    fill: var(--color-navy) !important;
}

.properties-slider-wrapper .splide__arrow[disabled] {
    opacity: 0 !important;
}

.properties-slider-wrapper .splide__arrow--next {
    right: 1rem;
}

.properties-slider-wrapper .splide__arrow--prev {
    left: 0;
    transform: translateX(-50%) translateY(-50%);
} 