/* Home service cards: image first, then category, title, price and action. */
.home-service-card {
    position: relative;
    height: auto;
    padding-bottom: 0;
    overflow: visible;
}
.home-service-card > a.home-service-card__link {
    position: relative;
    display: flex !important;
    flex-direction: column;
    height: auto;
    min-height: 100%;
    padding: 0 !important;
    overflow: hidden;
    color: #173b59;
    background: #fff;
    border: 1px solid #d8e3ea;
    border-radius: 26px !important;
    box-shadow: 0 10px 24px rgba(22, 72, 105, .09);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.home-service-card > a.home-service-card__link:hover {
    color: #173b59;
    border-color: #8bc8d0;
    box-shadow: 0 14px 30px rgba(22, 72, 105, .16);
    transform: translateY(-3px);
}
.home-service-card__media {
    position: relative;
    flex: 0 0 auto;
    height: 0;
    padding-bottom: 100%;
    overflow: hidden;
    background: #f2f6f8;
}
.home-service-card__image {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center center !important;
}
.home-service-card__media > span {
    z-index: 2;
}
.home-service-card__review-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    left: auto !important;
    margin-top: 0 !important;
}
.home-service-card__badges {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 3;
    overflow: hidden;
}
.home-service-card__badges b {
    padding: 6px 3px !important;
    font-size: .75rem;
    text-align: center;
}
.home-service-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    padding: 17px 16px 18px;
    background: #fff;
}
.home-service-card__category {
    min-height: 20px;
    overflow: hidden;
    color: #0b9fa3;
    font-size: .82rem;
    line-height: 1.35;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.home-service-card__title {
    min-height: 31px;
    margin-top: 7px;
    overflow: hidden;
    color: #173b59;
    font-size: 1.16rem;
    font-weight: 700;
    line-height: 1.4;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.home-service-card__description {
    display: -webkit-box;
    max-height: 38px;
    margin-top: 3px;
    overflow: hidden;
    color: #7b8b98;
    font-size: .82rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.home-service-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 16px;
}
.home-service-card__price {
    color: #f05a16 !important;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 1.14rem;
    line-height: 1.2;
}
.home-service-card__view {
    color: #0065a8;
    font-size: .98rem;
    font-weight: 700;
    line-height: 1.2;
}
.home-service-card__link:hover .home-service-card__view {
    color: #0b9fa3;
}
@media (max-width: 575.98px) {
    .home-service-card > a.home-service-card__link {
        border-radius: 20px !important;
    }
    .home-service-card__body {
        padding: 12px 11px 14px;
    }
    .home-service-card__category {
        font-size: .72rem;
    }
    .home-service-card__title {
        min-height: 25px;
        margin-top: 4px;
        font-size: .94rem;
    }
    .home-service-card__description {
        font-size: .72rem;
    }
    .home-service-card__footer {
        margin-top: 11px;
    }
    .home-service-card__price,
    .home-service-card__view {
        font-size: .88rem;
    }
}