.financing > section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch; /* всички деца ще се изравнят по височина */
    gap: var(--gap); /* разстояние между елементите, ако искаш */
}

.financing > section > div {
    flex: 1 1 30%; /* ширина 3 в ред (примерно) */
    display: flex;
    align-items: center;   /* вертикално центриране */
    justify-content: center; /* хоризонтално центриране */
    
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    background-color: var(--white);
    box-sizing: border-box;

    padding: 20px;
}

.financing img {
    max-height: 120px;
}

.financing h3 {
    text-align: center;
}

.financing a {
    color: var(--red);
    text-decoration: none;
}

.financing a:hover {
    color: var(--d-blue);
}

.finitem {
    display: flex;
    gap: var(--gap);
}

.finitem > div:first-child {
    width: 120px;
    flex-shrink: 0;
}

.finitem img {
    width: 100%;
}