/* =========================================================
   DEFAULT PAGE
========================================================= */

.default-page {
    padding: 80px 20px;
    background: #fff;
}

.default-page__container {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
}


/* =========================================================
   PAGE HEADER
========================================================= */

.default-page__header {
    margin-bottom: 48px;
    text-align: center;
}

.default-page__title {
    margin: 0;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    color: #201e1d;
}


/* =========================================================
   CONTENT
========================================================= */

.default-page__content {
    color: #474238;
    font-size: 16px;
    line-height: 1.8;
}

.default-page__content > *:first-child {
    margin-top: 0;
}

.default-page__content > *:last-child {
    margin-bottom: 0;
}


/* =========================================================
   HEADINGS
========================================================= */

.default-page__content h2 {
    margin-top: 56px;
    margin-bottom: 20px;

    font-size: 28px;
    line-height: 1.35;
    font-weight: 700;

    color: #201e1d;
}

.default-page__content h3 {
    margin-top: 40px;
    margin-bottom: 16px;

    font-size: 22px;
    line-height: 1.4;
    font-weight: 700;

    color: #201e1d;
}

.default-page__content h4 {
    margin-top: 32px;
    margin-bottom: 14px;

    font-size: 18px;
    line-height: 1.4;
    font-weight: 700;

    color: #201e1d;
}


/* =========================================================
   PARAGRAPH
========================================================= */

.default-page__content p {
    margin-bottom: 20px;
}

.default-page__content strong {
    color: #201e1d;
    font-weight: 700;
}


/* =========================================================
   LINKS
========================================================= */

.default-page__content a {
    color: #c00000;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity .2s ease;
}

.default-page__content a:hover {
    opacity: .7;
}


/* =========================================================
   LIST
========================================================= */

.default-page__content ul,
.default-page__content ol {
    margin: 0 0 24px 24px;
}

.default-page__content li {
    margin-bottom: 8px;
}


/* =========================================================
   TABLE
========================================================= */

.default-page__content figure.wp-block-table {
    margin: 0 0 40px;
    width: 100%;
    overflow-x: auto;
}

.default-page__content table {
    width: 100%;
    margin: 0;

    border-collapse: separate;
    border-spacing: 0;

    border: 1px solid #e8e1dc;
    border-radius: 16px;

    overflow: hidden;

    background: #fff;

    font-size: 15px;
    line-height: 1.7;
}


/* TABLE CELL */

.default-page__content table th,
.default-page__content table td {
    padding: 18px 20px;

    border: 0;
    border-bottom: 1px solid #eee8e3;

    vertical-align: top;

    text-align: left;
}


/* REMOVE LAST BORDER */

.default-page__content table tr:last-child td {
    border-bottom: 0;
}


/* HEADER */

.default-page__content table tr:first-child td,
.default-page__content table thead th {
    text-transform: uppercase;

    color: #201e1d;

    font-weight: 700;
}


/* FIRST COLUMN */

.default-page__content table td:first-child {
    width: 28%;

    background: #faf7f5;

    color: #201e1d;

    font-weight: 600;
}


/* HEADER FIRST CELL */

.default-page__content table tr:first-child td:first-child {
    background: #fdf3f5;
    text-transform: uppercase;
}


/* HOVER */

.default-page__content table tbody tr:hover td {
    background: #fffaf9;
}

.default-page__content table tbody tr:hover td:first-child {
    background: #fdf3f5;
}


/* =========================================================
   BLOCKQUOTE
========================================================= */

.default-page__content blockquote {
    margin: 32px 0;
    padding: 20px 24px;

    border-left: 4px solid #c00000;

    background: #fdf3f5;

    border-radius: 0 12px 12px 0;

    color: #474238;
}


/* =========================================================
   CODE
========================================================= */

.default-page__content code {
    padding: 3px 7px;

    border-radius: 6px;

    background: #f5f1ee;

    font-size: .9em;
}

.default-page__content pre {
    padding: 20px;

    overflow-x: auto;

    border-radius: 12px;

    background: #2e2b25;
    color: #fff;
}


/* =========================================================
   HORIZONTAL RULE
========================================================= */

.default-page__content hr {
    margin: 48px 0;

    border: 0;
    border-top: 1px solid #e8e1dc;
}


/* =========================================================
   BUTTON
========================================================= */

.default-page__content .button {
    text-decoration: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 849px) {

    .default-page {
        padding: 56px 20px;
    }

    .default-page__title {
        font-size: 32px;
    }

    .default-page__header {
        margin-bottom: 36px;
    }

    .default-page__content {
        font-size: 15px;
    }

    .default-page__content h2 {
        font-size: 24px;
        margin-top: 40px;
    }

    .default-page__content h3 {
        font-size: 20px;
        margin-top: 32px;
    }

    .default-page__content table {
        min-width: 700px;
    }

    .default-page__content figure.wp-block-table {
        margin-left: 0;
        margin-right: 0;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 549px) {

    .default-page {
        padding: 40px 16px;
    }

    .default-page__title {
        font-size: 28px;
    }

    .default-page__header {
        margin-bottom: 28px;
    }

}