/**
 * Therapist Styles
 */

/* Therapist Grid */
.pxl-therapist-grid {
    margin-bottom: 50px;
}

.pxl-therapist-grid-item {
    margin-bottom: 30px;
}

.pxl-therapist-grid-item .pxl-item-inner {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
}

.pxl-therapist-grid-item .pxl-item-inner:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pxl-therapist-grid-item .pxl-item-image {
    position: relative;
    overflow: hidden;
}

.pxl-therapist-grid-item .pxl-item-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: all 0.5s ease;
}

.pxl-therapist-grid-item .pxl-item-inner:hover .pxl-item-image img {
    transform: scale(1.05);
}

.pxl-therapist-grid-item .pxl-no-image {
    height: 300px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pxl-therapist-grid-item .pxl-item-content {
    padding: 25px;
}

.pxl-therapist-grid-item .pxl-item-title {
    font-size: 22px;
    margin-bottom: 10px;
}

.pxl-therapist-grid-item .pxl-item-position {
    color: #777;
    font-size: 16px;
    margin-bottom: 15px;
}

.pxl-therapist-grid-item .pxl-item-excerpt {
    margin-bottom: 20px;
    color: #666;
}

/* Single Therapist */
.pxl-therapist-single {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    padding: 40px;
    margin-bottom: 50px;
}

.pxl-therapist-image img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 25px;
}

.pxl-therapist-contact-info,
.pxl-therapist-social {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.pxl-therapist-contact-info h3,
.pxl-therapist-social h3 {
    margin-bottom: 15px;
    font-size: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
}

.pxl-therapist-email,
.pxl-therapist-phone,
.pxl-therapist-website {
    margin-bottom: 10px;
}

.pxl-therapist-email .label,
.pxl-therapist-phone .label,
.pxl-therapist-website .label {
    font-weight: 600;
    display: block;
    margin-bottom: 5px;
}

.pxl-social-icons {
    display: flex;
    gap: 10px;
}

.pxl-social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #4F7661;
    color: #fff;
    transition: all 0.3s ease;
}

.pxl-social-icons a:hover {
    background-color: #333;
    transform: translateY(-3px);
}

.pxl-therapist-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.pxl-therapist-position h3 {
    font-size: 20px;
    color: #777;
    margin-bottom: 20px;
}

.pxl-therapist-content {
    margin-bottom: 30px;
}

.pxl-therapist-specialties,
.pxl-therapist-qualifications {
    margin-bottom: 30px;
}

.pxl-therapist-specialties h3,
.pxl-therapist-qualifications h3 {
    font-size: 22px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}

/* Responsive */
@media (max-width: 991px) {
    .pxl-therapist-single {
        padding: 25px;
    }
}

@media (max-width: 767px) {
    .pxl-therapist-image {
        margin-bottom: 30px;
    }
}
