.knowledge-base {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 64px 0;
}

.knowledge-base-item, .investor-type-item {
    flex: 1 0 calc(33% - 30px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 156px;
    border: 2px solid var(--green);
    border-radius: 24px;
    padding: 32px;
}

.page-description-item-title {
    white-space: nowrap;
}

.education-icon, .jargon-icon, .faq-icon {
    display: inline-block;
    width: 64px;
    height: 64px;
}

.education-icon {
    background: url("../../assets/icons/education.svg") center / contain no-repeat;
}

.jargon-icon {
    background: url("../../assets/icons/jargon.svg") center / contain no-repeat;
}

.faq-icon {
    background: url("../../assets/icons/faq.svg") center / contain no-repeat;
}

.knowledge-base-item .primary-button, .investor-type-item .primary-button {
    min-width: 100%;
    font-weight: 400;
    font-size: 15px;
    padding: 10px 8px;
}

@media screen and (max-width: 1280px) {
    .page-description-item-title {
        font-size: 20px;
    }
}

@media screen and (max-width: 960px) {
    .knowledge-base {
        gap: 16px;
    }
}

@media screen and (max-width: 768px) {
    .knowledge-base-item, .investor-type-item {
        gap: 64px;
    }
}

@media screen and (max-width: 590px) {
    .knowledge-base-item, .investor-type-item {
        flex: 1 0 100%;
    }
}
