.expert-section {
    display: flex;
    gap: 24px;
    align-items: center;
}

.expert-section img {
    min-width: 280px;
    height: 330px;
    object-fit: cover;
    border-radius: 8px;
}

.expert-section-info {
    display: flex;
    flex-direction: column;
}

.expert-title {
    margin: 8px 0px 0px;
}

.short-desc {
    margin: 16px 0px 0px;
}

.full-desc {
    margin: 24px 0px 0px;
}

@media (max-width: 767px) {
    .expert-section {
        flex-direction: column;
    }
    .expert-section img {
        min-width: 100%;
        height: 100%;
        max-height: 500px;
    }
}