/**
 * Default Page Template - Gutenberg Block Styles
 * Typography and spacing for block editor content (Privacy, Terms, etc.)
 */

/* ── Entry content: block spacing & typography ── */
.page-content .entry-content {
    font-size: 1.0625rem;
    line-height: 1.75;
}

.page-content .entry-content > * + * {
    margin-top: 1.5em;
}

.page-content .entry-content > *:first-child {
    margin-top: 0;
}

/* Headings */
.page-content .entry-content h1,
.page-content .entry-content h2,
.page-content .entry-content h3,
.page-content .entry-content h4,
.page-content .entry-content h5,
.page-content .entry-content h6 {
    color: #0A0D23;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 2em;
    margin-bottom: 0.75em;
}

.page-content .entry-content h1 { font-size: 2rem; }
.page-content .entry-content h2 { font-size: 1.5rem; }
.page-content .entry-content h3 { font-size: 1.25rem; }

/* Paragraphs & lists */
.page-content .entry-content p {
    color: #374151;
}

/* Lists – scoped to page template only (overrides global reset) */
.page-content .entry-content ul {
    list-style: disc;
    list-style-position: outside;
    padding-left: 1.5em;
    margin: 1em 0;
}

.page-content .entry-content ol {
    list-style: decimal;
    list-style-position: outside;
    padding-left: 1.5em;
    margin: 1em 0;
}

.page-content .entry-content li {
    margin-bottom: 0.5em;
    display: list-item;
}

.page-content .entry-content li:last-child {
    margin-bottom: 0;
}

/* Links */
.page-content .entry-content a {
    color: #4BC0F2;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-content .entry-content a:hover {
    color: #2E9CCA;
}

/* Block alignment (alignwide, alignfull) */
.page-content .entry-content .alignwide {
    max-width: 75rem;
    margin-left: auto;
    margin-right: auto;
}

.page-content .entry-content .alignfull {
    max-width: none;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Block spacing */
.page-content .entry-content .wp-block-group,
.page-content .entry-content .wp-block-columns {
    margin-top: 1.5em;
    margin-bottom: 1.5em;
}

.page-content .entry-content .wp-block-image,
.page-content .entry-content .wp-block-embed {
    margin-top: 2em;
    margin-bottom: 2em;
}

/* Block quote */
.page-content .entry-content blockquote {
    border-left: 4px solid #4BC0F2;
    padding-left: 1em;
    margin: 1.5em 0;
    color: #6B7280;
    font-style: italic;
}

/* Tables */
.page-content .entry-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5em 0;
}

.page-content .entry-content th,
.page-content .entry-content td {
    border: 1px solid #E5E7EB;
    padding: 0.75em 1em;
    text-align: left;
}

.page-content .entry-content th {
    background: #F9FAFB;
    font-weight: 600;
    color: #0A0D23;
}
