.services-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}

/* ΚΑΡΤΑ */
.services-card-horizontal {
    display: flex;
    width: 45%;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.services-card-horizontal:hover {
    border-color: #2563eb;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}

/* LOGO 25% */
.services-logo-horizontal {
    flex: 0 0 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    background: #fafafa;
    border-right: 1px solid #f0f0f0;
}

.services-logo-horizontal img {
    width: 80px;
    height: 80px;
    object-fit: contain; /* Skr style */
    border-radius: 50%;
    background: #fff;
}

/* CONTENT 75% */
.services-content-horizontal {
    flex: 0 0 75%;
    padding: 15px;
    display: flex;
    flex-direction: column;
}

/* ΤΙΤΛΟΣ */
.services-title {
    font-size: 21px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0px;
}

.services-title:hover {
    color: #2563eb;
}

/* ΣΤΟΙΧΕΙΑ */
.services-activity, .services-category {
    font-size: 13px;
    font-weight: 700;   /* BOLD */
    color: #111827;
    margin-bottom: 2px;
}

.services-address,
.services-specialty,
.services-phone {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 4px;
}

/* FEATURED badge */
.services-card-horizontal.featured::before {
    content: "SPONSORED";
    position: absolute;
    top: 10px;
    right: 10px;
    background: #6bb766; /* skr-like green */
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
}

.services-activity,
.services-specialty,
.services-address,
.services-phone {
    font-size: 13px;
    margin-bottom: 4px;
    color: #4b5563;
}

/* Τηλέφωνο απλό κείμενο, χωρίς link */
.services-phone {
    color: #555;
}

/* MOBILE */
@media (max-width: 768px) {

    .services-card-horizontal {
        width: 100%;
    }

    .services-logo-horizontal {
        flex: 0 0 25%;
    }

    .services-content-horizontal {
        flex: 0 0 75%;
        padding: 12px;
    }

    .services-title {
        font-size: 16px;
    }

    .services-logo-horizontal img {
        width: 65px;
        height: 65px;
    }
}

/* Φίλτρο κατηγοριών */
.services-category-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.services-category-item {
    padding: 5px 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    text-decoration: none;
    color: #333;
    font-size: 13px;
    transition: all 0.2s;
}
.services-category-item.active,
.services-category-item:hover {
    background: #0073aa;
    color: #fff;
    border-color: #0073aa;
}

.services-category,
.services-activity {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 4px;
}

.services-category:hover,
.services-activity:hover {
    text-decoration: underline;
}

.services-card-horizontal.featured {
    border: 2px solid #6bb766;
}

/* Base transition */
.services-card-horizontal {
    transition: 
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease;
    border-radius: 12px;
}

/* Premium Hover */
.services-card-horizontal:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* Featured subtle glow */
.services-card-horizontal.featured:hover {
    box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}

.services-card-link {
    text-decoration: none;
    color: inherit;
}

.services-card-horizontal {
    background: #ffffff;
    overflow: hidden;
}

.single-service {
    max-width: 1100px;
    margin: 40px auto;
    padding: 0 20px 60px;
}


.services-pagination {
    text-align: center;
    margin: 30px 0;
}

.services-pagination ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-pagination li {
    margin: 0 5px;
}

.services-pagination a, 
.services-pagination span {
    display: inline-block;
    padding: 8px 12px;
    background: #f1f1f1;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
    min-width: 36px;
    text-align: center;
}

.services-pagination a:hover {
    background: #0073aa;
    color: #fff;
}

.services-pagination .current {
    background: #0073aa;
    color: #fff;
}
