.experts_block {
    padding: 60px 0;
}

.experts-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.expert-item {
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    overflow: hidden;
    background-color: #fff;
    box-shadow: 4px 5px 10px rgba(29, 29, 29, .15);
    text-decoration: none;
    transition: box-shadow .2s ease, transform .2s ease;
}

.expert-item:hover {
    box-shadow: 4px 8px 18px rgba(29, 29, 29, .22);
    transform: translateY(-2px);
}

.expert-item-image {
    width: 100%;
    height: 320px;
    flex-shrink: 0;
}

.expert-item-info {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-grow: 1;
}

.expert-item-name {
    color: #222;
    font-weight: 500;
}

.expert-item-position {
    color: #555;
}

.expert-item-exp {
    color: #1B5E20;
}

.expert-item-text {
    color: #555;
}

.expert-item-more {
    margin-top: auto;
    padding-top: 8px;
    color: #1B5E20;
    text-decoration: underline;
}

@media (max-width: 1199px) {
    .experts-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .experts-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .expert-item-image {
        height: 260px;
    }
}

@media (max-width: 575px) {
    .experts_block {
        padding: 32px 0;
    }

    .experts-row {
        grid-template-columns: 1fr;
    }

    .expert-item-image {
        height: 300px;
    }
}
