.gk-team-experts {
    padding: 20px 0;
}

.gk-team-experts__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.gk-team-experts__title {
    text-align: center;
    margin: 0 0 32px;
    color: #0077a8;
}

.gk-team-experts__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.gk-team-experts__card {
    display: flex;
    flex-direction: column;
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.gk-team-experts__card-top {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    padding: 16px 16px 0;
    min-height: 130px;
}

.gk-team-experts__image-wrap {
    width: 110px;
    height: 120px;
    flex: 0 0 110px;
    border-radius: 12px 12px 0 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gk-team-experts__image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gk-team-experts__image-placeholder {
    font-size: 12px;
    opacity: 0.8;
}

.gk-team-experts__name,
.gk-team-experts__role {
    margin: 0;
}

.gk-team-experts__content {
    flex: 1;
    padding: 0 8px 16px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.gk-team-experts__name {
    color: #ffffff;
    font-size: 22px;
    line-height: 1.1;
    font-weight: 700;
}

.gk-team-experts__role {
    margin-top: 8px;
    font-size: 16px;
    line-height: 1.2;
}

.gk-team-experts__card-bottom {
    background: #f5f7f9;
    padding: 18px 22px;
    flex: 1;
}

.gk-team-experts__bullets {
    margin: 0;
    padding-left: 22px;
}

.gk-team-experts__bullets li {
    margin-bottom: 10px;
}

.gk-team-experts__bullets li:last-child {
    margin-bottom: 0;
}

.gk-team-experts__card-actions {
    display: grid;
    gap: 10px;
    padding: 12px;
    border-top: 1px solid #e9ecef;
}

.gk-team-experts__bullet-item {
    list-style: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.gk-team-experts__bullet-item .components-base-control {
    flex: 1;
    margin-bottom: 0;
}

.gk-team-experts__order-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}


@media (max-width: 767px) {
    .gk-team-experts {
        padding-left: 16px;
        padding-right: 16px;
    }

    .gk-team-experts__grid {
        gap: 20px;
    }
}
@media (min-width: 768px) {
    .gk-team-experts__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .gk-team-experts__grid {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .gk-team-experts__card {
        flex: 0 0 calc((100% - 48px) / 3);
        max-width: calc((100% - 48px) / 3);
    }
}
