

/* Start:/local/templates/main/assets/css/prose.css?17815789627703*/
@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url('/local/templates/main/assets/fonts/nunito/Nunito-Regular.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('/local/templates/main/assets/fonts/nunito/Nunito-Medium.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('/local/templates/main/assets/fonts/nunito/Nunito-SemiBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('/local/templates/main/assets/fonts/nunito/Nunito-Bold.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito';
    font-style: normal;
    font-weight: 800;
    font-display: swap;
    src: url('/local/templates/main/assets/fonts/nunito/Nunito-ExtraBold.woff2') format('woff2');
}

@font-face {
    font-family: 'Nunito Sans';
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
    src: url('/local/templates/main/assets/fonts/nunito-sans/NunitoSans-VariableFont.woff2') format('woff2');
}

.prose {
    --prose-burg: #8b1a4a;
    --prose-burg-dark: #6a1238;
    --prose-pink: #e8185c;
    --prose-bg: #f7f3f5;
    --prose-text: #1a0a10;
    --prose-muted: #7a5060;
    --prose-border: #ead5dd;
    --prose-radius: 10px;
    --prose-radius-small: 6px;
    --prose-radius-extra-small: 4px;
    --prose-font-heading: 'Nunito', sans-serif;
    --prose-font-body: 'Nunito Sans', sans-serif;
    --prose-transition: 160ms ease;

    font-family: var(--prose-font-body);
    font-size: 1rem;
    line-height: 1.75;
    color: var(--prose-text);
    max-width: 68ch;
}

.prose,
.prose *,
.prose *::before,
.prose *::after {
    box-sizing: border-box;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4,
.prose h5,
.prose h6 {
    font-family: var(--prose-font-heading);
    font-weight: 800;
    line-height: 1.25;
    color: var(--prose-text);
    margin-top: 1.75em;
    margin-bottom: .5em;
}

.prose h1 { font-size: 2rem; }
.prose h2 {
    font-size: 1.5rem;
    padding-bottom: .35em;
    border-bottom: 2px solid var(--prose-border);
}
.prose h3 { font-size: 1.2rem; }
.prose h4 { font-size: 1rem; font-weight: 700; }
.prose h5 {
    font-size: .9rem;
    font-weight: 700;
    color: var(--prose-muted);
}
.prose h6 {
    font-size: .85rem;
    font-weight: 700;
    color: var(--prose-muted);
    text-transform: uppercase;
    letter-spacing: .07em;
}

.prose > h1:first-child,
.prose > h2:first-child,
.prose > h3:first-child {
    margin-top: 0;
}

.prose p { margin: 0 0 1em; }
.prose p:last-child { margin-bottom: 0; }

.prose strong { font-weight: 700; color: var(--prose-text); }
.prose em { font-style: italic; color: var(--prose-muted); }
.prose b { font-weight: 700; }
.prose i { font-style: italic; }

.prose a {
    color: var(--prose-burg);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: rgba(139, 26, 74, .35);
    transition:
        text-decoration-color var(--prose-transition),
        color var(--prose-transition);
}

.prose a:hover {
    color: var(--prose-burg-dark);
    text-decoration-color: var(--prose-burg);
}

.prose ul,
.prose ol {
    margin: 0 0 1em;
    padding-left: 1.5em;
}

.prose ul { list-style: none; }
.prose ul li {
    position: relative;
    padding-left: .25em;
    margin-bottom: .35em;
}

.prose ul li::before {
    content: '';
    position: absolute;
    left: -1em;
    top: .65em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--prose-burg);
}

.prose ol { list-style: decimal; }
.prose ol li { margin-bottom: .35em; padding-left: .25em; }
.prose ol li::marker {
    color: var(--prose-burg);
    font-weight: 700;
    font-family: var(--prose-font-heading);
}

.prose ul ul,
.prose ol ol,
.prose ul ol,
.prose ol ul {
    margin-top: .35em;
    margin-bottom: .35em;
}

.prose ul ul li::before {
    background: var(--prose-muted);
    width: 4px;
    height: 4px;
    top: .7em;
}

.prose blockquote {
    margin: 1.5em 0;
    padding: .75em 1.25em;
    border-left: 4px solid var(--prose-burg);
    background: rgba(139, 26, 74, .04);
    border-radius: 0 var(--prose-radius-small) var(--prose-radius-small) 0;
    color: var(--prose-muted);
    font-style: italic;
}

.prose blockquote p { margin: 0; }
.prose blockquote cite {
    display: block;
    margin-top: .5em;
    font-size: .82rem;
    font-style: normal;
    font-weight: 600;
    color: var(--prose-burg);
}

.prose code {
    background: rgba(139, 26, 74, .07);
    color: var(--prose-burg-dark);
    padding: .1em .4em;
    border-radius: var(--prose-radius-extra-small);
    font-size: .88em;
    font-family: 'SFMono-Regular', Consolas, 'Liberation Mono', Menlo, monospace;
    border: 1px solid rgba(139, 26, 74, .14);
}

.prose pre {
    background: #1a0a10;
    color: #f8d7da;
    padding: 1.1em 1.25em;
    border-radius: var(--prose-radius-small);
    overflow-x: auto;
    margin: 1.25em 0;
    font-size: .875em;
    line-height: 1.65;
}

.prose pre code {
    background: none;
    color: inherit;
    padding: 0;
    border: none;
    font-size: 1em;
}

.prose hr {
    border: none;
    border-top: 1px solid var(--prose-border);
    margin: 2em 0;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.25em 0;
    font-size: .9rem;
}

.prose thead tr {
    background: rgba(139, 26, 74, .06);
    border-bottom: 2px solid var(--prose-border);
}

.prose th {
    font-family: var(--prose-font-heading);
    font-weight: 700;
    font-size: .8rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: var(--prose-burg);
    padding: .6em .85em;
    text-align: left;
}

.prose td {
    padding: .55em .85em;
    border-bottom: 1px solid var(--prose-border);
    color: var(--prose-text);
    vertical-align: top;
}

.prose tbody tr:last-child td { border-bottom: none; }
.prose tbody tr:hover td { background: rgba(139, 26, 74, .02); }

.prose img {
    max-width: 100%;
    height: auto;
    border-radius: var(--prose-radius);
    display: block;
    margin: 1.25em 0;
}

.prose figure { margin: 1.5em 0; }
.prose figcaption {
    font-size: .78rem;
    color: var(--prose-muted);
    text-align: center;
    margin-top: .5em;
}

.prose mark {
    background: rgba(232, 24, 92, .14);
    color: var(--prose-burg-dark);
    padding: .05em .25em;
    border-radius: 2px;
}

.prose kbd {
    background: var(--prose-bg);
    border: 1px solid var(--prose-border);
    border-bottom-width: 2px;
    border-radius: var(--prose-radius-extra-small);
    padding: .1em .4em;
    font-size: .82em;
    font-family: inherit;
    color: var(--prose-text);
}

.prose abbr[title] {
    text-decoration: underline dotted;
    cursor: help;
    color: var(--prose-muted);
}

.prose details {
    border: 1px solid var(--prose-border);
    border-radius: var(--prose-radius-small);
    padding: .65em 1em;
    margin: 1em 0;
}

.prose summary {
    font-family: var(--prose-font-heading);
    font-weight: 700;
    font-size: .9rem;
    color: var(--prose-burg);
    cursor: pointer;
    user-select: none;
    list-style: none;
    display: flex;
    align-items: center;
    gap: .5rem;
}

.prose summary::before {
    content: '▶';
    font-size: .65rem;
    transition: transform var(--prose-transition);
    color: var(--prose-muted);
    flex-shrink: 0;
}

.prose details[open] summary::before { transform: rotate(90deg); }
.prose details[open] summary { margin-bottom: .5em; }

/* End */


/* Start:/local/components/main/agreement.document/templates/.default/style.css?17896592952164*/
.agreement-document-page {
    /*padding: 38px 0 64px;*/
}

.agreement-document-page__container {
    display: grid;
    gap: 24px;
}

.agreement-document-page__intro,
.agreement-document-page__document {
    width: 100%;
}

.agreement-document-page__intro {
    padding: 28px 32px;
    border: 1px solid #ead5dd;
    border-radius: 18px;
    background: linear-gradient(135deg, #fff 0%, #fbf5f7 100%);
}

.agreement-document-page__eyebrow {
    margin-bottom: 8px;
    color: #8b1a4a;
    font-family: 'Nunito', sans-serif;
    font-size: .8rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.agreement-document-page__title {
    margin: 0;
    color: #1a0a10;
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
}

.agreement-document-page__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px 18px;
    margin-top: 18px;
    color: #7a5060;
    font-size: .95rem;
}

.agreement-document-page__pdf {
    text-decoration: none;
}

.agreement-document-page__document {
    padding: 32px;
    border: 1px solid #ead5dd;
    border-radius: 18px;
    background: #fff;
}

.agreement-document-page__prose {
    max-width: none;
}

.agreement-document-page__prose table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    white-space: normal;
}

.agreement-document-page__prose h1:first-of-type {
    margin-top: 0;
}

.agreement-document-page__empty h2 {
    margin: 0 0 8px;
    font-family: 'Nunito', sans-serif;
    font-size: 1.4rem;
}

.agreement-document-page__empty p {
    margin: 0 0 18px;
    color: #7a5060;
}

@media (max-width: 767px) {
    .agreement-document-page {
        padding: 22px 0 40px;
    }

    .agreement-document-page__container {
        gap: 16px;
    }

    .agreement-document-page__intro,
    .agreement-document-page__document {
        padding: 20px 18px;
        border-radius: 14px;
    }

    .agreement-document-page__meta {
        align-items: stretch;
        flex-direction: column;
    }

    .agreement-document-page__pdf {
        width: fit-content;
    }
}

/* End */
/* /local/templates/main/assets/css/prose.css?17815789627703 */
/* /local/components/main/agreement.document/templates/.default/style.css?17896592952164 */
