/* Google map conditional styles */
.new_service__single__contents__title {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--new-heading-color);
    -webkit-transition: all 0.3s;
    transition: all 0.3s;

    /* Limit to 2 lines of text */
    max-height: 2.6em; /* 2 lines * line-height */
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Number of lines to show */
    -webkit-box-orient: vertical;
}

.new_jobs__single__contents__location {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--main-color-one);

    /* Limit to 2 lines of text */
    max-height: 34px; /* 2 lines * line-height (17px) */
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2; /* Number of lines to show */
    -webkit-box-orient: vertical;
}

.new_service__single__price__title {
    font-size: 18px;
}

.new_service__single__price {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 5px;
}

.author_tag.border_top {
    margin: 0;
    padding: 5px;
}
.btn-wrapper.border_top {
    margin: 0;
    padding: 0px;
    padding-top: 5px;
    margin-top: 5px;
}

.btn-wrapper .cmn-btn {
    padding: 6px 35px;
}

.new_service__single__thumb img.no-image {
    height: 147px;
}