/* :root {
    --border-radius: 18px;
    --cb-content-max: 72ch;
    --cb-section-gap: clamp(1.5rem, 3vw, 2.5rem);
    --cb-flow-space: clamp(1rem, 1.6vw, 1.4rem);
    --cb-border-color: rgba(15, 23, 42, 0.12);
    --cb-surface-muted: rgba(15, 23, 42, 0.04);
    --cb-shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.08);
}

html {
    color-scheme: light;
}

body {
    font-family: var(--body-font, "Barlow", sans-serif);
    color: var(--dark-text-color, #1f2937);
    background-color: #fff;
}

body :where(h1, h2, h3, h4, h5, h6) {
    margin: 0 0 0.85em;
    color: inherit;
    font-family: var(--heading-font, var(--body-font, sans-serif));
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-wrap: balance;
}

body :where(h1) {
    font-size: clamp(2.75rem, 6vw, 3rem);
}

body :where(h2) {
    font-size: clamp(2.1rem, 4vw, 2.5rem);
}

body :where(h3) {
    font-size: clamp(1.6rem, 3vw, 1.9rem);
}

body :where(h4) {
    font-size: clamp(1.25rem, 2vw, 1.6rem);
}

body :where(p, ul, ol, blockquote) {
    max-width: var(--cb-content-max);
}

body :where(ul, ol) {
    margin: 0 0 1.25rem;
    padding-inline-start: 1.25rem;
}

body :where(li + li) {
    margin-top: 0.35rem;
}

body :where(a) {
    color: var(--primary-color, currentColor);
    text-underline-offset: 0.18em;
    transition: color 0.2s ease;
}

body :where(a:hover) {
    color: var(--secondary-color, currentColor);
}

body :where(.content-block) {
    overflow: clip;
}

body :where(.content-block .container, .content-block .container-small, .content-block .container-large, .content-block .container-edge) {
    padding-inline: clamp(1rem, 2vw, 1.5rem);
}

body :where(.section-title-wrap, .title-wrap, .tab-headings-wrap, .posts-heading) {
    display: grid;
    gap: 0.9rem;
    margin-bottom: var(--cb-section-gap);
}

body :where(.block-subtitle, .blog-block-subtitle) {
    display: inline-block;
    margin: 0;
    color: var(--secondary-color, currentColor);
    font-family: var(--subheading-font, var(--body-font, sans-serif));
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

body :where(.block-title) {
    margin: 0;
    max-width: 16ch;
}

body :where(.block-paragraphs) {
    max-width: var(--cb-content-max);
}

body :where(.block-paragraphs > :last-child) {
    margin-bottom: 0;
}

body :where(.buttons-wrapper) {
    display: flex;
    flex-wrap: wrap;
    gap: 0.875rem;
    align-items: center;
    margin-top: clamp(1rem, 2.5vw, 1.5rem);
}

body :where(.buttons-wrapper .btn) {
    margin: 0;
}

body :where(.wp-post-image, .content-block img) {
    max-width: 100%;
    height: auto;
}

body :where(.content-block iframe) {
    max-width: 100%;
}

body :where(.posts-filters, .category-filters, .advanced-filters) {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 0 0 1.5rem;
}

body :where(.posts-filters button, .category-filters li, .filter-refresh) {
    cursor: pointer;
}

body :where(.posts-filters button, .category-filters li span, .category-dropdown, .advanced-filters select, .advanced-filters input, .filter-refresh) {
    border: 1px solid var(--cb-border-color);
    border-radius: 999px;
    background: #fff;
    box-shadow: none;
}

body :where(.Code-section) {
    display: grid;
    gap: var(--cb-flow-space);
    max-width: var(--cb-content-max);
    margin-inline: auto;
    text-align: left;
}

body :where(.Code-section pre, .Code-section code) {
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    border-radius: var(--border-radius);
}

body :where(.Code-section pre) {
    padding: 1rem 1.25rem;
    overflow: auto;
    background: #111827;
    color: #f8fafc;
    box-shadow: var(--cb-shadow-soft);
}

@media screen and (max-width: 782px) {
    body :where(.section-title-wrap, .title-wrap, .tab-headings-wrap, .posts-heading) {
        gap: 0.75rem;
    }
} */
