label {
    display: block;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-darker-gray);
}

label + label {
    margin-top: 2rem;
}

label input,
label textarea {
    margin-top: 0.7rem;
}

input,
textarea {
    width: 100%;
    height: 100%;
    padding: 0 1.5rem;
    font-size: 1.6rem;
    color: var(--color-dark-gray);
    appearance: none;
    background-color: var(--color-white);
    border: 1px solid var(--color-light-gray);
    border-radius: 6px;
    outline: none;
}

input:focus,
textarea:focus {
    border-color: var(--color-mid-gray);
}

textarea {
    height: 100%;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    resize: vertical;
}

.form-wrapper {
    position: relative;
	height: 100%;
}

.form-button {
    position: absolute;
    top: 3px;
    right: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100% - 6px);
    padding: 0 15px;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-white);
    cursor: pointer;
    background-color: var(--ghost-accent-color);
    border: 0;
    border-radius: 6px;
    outline: none;
}

.form-button.with-icon {
    width: 40px;
    padding: 0;
    border-radius: 0 6px 6px 0;
}

.form-wrapper .loader,
.form-wrapper .success {
    display: none;
}

.form-wrapper .loader .icon {
    width: 28px;
    height: 28px;
}

.form-wrapper.loading .default,
.form-wrapper.success .default,
.form-wrapper.success .loader {
    display: none;
}

.form-wrapper.loading .loader {
    display: block;
}

.form-wrapper.success .success {
    display: flex;
    align-items: center;
}

.contact-form {
    margin-top: 3rem;
}

.contact-form .button {
    margin-top: 1.5rem;
}

.single-header {
    margin-bottom: 4.5rem;
    text-align: center;
}

.page-template .single-header {
    margin-top: var(--gap);
}

.single-meta {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-secondary-text);
    text-transform: uppercase;
}

.single-meta-item + .single-meta-item::before {
    padding: 0 0.3rem;
    font-family: serif;
    content: "\02022";
}

.single-title {
    margin-bottom: 0;
    font-size: 4rem;
    line-height: 1.2;
    letter-spacing: -0.1rem;
    word-break: break-word;
}

.has-serif-title .single-title {
    font-family: inherit;
}

.single-excerpt {
    margin-top: 2rem;
    font-size: 1.8rem;
    word-break: break-word;
}

.has-serif-body .single-excerpt {
    font-family: inherit;
}

.single-media {
    margin-top: 4.5rem;
    margin-bottom: 0;
}

.single-media img {
    width: 100%;
}

.single-cta {
    padding: 3rem;
    margin-top: 4rem !important;
    text-align: center;
    border-top: 5px solid var(--ghost-accent-color);
    border-bottom: 1px solid var(--color-light-gray);
}

.single-cta-title {
    margin: 0 0 3rem !important;
}

.single-cta-button {
    margin-bottom: 1rem;
    font-weight: 800 !important;
}

.single-cta-footer {
    font-size: 1.4rem;
    font-weight: 400 !important;
    letter-spacing: -0.02rem;
}

.single-footer {
    display: flex;
    align-items: center;
    margin-top: 4.5rem;
}

.single-footer-left,
.single-footer-right {
    display: flex;
    flex: 2;
}

.single-footer-right {
    justify-content: flex-end;
}

.single-footer-middle {
    display: flex;
    flex-direction: column;
}

.single-footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.single-footer-title {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.single-footer-top + .single-footer-bottom {
    margin-top: 2rem;
}

@media (max-width: 767px) {
    .single-header {
        margin-bottom: 3rem;
    }

    .single-title {
        font-size: 2.6rem;
    }

    .single-excerpt {
        font-size: 1.7rem;
    }

    .single-media {
        margin-top: 3rem;
    }
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 36px;
    padding: 0 15px;
    font-family: inherit;
    font-size: 11px;
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    background-color: var(--ghost-accent-color);
    border: 1px solid var(--color-light-gray);
    border-radius: 3px;
    outline: none;
}

.button:hover {
    border-color: var(--color-mid-gray);
    opacity: 1;
}

.button-secondary {
    color: var(--color-darker-gray);
}

.button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    padding: 0;
    color: var(--color-darker-gray);
    cursor: pointer;
    background-color: transparent;
    border: 0;
    outline: none;
}

.button-icon:hover .icon {
    opacity: 0.8;
}

.button-text {
    padding: 0;
    line-height: inherit;
    color: var(--color-darker-gray);
    cursor: pointer;
    background-color: transparent;
    border: 0;
    outline: none;
}

