.what-get-block-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.what-get-block-item {
    border: 1px solid var(--background-thirdly);
    background-color: var(--background-secondary);
    border-radius: 30px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 150px;
}
.what-get-block-item__top {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
    gap: 10px;
}
.what-get-block-item__icon {
    width: 50px;
    height: 50px;
    object-fit: contain;
}
.what-get-block-item__number {
    color: var(--main-text-thirdly);
    font-size: var(--font-size-16-20);
    line-height: 100%;
    font-weight: 500;
}
.what-get-block-item__text {
    color: var(--head-primary);
    font-size: var(--font-size-16-20);
    line-height: 100%;
    font-weight: 500;
}
@media (max-width: 1024px) {
    .what-get-block-list {
        gap: 10px;
    }
}
@media (max-width: 768px) {
    .what-get-block-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 500px) {
    .what-get-block-list {
        grid-template-columns: 1fr;
    }
}