.blog-content {
    font-size: clamp(15px, calc(14px + 0.25vw), 18px);
    color: #333E6E;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
}

.blog-content > p {
    margin-bottom: 14px;
}

.blog-content p {
    font-size: clamp(15px, calc(14px + 0.25vw), 18px);
    font-weight: 500;
    color: #333E6E;
    line-height: 1.2;
    margin-bottom: 22px;
}

.blog-content h2 + p {
    /* font-size: clamp(18px, calc(17px + 0.35vw), 22px); */
    /* line-height: 1.4;
    font-weight: 500;
    color: #333E6E;
    margin-top: 10px;
    margin-bottom: 18px; */
}

/* Headings */
.blog-content h2 {
    position: relative;
    margin-top: 24px;
    margin-bottom: 10px;
    padding-bottom: 8px;
    font-size: clamp(24px, calc(20px + 0.8vw), 36px);
    font-weight: 600;
    line-height: 1.25;
    color: #000;
}

.blog-content h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 120px;
    height: 2px;
    background: #FE5C36;
}

.blog-content h3 {
    margin-top: 18px;
    margin-bottom: 6px;
    font-size: clamp(21px, calc(18px + 0.6vw), 30px);
    font-weight: 600;
    line-height: 1.3;
    color: #000;
}

.blog-content h4 {
    margin-top: 14px;
    margin-bottom: 7px;
    font-size: clamp(18px, calc(16px + 0.45vw), 24px);
    font-weight: 600;
    line-height: 1.35;
    color: #000;
}

/* Inline Elements */
.blog-content strong {
    font-weight: 600;
    color: #0f172a;
}

.blog-content em {
    font-style: italic;
}

.blog-content a {
    color: #FE5C36;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: color .3s ease;
}

.blog-content a:hover {
    color: #c2410c;
}

/* Lists */
.blog-content ul,
.blog-content ol {
    margin: 5px 0 8px;
    padding-left: 28px;
    font-weight: inherit;
}

.blog-content ul {
    list-style: disc;
}

.blog-content ol {
    list-style: decimal;

}

.blog-content li {
    font-size: clamp(15px, calc(14px + 0.25vw), 18px);
    color: #333E6E;
    line-height: 1.8;
    font-weight: inherit;
}

.blog-content li::marker{
    font-weight: 600 !important;
}

.blog-content li + li {
    margin-top: 5px;
}

/* Blockquote */
.blog-content blockquote {
    margin: 40px 0;
    padding: 24px 28px;
    border-left: 5px solid #FE5C36;
    background: #f8fafc;
    font-size: clamp(17px, calc(16px + 0.3vw), 20px);
    font-style: italic;
    color: #333E6E;
    line-height: 1.8;
    border-radius: 8px;
}

.blog-content blockquote p {
    margin-bottom: 0;
    font-size: inherit;
}

/* Images */
.blog-content img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.blog-content figure {
    margin: 40px 0;
    max-width: 100%;
}

.blog-content figure img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.blog-content figcaption {
    margin-top: 12px;
    text-align: center;
    font-size: clamp(12px, calc(11px + 0.2vw), 14px);
    color: #64748b;
}

/* WP Caption */
.blog-content .wp-caption {
    margin: 40px 0;
    max-width: 100%;
}

.blog-content .wp-caption img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.blog-content .wp-caption-text {
    margin-top: 12px;
    text-align: center;
    font-size: clamp(12px, calc(11px + 0.2vw), 14px);
    color: #64748b;
}

/* Tables */
.blog-content table {
    width: 100%;
    margin: 40px 0;
    border-collapse: collapse;
    font-size: clamp(14px, calc(13px + 0.25vw), 16px);
}

.blog-content th {
    padding: 16px;
    border: 1px solid #FE5C36;
    background: #f1f5f9;
    font-weight: 600;
    color: #010101;
    text-align: left;
}

.blog-content td {
    padding: 16px;
    border: 1px solid #FE5C36;
    color: #333E6E;
    vertical-align: top;
    font-size: clamp(14px, calc(13px + 0.25vw), 16px);
}