/** newsletter form ***/

.x-component-nlf {
    background-color: #e0d3bd;
    border-radius: 14px;

    display: flex;
    align-items: center;

    padding: var(--content-padding);
}

.x-component-nlf-title {
    color: black;

    font-weight: 900;
    font-size: 1.3em;

    line-height: 1.45;

    margin-right: 1em;

    flex: 1;
}

.x-component-nlf-title span {
    color: var(--color-primary);
}

.x-component-nlf-form {
    display: flex;
    align-items: center;

    flex: 2;
}

.x-component-nlf-field {
    flex: 1;
}
.x-component-nlf-field input {
    display: block;
    width: 100%;
    background-color: white;
    border-radius: 10px;
    line-height: 1.15;
    height: 40px;
    padding: 0 1em;
}

.x-component-nlf-field input::placeholder {
    color: #909090;
}

.x-component-nlf-submit {
    width: 150px;
    margin-left: 1em;
}

.x-component-nlf-submit button {
    width: 100%;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1em;
    height: 40px;
    background-color: var(--color-primary);
    color: white;
    transition: 199ms ease-out;
}

.x-component-nlf-submit button:hover {
    background-color: var(--color-primary-light);
}


/** article share panel **/
.x-component-share {
    display: flex;
    flex-direction: column;

    min-width: 200px;

    color: #262626;
}

.x-component-share-option {
    height: 2.5em;
    padding-left: .7em;
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
    transition: background-color 199ms ease-out;
    backface-visibility: hidden;
}

.x-component-share-option[data-icon] {
    background: no-repeat 0.7em center;
    background-size: auto 70%;
}

.x-component-share-option:hover {
    background-color: #eee;
}

.x-component-share-option[data-style="link"] {
    text-decoration: underline;
    color: var(--color-primary);
}

.x-component-share-option + .x-component-share-option {
    margin-top: .3em;
}


@media (max-width: 992px) {
    .x-component-nlf {
        flex-direction: column;
        align-items: initial;
    }

    .x-component-nlf-title {
        text-align: center;
        margin-bottom: .7em;
    }

    .x-component-nlf-submit {
        width: 120px;
    }

    .x-component-nlf-field input {
        font-size: 17px;
    }
}