/**
 * WordPress editor pages without a custom theme route template.
 *
 * @package Bringits
 */

.wp-page {
    width: 100%;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    color: #1b1f1d;
}

.wp-page__inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 56px 24px 80px;
}

.wp-page__title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 300;
    line-height: 1.15;
    color: #1f233d;
    margin: 0 0 24px;
}

.wp-page__content {
    font-size: 16px;
    line-height: 1.7;
    color: #383838;
}

.wp-page__content > *:first-child {
    margin-top: 0;
}

.wp-page__content > *:last-child {
    margin-bottom: 0;
}

.wp-page__content h2,
.wp-page__content h3,
.wp-page__content h4 {
    font-family: 'Poppins', sans-serif;
    color: #1f233d;
    line-height: 1.3;
    margin: 2em 0 0.75em;
}

.wp-page__content h2 {
    font-size: 22px;
    font-weight: 600;
}

.wp-page__content h3 {
    font-size: 18px;
    font-weight: 600;
}

.wp-page__content p,
.wp-page__content ul,
.wp-page__content ol {
    margin: 0 0 1em;
}

.wp-page__content ul,
.wp-page__content ol {
    padding-left: 1.25em;
}

.wp-page__content a {
    color: #413bb4;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.wp-page__content a:hover,
.wp-page__content a:focus {
    color: #5346ff;
}

.wp-page__content img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {
    .wp-page__inner {
        padding: 40px 20px 64px;
    }
}
