.article-support-cta {
    background: none !important;
    border: var(--article-support-cta-border);
	box-shadow: 0px 0px 2px var(--yellow-highlite);
    padding-bottom: 32.5px;
}

.support-article-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.support-article-title {
    margin-left: -20px;
    margin-right: -20px;
    margin-top: -20px;
    width: 100%;
    border-radius: var(--box-border-radius) var(--box-border-radius) 0 0;
    background: var(--yellow-highlite);
    display: flex;
    align-items: center;
    padding: 15px 20px 15px 20px;
    font: 19px/1.5 "SF bold";
    color: #0d0c22;
}

.support-article-text {
    font: 19px/1.7 "NY regular" !important;
}

.support-article-button {
    width: fit-content;
    background: var(--yellow-highlite);
    padding: 15px 65px;
    border-radius: 50px;
    font: 19px/1 "SF bold";
    color: #0d0c22;
    box-shadow: 0px 1px 1px var(--outline);
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
}

body.hasHover .support-article-button:hover {
    transform: scale(1.02);
}