// Block.
.lsq-header {
    background: $c-brand-1;
    padding: 20px 50px 22px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;

    @include breakpoint($bp-md) {
        flex-direction: row;
    }
}

// Elements.
.lsq-header__logo {
    display: flex;
    align-items: center;
    margin: 0 0 30px;

    @include breakpoint($bp-md) {
        margin: 0;
    }
}

.lsq-header__logo-icon {
    width: 30px;
    height: auto;
    margin: 2px 10px 0 0;
}

.lsq-header__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    @include breakpoint($bp-md) {
        text-align: left;
        display: block;
    }

    .lsq-button {
        margin: 10px 0 0;

        @include breakpoint($bp-md) {
            margin: 0 0 0 20px;
        }
    }
}
