/* Scoped styles for the Services Listing Page */
.services-listing-page .service_default {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.services-listing-page .service_default::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity .3s ease;
}

.services-listing-page .service_default:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-6px);
    border-color: #ff6a00;
}

.services-listing-page .service_default:hover::before {
    opacity: 1;
}

.services-listing-page .service_img {
    display: none;
}

.services-listing-page .authors {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.services-listing-page .author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.services-listing-page .author img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.services-listing-page .author a {
    font-size: 13px;
    font-weight: 500;
    color: #ff6a00;
}

.services-listing-page .wishlist-link {
    background: none;
    border: none;
    font-size: 18px;
    color: #aaa;
}

.services-listing-page .wishlist-link .added-in-wishlist {
    color: #ff6a00;
}

.services-listing-page .service_title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 10px;
}

.services-listing-page .service_title + p,
.services-listing-page .service_title {
    color: #111;
}

.services-listing-page .ratings {
    display: flex;
    align-items: center;
    gap: 6px;
}

.services-listing-page .ratings-total {
    font-size: 13px;
    color: #666;
}

.services-listing-page .service_bottom-info {
    margin-top: auto;
    text-align: center;
}

.services-listing-page .service_bottom-info a,
.services-listing-page .service_bottom-info span {
    display: block;
    width: 100%;
    border: 1px solid #ff6a00;
    border-radius: 8px;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    color: #ff6a00;
    background: transparent;
    transition: all .3s ease;
}

.services-listing-page .service_bottom-info a:hover {
    background: #ff6a00;
    color: #fff;
}

.services-listing-page .ratings .rate {
    height: 20px !important;
    background-position: 0 -16px !important;
}

.services-listing-page .service_details {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.services-listing-page .author a.author-img {
    width: 40px !important;
    height: 40px !important;
}
