:root {
    --primary: #007ba7;
    --primaryLight: #ffba43;
    --secondary: #7ec4cf;
    --secondaryLight: #ffba43;
    --headerColor: #1a1a1a;
    --bodyTextColor: #4e4b66;
    --bodyTextColorWhite: #fafbfc;
    --bodyTextLightColor: #dbdbdb;
    /* 13px - 16px */
    --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
    /* 31px - 49px */
    --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
    --bodyFontSize: 1rem;
    /* 60px - 100px top and bottom */
    --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

.editor-visual-editor__post-title-wrapper, 
.wp-block-post-content {
    font-family: "DM Sans", sans-serif;
    font-optical-sizing: auto;
    color: #333;
    padding: 0 1.3rem;
}

.wp-block-post-content img {
    border-radius: 4px;
    border: 1px solid #efefef;
    margin: 1.3rem 0;
}

.wp-block-post-content .featured-image {
    border: none;
}

.wp-block-post-content h1, .wp-block-post-content h2, .wp-block-post-content h3, .wp-block-post-content h4, .wp-block-post-content h5, .wp-block-post-content h6 {
    font-weight: 700;
    color: #363636;
    margin: 1.5rem 0 0 0; /* Spacing above headers */
}

.wp-block-post-content h1 {
    font-size: var(--headerFontSize);
    font-weight: 900;
    line-height: 1.2em;
    max-width: 43.75rem;
}

.wp-block-post-content h2 {
    font-size: 2rem;
    margin-top: 2rem;
}

.wp-block-post-content h3 {
    font-size: 1.75rem;
    color: var(--primary);
}

.wp-block-post-content h4 {
    font-size: 1.5rem;
}

.wp-block-post-content h5 {
    font-size: 1.25rem;
}

.wp-block-post-content h6 {
    font-size: 1rem;
}

.wp-block-post-content p {
    font-size: 16px;
    line-height: 1.75;
    margin: 0 0 1.5rem 0; /* Adds space below paragraphs */
}

.wp-block-post-content ul, .wp-block-post-content ol {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.wp-block-post-content ul {
    list-style-type: disc; /* Display bullets as discs */
}

.wp-block-post-content ol {
    list-style-type: decimal;
}

.wp-block-post-content li {
    margin: 0.5rem 0; /* Space between list items */
}

.wp-block-post-content .featured-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin-top: 2rem;
    border-radius: 8px;
}

.wp-block-post-content a {
    color: var(--primary);
    text-decoration: underline;
}

@media (min-width: 720px) {
    .wp-block-post-content p {
        font-size: 20px;
        margin: 0 0 1.5rem 0; /* Adds space below paragraphs */
    }

    .wp-block-post-content li {
        font-size: 20px;
    }
}