.opportunities__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.opportunities-item {
    padding: 4rem;
    background: #fff;
    gap: 2rem;
}

.opportunities-item__dash {
    width: 5.6rem;
    height: 0.2rem;
    background: var(--color-red);
    margin-bottom: -1rem;
}

.opportunities-item__title {
    font-weight: 600;
    font-size: 2rem;
}

.opportunities-item__items {
    gap: 1.2rem;
    margin-bottom: 1.8rem;
}

.opportunities-item__item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.4rem;
}

.opportunities-item__item-icon {
    flex: 0 0 auto;
    width: 1.6rem;
}

.opportunities-item__btn {
    padding: 0;
    min-height: unset;
    margin-top: 4rem;
}



@media screen and (max-width: 1024.9px) {
    .opportunities__list {
        grid-template-columns: repeat(1, 1fr);
    }
}

@media screen and (max-width: 575.9px) {
    .opportunities-item {
        padding-inline: 2rem;
    }
}