.invest-ideas__list {
    margin: 0 0 40px;
    padding: 0;
    display: flex;
    flex-direction: row;
}

.invest-ideas__item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% / 4 - 24px);
    margin-right: 32px;
    padding: 24px;
    border: 1px solid var(--border-primary);
    border-radius: 16px;
    background: var(--background-primary);
}

.invest-ideas__item:last-child {
    margin-right: 0;
}

.invest-ideas__item:hover {
    box-shadow: 0 0 4px rgba(38, 44, 64, 0.16), 0 8px 16px rgba(38, 44, 64, 0.08);
    text-decoration: none;
}

.invest-ideas__general {
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
}

.invest-ideas__general-type {
    margin: 0 0 4px;
    color: var(--text-secondary);
}

.invest-ideas__general-name {
    color: var(--text-primary);
}

.invest-ideas__details {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.invest-ideas__details-text {
    margin-right: 32px;
}

.invest-ideas__details-value {
    color: var(--border-success);
}

.h4.invest-ideas__details-value {
    margin-bottom: 0;
}

.invest-ideas__details-description {
    color: var(--text-secondary);
}

.invest-ideas__logos {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row-reverse;
    list-style: none;
}

.invest-ideas__logos-item:not(:first-child) {
    margin-right: -24px;
}

.invest-ideas__picture {
    display: block;
    width: 48px;
    height: 48px;
}

.invest-ideas__image {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    outline: 3px solid var(--background-primary);
}

.invest-ideas__logos-item:first-child .invest-ideas__image {
    position: relative;
    z-index: 2;
}

.invest-ideas__logos-item img[src=""] {
    display: none;
}

.invest-ideas__bottom {
    text-align: center;
}

@media (max-width: 1439px) {
    .invest-ideas__item {
        width: calc(100% / 3 - 22px);
    }

    .invest-ideas__item:nth-last-child(2) {
        margin-right: 0;
    }
}

@media (max-width: 1023px) {
    .invest-ideas__list {
        margin-bottom: 32px;
    }

    .invest-ideas__list .swiper-slide {
        width: 244px;
    }
}