.program-advisors-grid-section {
    padding-block: 46px;
    position: relative;
    overflow: hidden;
    gap: 48px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background: var(--green-900);
}

@media (min-width: 767.8px) {
    .program-advisors-grid-section {
        padding-block: 100px;
    }
}

.program-advisors-grid-section .container {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.program-advisors-grid-section__text-wrapper {
    width: 840px;
    max-width: 100%;
    margin-inline: auto;
}

.program-advisors-grid-section__text-wrapper h2 br {
    display: none;
    @media screen and (min-width: 767.8px) {
        display: block;
    }
}

.program-advisors-grid-section .values-row {
    flex-wrap: wrap;
}

.program-advisors-grid-section .value-wrapper {
    width: 100%;
    flex-basis: 100%;
    justify-content: center;
    display: flex;
    flex-wrap: wrap;
    margin-block: 16px;
    padding-inline: 24px;
}

@media (min-width: 1280px) {
    .program-advisors-grid-section .value-wrapper {
        width: 33.33%;
        flex-basis: 33.33%;
        padding-inline: 0;
    }
}

.program-advisors-grid-section .value-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    row-gap: 24px;
}

@media (min-width: 767.8px) {
    .program-advisors-grid-section .value-inner {
        justify-content: flex-start;
    }
}

.program-advisors-grid-section .value-inner .icon {
    width: 200px;
    flex-basis: 200px;
    height: 120px;
    border-radius: 200px;
    background: #ffeae0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.program-advisors-grid-section .value-inner .text {
    width: 100%;
    flex-basis: 100%;
    text-align: center;
}

@media (min-width: 767.8px) {
    .program-advisors-grid-section .value-inner .text {
        width: calc(100% - 200px);
        flex: calc(100% - 200px);
        text-align: left;
    }
}

.program-advisors-grid-section .value-inner .text h3 {
    /*max-width: 100%;
    */
    width: 100%;
    text-align: center;
    font-size: 24px;
}

.program-advisors-grid-section .value-inner .text h3 br {
    display: none;
    @media (min-width: 767.8px) {
        display: block;
    }
}

@media (min-width: 767.8px) {
    .program-advisors-grid-section .value-inner .text h3 {
        margin-left: -30px;
        text-align: left;
        width: 270px;
    }
}

@media (min-width: 991.8px) {
    .program-advisors-grid-section .value-inner .text h3 {
        font-size: 26px;
    }
}

.program-advisors-grid-section-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    /*grid-template-columns: repeat(6, 1fr);*/
    /*grid-column-gap: 40px;*/
    /*grid-row-gap: 40px;*/
    @media screen and (min-width: 575.8px) {
        gap: 40px;
    }
}
.advisor-column{
    width: calc(50% - 20px);
    flex-basis: calc(50% - 20px);
    @media screen and (min-width: 575.8px) {
        width: fit-content;
        flex-basis: fit-content;
    }
    @media screen and (min-width: 767px) {
        width: calc(100%/3 - 40px);
        flex-basis: calc(100%/3 - 40px);
    }
    @media screen and (min-width: 1140px) {
        width: calc(100%/6 - 40px);
        flex-basis: calc(100%/6 - 40px);
    }
}

.program-advisors-grid-section-row .advisor-column-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    width: 155px;
    max-width: 100%;
    margin-inline: auto;
}

.program-advisors-grid-section-row .advisor-column-inner .image {
    width: 120px;
    flex-basis: 120px;
    height: 120px;
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    background-color: #FFF;
    margin-bottom: 8px;
}

.advisor-column-inner .image img {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, 50%);
    object-fit: cover;
}

.advisor-column-inner .name {
    font-size: 20px;
    line-height: 110%;
    font-weight: 700;
    text-align: center;
    width: 100%;
    margin-bottom: 8px;
}

.advisor-column-inner .position {
    font-size: 14px;
    line-height: 120%;
    font-weight: 500;
    width: 100%;
    text-align: center;
}