.expert__card {
    overflow: hidden;
    border-radius: 24px;
    position: relative;
    width: 100%;
    height: 100%;
}

.expert__card__header {
    width: 100%;
    object-fit: cover;
    height: 320px;
    object-position: center;
}

.expert__card__main {
    display: flex;
    width: 100%;
    height: calc(100% - 296px);
    position: relative;
    margin-top: -24px;
    z-index: 1;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    border-radius: 24px;
    background: #E2B1FF;
}

.expert__card__main .card__text {
    color: var(--Brand-Blue, #3A18B5);
    font-family: "JetBrains Mono";
}


@media (max-width:768px) {
    .expert__card__main {
        padding: 24px 20px;
    }
}