/* Custom style sheets for acprop.com */

.cover-image {
    width: 100%;
    /* height: 595px; */
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 0px;
}

/* Equal-height cards inside the reviews carousel */
#reviews .tns-carousel-inner .col { display: flex; }
#reviews .card { display: flex; flex-direction: column; height: 100%; }
#reviews .card-body { display: flex; flex-direction: column; }

/* Clamp review text so all cards balance nicely */
#reviews .review-text {
    display: -webkit-box;
    -webkit-line-clamp: 7;           /* show ~4 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
    min-height: calc(1.6em * 7);     /* reserve space so heights match */
}

/* Optional: make stars a touch larger */
#reviews .star-rating .star-rating-icon { font-size: 1.05rem; }

/* Optional: soften the source badge */
#reviews .fi-google { font-size: 1rem; opacity: .85; }

/* Optional: tidy star size and Google mark (same as homepage) */
.review-card .star-rating .star-rating-icon { font-size: 1.05rem; }
.review-card .fi-google { font-size: 1rem; opacity: .85; }


/* Filled stars in brand blue */
.star-rating .fi-star-filled.active {
  color: #1974b8 !important;
}

/* Empty stars subtle gray */
.star-rating .fi-star {
  color: #ccc !important;
}