.catalog-service-card {
    display: flex;
    flex-direction: column;

    width: 100%;
    padding: 20px;

    box-sizing: border-box;

    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;

    color: inherit;
    text-decoration: none;

    transition:
        transform .2s ease,
        box-shadow .2s ease,
        border-color .2s ease;
}

.catalog-service-card:hover {
    transform: translateY(-2px);
    border-color: #d1d5db;
    box-shadow: 0 6px 18px rgba(0, 0, 0, .08);
}


/* TOP */

.catalog-service-card-top {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 20px;
    align-items: center;
    margin-bottom: 15px;
}


/* LEFT */

.catalog-service-info {
    min-width: 0;
}

.catalog-service-logo {
    width: 100%;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    overflow: hidden;
}

.catalog-service-logo img {
    display: block;
    width: 100%;
    object-fit: contain;
}

.catalog-service-title {
    margin-bottom: 5px;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.catalog-service-rating {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
    font-size: 13px;
    line-height: 1.3;
    color: #6b7280;
}

.catalog-service-rating-star {
    color: #f59e0b;
}

.catalog-service-rating-score {
    font-weight: 600;
    color: #374151;
}

.catalog-service-rating-separator {
    color: #9ca3af;
}


/* RIGHT */

.catalog-service-stats {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 20px;
    border-left: 0px solid #e5e7eb;
}

.catalog-service-stat {
    display: flex;
    flex-direction: column;
}

.catalog-service-stat-value {
    font-size: 18px;
    line-height: 1.25;
    font-weight: 700;
    color: #111827;
}

.catalog-service-stat-label {
    margin-top: 3px;
    font-size: 12px;
    line-height: 1.3;
    color: #6b7280;
}


/* BUTTON */

.catalog-service-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 10px 16px;
    box-sizing: border-box;
    background: #16a34a;
    border: 1px solid #16a34a;
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 600;
    transition:
        background .2s ease,
        border-color .2s ease;
}

.catalog-service-card:hover .catalog-service-button {
    background: #15803d;
    border-color: #15803d;
}


/* MOBILE */

@media (max-width: 700px) {

    .catalog-service-card {padding: 15px; }

    .catalog-service-card-top {
        grid-template-columns: 1fr 1fr;
        gap: 15px;  margin-bottom: 10px;
    }
    .catalog-service-logo {width: 100%;  border-radius: 6px;}
    .catalog-service-title {font-size: 16px;}
	.catalog-service-stats {padding-left: 14px;     gap: 10px;}
	.catalog-service-stat-value {font-size: 16px; line-height: 1.25;}

}