.about-card-image-wrapper {
    height: 300px;
    /* Фиксированная высота для изображения */
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-md);
}

.about-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 767px) {
    .card-image-wrapper {
        height: 250px;
    }
}

.about-card-with-image {
    padding: 0;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.rounded-circle-image{
    border-radius: 50%;
    height: 100px;
    width: 100px;
}

@media (max-width: 767px) {
    .about-card-with-image {
        height: 250px;
    }
}