.procurements {
    padding: 7.2rem 0 9.6rem;
}

.procurements__inner {
    max-width: 140rem;
    margin: 0 auto;
}

.procurements__title {
    color: #2f58ce;
    font-size: 4rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: center;
    margin: 0 0 5.6rem;
}

.procurements__list {
    display: grid;
    gap: 2.4rem;
}

.procurements__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.4rem;
    min-height: 9.6rem;
    padding: 2.8rem 3.2rem;
    border-radius: 8px;
    background: #f3f3f3;
    color: #2f58ce;
    text-decoration: none !important;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.procurements__item:hover {
    background: #e7ebf7;
    color: #2447a8;
    transform: translateY(-1px);
}

.procurements__item-title {
    color: inherit;
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.4;
}

.procurements__item-arrow {
    display: block;
    flex: 0 0 auto;
    width: 2.4rem;
    height: 2.4rem;
    background-color: currentColor;
    opacity: .7;
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M9 18l6-6-6-6'/%3E%3C/svg%3E") center / contain no-repeat;
    transition: transform .2s ease, opacity .2s ease;
}

.procurements__item:hover .procurements__item-arrow {
    opacity: 1;
    transform: translateX(.4rem);
}

@media (max-width: 991px) {
    .procurements {
        padding: 5.6rem 0 7.2rem;
    }

    .procurements__title {
        font-size: 3.2rem;
        margin-bottom: 4rem;
    }

    .procurements__item {
        min-height: 8.8rem;
        padding: 2.4rem;
    }
}

@media (max-width: 575px) {
    .procurements {
        padding: 4rem 0 5.6rem;
    }

    .procurements__title {
        font-size: 2.8rem;
        margin-bottom: 3.2rem;
    }

    .procurements__list {
        gap: 1.6rem;
    }

    .procurements__item {
        align-items: flex-start;
        min-height: 8rem;
        padding: 2rem;
    }

    .procurements__item-title {
        font-size: 1.7rem;
    }

    .procurements__item-arrow {
        width: 2rem;
        height: 2rem;
        margin-top: .2rem;
    }
}
