.survey-page-wrapper {
    display: flex;
    align-items: center;
    gap: 5rem;
    flex-direction: column;
}

.survey-icon {
    flex: 0 33%;
}

.survey-sections {
    flex-grow: 3;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.survey-sections {
    width: 100%;
}

.section {
    background: #f2f2f2;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    flex-direction: column;
}

.section-icon {
    display: flex;
    width: 4rem;
}

.section-icon svg {
    height: 3rem;
}

.section-label {
    font-weight: var(--font-weight-extra-bold);
}

.section-action {
    flex: 1 1 auto;
    text-align: right;
}

.section-links a {
    text-decoration: underline;
    display: block;
}

.section-action a.action-primary {
    margin: 0;
    font-size: 1.4rem;
    padding: .25rem .75rem;
    flex-direction: row;
}



@media only screen and (min-width: 768px) {

    .survey-page-wrapper {
        display: flex;
        flex-direction: row;
        margin-top: 7rem;
    }

    .section {
        display: flex;
        flex-direction: row;
    }

    .section-links a {
        display: inline;
    }

    .survey-page-copy {
        margin-top: 5rem;
    }
    
}