#app {
    padding: 0 1rem 1rem;
    overflow: hidden;
}

#app.cs-container {
    width: 100%;
    /* max-width: 36.5rem;*/
    margin: auto;
    display: flex;
    flex-direction: column;

    align-items: center;
    gap: clamp(1rem, 2vw, 1.4rem);
    position: relative;
}

#app.cs-container .row {
    text-align: left;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: row;
    @media screen and (max-width: 1024px) {
        flex-direction: column;
        margin: 3rem 0 0 0;
    }
    justify-content: space-between;
    gap: 1.5rem;
}

#app.cs-container h2 {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 43.75rem;
    margin: 0 0 1rem 0;
    color: var(--headerColor);
    position: relative;
}

#app.cs-container .cs-button {
   text-align: center;
    padding: 3rem 0;
    z-index: 2;
}


#app.cs-container .cs-button a {
    flex: 50%;
    font-size: 0.7rem;
    line-height: clamp(2.875rem, 5.5vw, 3.5rem);
    text-decoration: none;
    font-weight: 700;
    text-align: center;
    margin: 0;
    color: black;
    min-width: 13rem;
    padding: 0 0.5rem;
    background-color: var(--colorShadeE);
    display: inline-block;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    width: 200px;
    border: 2px solid var(--colorShadeA);
    background: primary;
    transform-style: preserve-3d;
    transition: all 175ms cubic-bezier(0, 0, 1, 1);
}
#app.cs-container .cs-button a:hover{
    background: var(--colorShadeD);
    transform: translate(0, 0.375em);
}

#app.cs-container .cs-button a:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--colorShadeC);
    border-radius: inherit;
    box-shadow: 0 0 0 2px var(--colorShadeB), 0 0.75em 0 0 var(--colorShadeA);
    transform: translate3d(0, 0.75em, -1em);
    transition: all 175ms cubic-bezier(0, 0, 1, 1);
}