.lc-ac__wrap {
    position: relative;
    padding: 10px 0px;
}
.lc-ac .owl-stage-outer { overflow: hidden; }

.lc-card {
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid #979797;
    box-shadow: 1px 3px 5px 1px rgb(24 24 24 / 27%);
    margin: 10px;
}

.lc-card__image {
    display: block;
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}
.lc-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.lc-card__title {
    font-size: 18px;
    line-height: 1.3;
    margin: 12px 12px 6px;
    height: 120px;
}
.lc-card__title a {
    color: #222;
    text-decoration: none;
}
.lc-card__title a:hover { text-decoration: underline; }

.lc-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: baseline;
    margin: 0 12px 12px;
}
.lc-card__price {
    font-weight: 600;
    color: #222;
    white-space: nowrap;
}
.lc-card__superficie {
    color: #555;
    white-space: nowrap;
}

.lc-card__cta {
    margin: auto 12px 12px;
    display: flex;
    justify-content: center;
}
.lc-card__btn {
    display: inline-block;
    background: #8FBE41;
    color: #fff;
    text-decoration: none;
    padding: 10px 14px;
    border-radius: 4px;
    font-weight: 600;
    line-height: 1;
}
.lc-card__btn:hover { filter: brightness(0.95); }

.lc-ac__nav {
    color: #FFF;
    font-size: 25px;
    margin: 5px;
    padding: 0;
    background: #8FBE41;
    display: inline-block;
    cursor: pointer;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    line-height: 60px;
    position: absolute;
    top: 50%;
    margin-top: -30px;
    opacity: 1;
    text-align: center;
    border: none;
}
.lc-ac__prev { left: -70px; }
.lc-ac__next { right: -70px; }

@media (max-width: 767px) {
    .lc-ac__wrap { padding: 10px 40px; }
    .lc-ac__nav {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 18px;
    }
    .lc-ac__prev { left: 0; }
    .lc-ac__next { right: 0; }
    .lc-card__image { height: 220px; }
}

.lc-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: space-evenly;
    margin: 0 12px 20px;
}
.lc-meta__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    line-height: 1;
}
.lc-meta__superf i {
    font-size: 14px;
    color: #8fbe41;
}
.lc-meta__price-text {
    font-weight: 600;
    color: #222;
}
.lc-meta__divider {
    width: 1px;
    height: 14px;
    background: #cfcfcf;
    display: inline-block;
    align-self: center;
}
@media (max-width: 767px) {
    .lc-meta {
        gap: 8px;
        margin: 0 10px 10px;
    }
    .lc-meta__divider { height: 12px; }
}
