.help__link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1rem;
    border-radius: 1rem;
    background-color: #f5f5f5;
    color: #27282a;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    -webkit-transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

@media (min-width: 1280px) {
    .help__link {
        padding: 1.5625rem 1.5rem;
        border-radius: 1.375rem;
        font-size: 1rem;
        line-height: 1.625rem;
    }
}
@media screen and (hover: hover) {
    .help__link:hover {
        color: #00991f;
    }
}
.help__link::after {
    content: "";
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 1.75rem;
    height: 1.75rem;
    background: url("data:image/svg+xml,%3Csvg width='28' height='28' viewBox='0 0 28 28' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.10051 14H23.8995M16.4749 21.4246L23.8995 14L16.4749 6.57537' stroke='%23939393' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

.help__intro + .help__link,
.help .help-article__content + .help__link {
    margin-top: 1.625rem;
}

@media (min-width: 1280px) {
    .help__intro + .help__link,
    .help .help-article__content + .help__link {
        margin-top: 2rem;
    }
}
.help__link + .help__link {
    margin-top: 0.5rem;
}

@media (min-width: 1280px) {
    .help__link + .help__link {
        margin-top: 1rem;
    }
}
