/*
Gutenberg content styles — scoped to the post content wrapper only.
Loaded conditionally (see functions.php) only on singular posts/pages
that contain Gutenberg blocks, so it never touches Elementor-built pages.

Scope covers both wrappers used across the 4 sites:
  - .entry-content        (classic theme templates, e.g. single.php)
  - .elementor-widget-theme-post-content  (Elementor Theme Builder's
    "Post Content" widget — confirmed the one actually used on
    HALLYUFEED's single post template as of 2026-08)

Every selector below MUST stay scoped under one of the two wrappers.
Do not add bare selectors like ".wp-block-heading" or "blockquote" —
that is what caused HALLYUFEED-2026-08 (list/separator/spacer hidden,
all headings forced to 26px, blockquote stripped of border/padding).
A second copy of the same ".wp-block-heading" override also lived in
WP Admin → Appearance → Customize → Additional CSS — check there too
on other sites, it won't be visible by grepping theme files alone.
*/

.entry-content,
.elementor-widget-theme-post-content,
.entry-content p,
.elementor-widget-theme-post-content p { font-size: 18px; line-height: 1.7; margin: 0 0 20px; }

.entry-content h1.wp-block-heading,
.elementor-widget-theme-post-content h1.wp-block-heading { font-size: 36px; font-weight: 800; line-height: 1.25; margin: 40px 0 20px; }

.entry-content h2.wp-block-heading,
.elementor-widget-theme-post-content h2.wp-block-heading { font-size: 30px; font-weight: 700; line-height: 1.3; margin: 36px 0 18px; }

.entry-content h3.wp-block-heading,
.elementor-widget-theme-post-content h3.wp-block-heading { font-size: 25px; font-weight: 700; line-height: 1.35; margin: 32px 0 16px; }

.entry-content h4.wp-block-heading,
.elementor-widget-theme-post-content h4.wp-block-heading { font-size: 21px; font-weight: 600; line-height: 1.4; margin: 28px 0 14px; }

.entry-content h5.wp-block-heading,
.elementor-widget-theme-post-content h5.wp-block-heading { font-size: 18px; font-weight: 600; line-height: 1.45; margin: 24px 0 12px; text-transform: uppercase; letter-spacing: 0.02em; }

.entry-content h6.wp-block-heading,
.elementor-widget-theme-post-content h6.wp-block-heading { font-size: 16px; font-weight: 600; line-height: 1.5; margin: 24px 0 12px; text-transform: uppercase; letter-spacing: 0.04em; color: #555555; }

.entry-content .wp-block-list,
.elementor-widget-theme-post-content .wp-block-list {
    display: block;
    margin: 0 0 24px;
    padding-left: 1.5em;
}

.entry-content ul.wp-block-list,
.elementor-widget-theme-post-content ul.wp-block-list { list-style-type: disc; }

.entry-content ol.wp-block-list,
.elementor-widget-theme-post-content ol.wp-block-list { list-style-type: decimal; }

.entry-content .wp-block-list li,
.elementor-widget-theme-post-content .wp-block-list li {
    margin-bottom: 8px;
}

.entry-content .wp-block-separator,
.elementor-widget-theme-post-content .wp-block-separator {
    display: block;
    border: none;
    border-top: 1px solid #e5e5e5;
    margin: 32px 0;
}

.entry-content .wp-block-separator.is-style-wide,
.elementor-widget-theme-post-content .wp-block-separator.is-style-wide {
    border-top-width: 1px;
}

.entry-content .wp-block-separator.is-style-dots,
.elementor-widget-theme-post-content .wp-block-separator.is-style-dots {
    border: none;
    text-align: center;
    line-height: 1;
    height: auto;
}

.entry-content .wp-block-separator.is-style-dots::before,
.elementor-widget-theme-post-content .wp-block-separator.is-style-dots::before {
    content: "···";
    font-size: 24px;
    letter-spacing: 8px;
    color: #767676;
}

.entry-content .wp-block-spacer,
.elementor-widget-theme-post-content .wp-block-spacer {
    display: block;
}

.entry-content blockquote.wp-block-quote,
.elementor-widget-theme-post-content blockquote.wp-block-quote {
    margin: 24px 0;
    padding-left: 1em;
    border-left: 4px solid var(--accent, #284EC3);
    font-style: italic;
}

.entry-content blockquote.wp-block-quote cite,
.elementor-widget-theme-post-content blockquote.wp-block-quote cite {
    display: block;
    margin-top: 8px;
    font-style: normal;
    font-size: 14px;
    color: #767676;
}

.entry-content blockquote.wp-block-quote.is-style-large,
.elementor-widget-theme-post-content blockquote.wp-block-quote.is-style-large {
    padding-left: 1.5em;
    border-left-width: 6px;
    font-size: 24px;
}
@media (max-width: 781px) {
  .entry-content .alignwide,
  .elementor-widget-theme-post-content .alignwide,
  .entry-content .alignfull,
  .elementor-widget-theme-post-content .alignfull {
    margin-left: 0;
    margin-right: 0;
    width: 100% !important;
    max-width: 100%;
  }
}