/* Therapist Bio Block */
.therapist-bio-block {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 20px; /* Space between image and text */
    border: 1px dashed #ccc;
    padding: 20px;
    margin-bottom: 20px;
}

/* Image container */
.therapist-bio-block .therapist-image {
    flex: 0 0 250px; /* Fixed width for the image */
    overflow: hidden;
    text-align: center;
    border-radius: 8px;
}

.therapist-bio-block .therapist-image img {
    width: 100%; /* Ensure image fits the container */
    height: auto; /* Maintain aspect ratio */
    object-fit: cover; /* Crop if necessary */
    border-radius: 8px;
}

/* Text content container */
.therapist-bio-block .therapist-content {
    flex: 1; /* Take the remaining space */
}

/* Bio container */
.bio-container {
    position: relative;
}

.bio-container p {
    margin-bottom: 10px;
}

.bio-container .read-more {
    display: inline-block;
    padding: 5px 10px;
    background-color: #007cba;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    text-align: center;
}