.doctor-author-box {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    border: 1px solid #ddd;
    padding: 20px;
    margin-top: 40px;
    background-color: #f9f9f9;
    border-radius: 8px;
    gap: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}






.doctor-author-box img.doctor-photo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 100%;
    flex-shrink: 0;
}

.doctor-author-box .doctor-info {
    flex: 1;
    min-width: 200px;
}

.doctor-author-box .doctor-info h4 {
    margin-top: 0;
    margin-bottom: 8px;
    font-size: 20px;
    color: #333;
}

.doctor-author-box .doctor-info p {
    margin: 5px 0;
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}



@media (max-width: 600px) {
    .doctor-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
		flex-direction: column;
    }
	
	.doctor-author-box {
    display: flex;
    border: 1px solid #ddd;
    padding: 15px;
    margin-top: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
    flex-direction: column;
}
	
    .doctor-author-box img.doctor-photo {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .doctor-author-box .doctor-info {
        text-align: center;
    }
}

