.c-promotional-banner {
    display: flex;
    justify-content: center;
    padding: 2rem;
    flex-direction: column;
    align-items: center;
}

.c-promotional-banner__text-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.c-promotional-banner__pretitle {
    font-size: 20px;
    text-align: center;
}

.c-promotional-banner__title {
    font-size: 40px;
    font-weight: 500;
    margin: .4em 0;
    line-height: 40px;
    text-align: center;
}

.c-promotional-banner__subtitle {
    font-size: 14px;
    text-align: center;
}

.c-link-button {
    border-width: 2px;
    border-style: solid;
    border-radius: 6px;
    padding: .4em 0.8em;
    font-size: 16px;
    font-weight: 500;
    display: flex;
    justify-content: center;
}

.c-promotional-link-btns {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 500px;
}

.c-promotional-link-btns>* {
    display: flex;
}

@media (max-width: 679px) {

    .c-promotional-link-btns {
        flex-direction: column;
        width: 100%;
    }

    .c-link-button {
        width: 100%;

    }
}