/* InfoAsia Custom Styles */
.font-inter {
    font-family: 'Inter', sans-serif;
}

/* Strict Logo Constraints */
.custom-logo-link {
    display: inline-flex;
    align-items: center;
}

.custom-logo,
.custom-logo-link img,
.site-branding img,
.site-logo img {
    max-height: 46px !important;
    height: auto !important;
    width: auto !important;
    max-width: 220px !important;
    object-fit: contain !important;
    display: block !important;
}

@media (max-width: 768px) {
    .custom-logo,
    .custom-logo-link img,
    .site-branding img,
    .site-logo img {
        max-height: 38px !important;
        max-width: 170px !important;
    }
}

/* Desktop Navigation Menu */
.site-header nav ul {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header nav ul li {
    position: relative;
}

.site-header nav ul li a {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #444653;
    text-decoration: none;
    transition: all 0.2s ease;
    padding: 6px 10px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.site-header nav ul li a:hover {
    color: #00288e;
    background-color: #f6f3f2;
}

.site-header nav ul li.current-menu-item > a,
.site-header nav ul li.current_page_item > a,
.site-header nav ul li.current-menu-ancestor > a {
    color: #00288e;
    border-bottom: 2px solid #00288e;
    font-weight: 700;
}

/* Submenu / Dropdown Menu */
.site-header nav ul li ul.sub-menu,
.site-header nav ul li ul.children {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background: #ffffff;
    border: 1px solid #c4c5d5;
    border-radius: 8px;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
    padding: 8px 0;
    margin: 4px 0 0 0;
    list-style: none;
    display: none;
    flex-direction: column;
    gap: 2px;
    z-index: 999;
}

.site-header nav ul li:hover > ul.sub-menu,
.site-header nav ul li:hover > ul.children {
    display: flex;
}

.site-header nav ul li ul.sub-menu li a,
.site-header nav ul li ul.children li a {
    padding: 8px 16px;
    display: block;
    font-size: 13px;
    font-weight: 500;
    text-transform: none;
    letter-spacing: normal;
    color: #444653;
    border-bottom: none;
    border-radius: 0;
}

.site-header nav ul li ul.sub-menu li a:hover,
.site-header nav ul li ul.children li a:hover {
    background-color: #f0eded;
    color: #00288e;
}

/* Mobile Navigation */
#mobile-menu.hidden {
    display: none;
}
#mobile-menu ul {
    display: flex;
    flex-direction: column;
    gap: 6px;
    list-style: none;
    padding: 0;
    margin: 0;
}
#mobile-menu ul li a {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #444653;
    padding: 10px 12px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.2s ease;
}
#mobile-menu ul li a:hover,
#mobile-menu ul li.current-menu-item > a {
    color: #00288e;
    background-color: #f0eded;
}

/* Smooth Transitions & Hover Lift */
.transition-smooth {
    transition: all 0.25s ease-in-out;
}
.hover-lift {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.hover-lift:hover {
    transform: translateY(-3px);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #c4c5d5;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #757684;
}

/* WordPress Pagination */
.pagination-container .page-numbers,
.nav-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border-radius: 6px;
    border: 1px solid #c4c5d5;
    background-color: #ffffff;
    color: #1b1c1c;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.pagination-container .page-numbers:hover,
.nav-links .page-numbers:hover {
    border-color: #00288e;
    color: #00288e;
    background-color: #f6f3f2;
}

.pagination-container .page-numbers.current,
.nav-links .page-numbers.current {
    background-color: #00288e;
    color: #ffffff;
    border-color: #00288e;
}

/* Custom Login Form */
#loginform-custom label {
    display: block;
    text-align: left;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #444653;
    margin-bottom: 4px;
}

#loginform-custom input[type="text"],
#loginform-custom input[type="password"] {
    width: 100%;
    border: 1px solid #c4c5d5;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    background: #fbf9f8;
    margin-bottom: 14px;
    outline: none;
}

#loginform-custom input[type="text"]:focus,
#loginform-custom input[type="password"]:focus {
    border-color: #00288e;
    box-shadow: 0 0 0 1px #00288e;
}

#loginform-custom .login-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

#loginform-custom .login-remember label {
    margin: 0;
    text-transform: none;
    font-weight: 400;
    font-size: 14px;
}

#loginform-custom input[type="submit"] {
    width: 100%;
    background: #1a4b7c;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

#loginform-custom input[type="submit"]:hover {
    background: #00288e;
}

/* Dark Background Strict Contrast Overrides */
.bg-deep-navy,
section.bg-deep-navy,
footer.bg-deep-navy,
header.bg-deep-navy {
    color: #ffffff !important;
}
.bg-deep-navy h1,
.bg-deep-navy h2,
.bg-deep-navy h3,
.bg-deep-navy h4,
.bg-deep-navy h5,
.bg-deep-navy h6,
section.bg-deep-navy h1,
section.bg-deep-navy h2,
section.bg-deep-navy h3,
footer.bg-deep-navy h1,
footer.bg-deep-navy h2,
footer.bg-deep-navy h3 {
    color: #ffffff !important;
}
.bg-deep-navy p,
section.bg-deep-navy p {
    color: rgba(255, 255, 255, 0.9) !important;
}
.bg-deep-navy .text-industrial-gold,
section.bg-deep-navy .text-industrial-gold,
footer.bg-deep-navy .text-industrial-gold {
    color: #f39c12 !important;
}
.bg-deep-navy .text-primary-fixed,
section.bg-deep-navy .text-primary-fixed {
    color: #e4e2e1 !important;
}


/* ==========================================================================
   POST CONTENT & GUTENBERG BLOCKS COMPREHENSIVE TYPOGRAPHY STYLING
   ========================================================================== */

.entry-content,
.post-body,
.prose {
    color: #333333;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.8;
}

/* Headings in Post Content */
.entry-content h1,
.post-body h1 {
    color: #1a4b7c;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.entry-content h2,
.post-body h2 {
    color: #1a4b7c;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.35;
    margin-top: 2.25rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #f6f3f2;
    position: relative;
}

.entry-content h2::after,
.post-body h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 48px;
    height: 2px;
    background-color: #f39c12;
}

.entry-content h3,
.post-body h3 {
    color: #1a4b7c;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

.entry-content h4,
.post-body h4 {
    color: #1a4b7c;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.4;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.entry-content h5,
.post-body h5,
.entry-content h6,
.post-body h6 {
    color: #444653;
    font-size: 15px;
    font-weight: 600;
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Paragraphs & Text Elements */
.entry-content p,
.post-body p {
    margin-bottom: 1.25rem;
    color: #333333;
    line-height: 1.8;
}

.entry-content strong,
.post-body strong,
.entry-content b,
.post-body b {
    color: #1a4b7c;
    font-weight: 600;
}

.entry-content a:not(.wp-element-button),
.post-body a:not(.wp-element-button) {
    color: #00288e;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.entry-content a:not(.wp-element-button):hover,
.post-body a:not(.wp-element-button):hover {
    color: #f39c12;
    text-decoration-color: #f39c12;
}

/* Unordered & Ordered Lists */
.entry-content ul,
.post-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.entry-content ul > li,
.post-body ul > li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 0.625rem;
    line-height: 1.7;
}

.entry-content ul > li::before,
.post-body ul > li::before {
    content: '';
    position: absolute;
    left: 0.25rem;
    top: 0.625rem;
    width: 6px;
    height: 6px;
    background-color: #f39c12;
    border-radius: 50%;
}

.entry-content ol,
.post-body ol {
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.entry-content ol > li,
.post-body ol > li {
    margin-bottom: 0.625rem;
    line-height: 1.7;
    padding-left: 0.5rem;
}

/* Blockquotes & Pullquotes */
.entry-content blockquote,
.post-body blockquote,
.wp-block-quote,
.wp-block-pullquote {
    background-color: #f6f3f2;
    border-left: 4px solid #f39c12;
    padding: 1.25rem 1.5rem;
    margin: 1.75rem 0;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #1a4b7c;
}

.entry-content blockquote p,
.post-body blockquote p {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.7;
    color: #1a4b7c;
}

.entry-content blockquote cite,
.wp-block-quote cite {
    display: block;
    margin-top: 0.75rem;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
    color: #757684;
}

/* Tables & Grid Data */
.entry-content table,
.post-body table,
.wp-block-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    border: 1px solid #c4c5d5;
    border-radius: 8px;
    overflow: hidden;
    font-size: 14px;
}

.entry-content th,
.post-body th,
.wp-block-table th {
    background-color: #1a4b7c;
    color: #ffffff;
    padding: 14px 18px;
    font-weight: 700;
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.entry-content td,
.post-body td,
.wp-block-table td {
    padding: 12px 18px;
    border-bottom: 1px solid #e4e2e1;
    color: #333333;
}

.entry-content tr:nth-child(even),
.post-body tr:nth-child(even),
.wp-block-table tr:nth-child(even) {
    background-color: #fbf9f8;
}

.entry-content tr:hover,
.post-body tr:hover {
    background-color: #f0eded;
}

/* Images, Figures & Galleries */
.entry-content figure,
.post-body figure,
.wp-block-image,
.wp-block-gallery {
    margin: 2rem 0;
}

.entry-content img,
.post-body img,
.wp-block-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #c4c5d5;
    box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.05);
}

.entry-content figcaption,
.post-body figcaption,
.wp-block-image figcaption {
    text-align: center;
    font-size: 13px;
    color: #64748b;
    font-style: italic;
    margin-top: 8px;
}

/* Code Blocks & Inline Code */
.entry-content pre,
.post-body pre,
.wp-block-code {
    background-color: #1e293b;
    color: #f8fafc;
    padding: 1.25rem;
    border-radius: 8px;
    overflow-x: auto;
    font-family: Consolas, 'Courier New', monospace;
    font-size: 14px;
    line-height: 1.6;
    margin: 1.75rem 0;
    border: 1px solid #334155;
}

.entry-content code:not(pre code),
.post-body code:not(pre code) {
    background-color: #f0eded;
    color: #00288e;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 14px;
    font-family: Consolas, 'Courier New', monospace;
}

/* Callout Boxes & Highlight Cards */
.callout-box,
.wp-block-group.has-background {
    border-radius: 8px;
    border: 1px solid #c4c5d5;
    padding: 1.5rem;
    margin: 1.75rem 0;
}

.callout-box-primary {
    background-color: #f6f3f2;
    border-left: 4px solid #00288e;
}

.callout-box-gold {
    background-color: #fef8ee;
    border-left: 4px solid #f39c12;
}

/* Separators / HR */
.entry-content hr,
.post-body hr,
.wp-block-separator {
    border: none;
    border-top: 1px solid #c4c5d5;
    margin: 2.5rem 0;
}

/* Embeds & Videos */
.entry-content iframe,
.entry-content video,
.wp-block-embed iframe {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Comments Form & List */
#comments {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #c4c5d5;
}

.comment-respond {
    background: #ffffff;
    border: 1px solid #c4c5d5;
    border-radius: 12px;
    padding: 24px;
    margin-top: 2rem;
}

.comment-respond .comment-reply-title {
    color: #1a4b7c;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.comment-respond textarea,
.comment-respond input[type="text"],
.comment-respond input[type="email"] {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #c4c5d5;
    border-radius: 6px;
    margin-bottom: 12px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.2s ease;
}

.comment-respond textarea:focus,
.comment-respond input[type="text"]:focus,
.comment-respond input[type="email"]:focus {
    border-color: #00288e;
    box-shadow: 0 0 0 2px rgba(0, 40, 142, 0.1);
}

.comment-respond .form-submit input[type="submit"] {
    background-color: #00288e;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 10px 24px;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.comment-respond .form-submit input[type="submit"]:hover {
    background-color: #1a4b7c;
}


/* ==========================================================================
   STRICT WORDPRESS POST CONTENT & TYPOGRAPHY RESTORATION (Overrides Tailwind Reset)
   ========================================================================== */

.entry-content,
.post-body,
.prose,
article.post .entry-content {
    color: #333333 !important;
    font-family: 'Inter', sans-serif !important;
    font-size: 16px !important;
    line-height: 1.8 !important;
}

/* Headings in Post Content */
.entry-content h1,
.post-body h1,
article.post h1,
.entry-content .wp-block-heading:is(h1) {
    font-size: 32px !important;
    line-height: 1.3 !important;
    font-weight: 700 !important;
    color: #1a4b7c !important;
    margin-top: 2.5rem !important;
    margin-bottom: 1.25rem !important;
    font-family: 'Inter', sans-serif !important;
    display: block !important;
    letter-spacing: -0.01em !important;
}

.entry-content h2,
.post-body h2,
article.post h2,
.entry-content .wp-block-heading:is(h2) {
    font-size: 24px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
    color: #1a4b7c !important;
    margin-top: 2.5rem !important;
    margin-bottom: 1.25rem !important;
    padding-bottom: 0.5rem !important;
    border-bottom: 2px solid #f6f3f2 !important;
    position: relative !important;
    font-family: 'Inter', sans-serif !important;
    display: block !important;
}

.entry-content h2::after,
.post-body h2::after {
    content: '' !important;
    position: absolute !important;
    bottom: -2px !important;
    left: 0 !important;
    width: 48px !important;
    height: 2px !important;
    background-color: #f39c12 !important;
}

.entry-content h3,
.post-body h3,
article.post h3,
.entry-content .wp-block-heading:is(h3) {
    font-size: 20px !important;
    line-height: 1.4 !important;
    font-weight: 600 !important;
    color: #1a4b7c !important;
    margin-top: 2rem !important;
    margin-bottom: 0.875rem !important;
    font-family: 'Inter', sans-serif !important;
    display: block !important;
}

.entry-content h4,
.post-body h4,
article.post h4,
.entry-content .wp-block-heading:is(h4) {
    font-size: 18px !important;
    line-height: 1.45 !important;
    font-weight: 600 !important;
    color: #1a4b7c !important;
    margin-top: 1.5rem !important;
    margin-bottom: 0.75rem !important;
    font-family: 'Inter', sans-serif !important;
    display: block !important;
}

.entry-content h5,
.post-body h5,
.entry-content h6,
.post-body h6 {
    font-size: 16px !important;
    line-height: 1.5 !important;
    font-weight: 600 !important;
    color: #444653 !important;
    margin-top: 1.25rem !important;
    margin-bottom: 0.5rem !important;
    font-family: 'Inter', sans-serif !important;
    display: block !important;
}

/* Paragraphs & Text */
.entry-content p,
.post-body p,
article.post p {
    font-size: 16px !important;
    line-height: 1.85 !important;
    color: #333333 !important;
    margin-top: 0 !important;
    margin-bottom: 1.5rem !important;
    font-family: 'Inter', sans-serif !important;
    display: block !important;
}

.entry-content strong,
.post-body strong,
.entry-content b,
.post-body b {
    font-weight: 700 !important;
    color: #1a4b7c !important;
}

.entry-content em,
.post-body em,
.entry-content i,
.post-body i {
    font-style: italic !important;
}

.entry-content a:not(.wp-element-button),
.post-body a:not(.wp-element-button) {
    color: #00288e !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
    font-weight: 600 !important;
    transition: color 0.2s ease !important;
}

.entry-content a:not(.wp-element-button):hover,
.post-body a:not(.wp-element-button):hover {
    color: #f39c12 !important;
}

/* Unordered Lists */
.entry-content ul:not(.wp-block-social-links),
.post-body ul:not(.wp-block-social-links),
article.post ul:not(.wp-block-social-links),
.entry-content .wp-block-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin-top: 1rem !important;
    margin-bottom: 1.75rem !important;
    display: block !important;
}

.entry-content ul:not(.wp-block-social-links) > li,
.post-body ul:not(.wp-block-social-links) > li,
article.post ul:not(.wp-block-social-links) > li,
.entry-content .wp-block-list > li {
    position: relative !important;
    padding-left: 2rem !important;
    margin-bottom: 0.75rem !important;
    line-height: 1.75 !important;
    color: #333333 !important;
    font-size: 16px !important;
    display: list-item !important;
}

.entry-content ul:not(.wp-block-social-links) > li::before,
.post-body ul:not(.wp-block-social-links) > li::before,
article.post ul:not(.wp-block-social-links) > li::before,
.entry-content .wp-block-list > li::before {
    content: '' !important;
    position: absolute !important;
    left: 0.5rem !important;
    top: 0.65rem !important;
    width: 7px !important;
    height: 7px !important;
    background-color: #f39c12 !important;
    border-radius: 50% !important;
}

/* Ordered Lists */
.entry-content ol,
.post-body ol,
article.post ol {
    list-style: decimal !important;
    padding-left: 2rem !important;
    margin-top: 1rem !important;
    margin-bottom: 1.75rem !important;
    display: block !important;
}

.entry-content ol > li,
.post-body ol > li,
article.post ol > li {
    margin-bottom: 0.75rem !important;
    line-height: 1.75 !important;
    color: #333333 !important;
    font-size: 16px !important;
    padding-left: 0.25rem !important;
    display: list-item !important;
}

/* Blockquotes */
.entry-content blockquote,
.post-body blockquote,
.wp-block-quote,
.wp-block-pullquote {
    background-color: #f6f3f2 !important;
    border-left: 5px solid #f39c12 !important;
    padding: 1.5rem 1.75rem !important;
    margin: 2rem 0 !important;
    border-radius: 0 10px 10px 0 !important;
    font-style: italic !important;
    color: #1a4b7c !important;
    display: block !important;
}

.entry-content blockquote p,
.post-body blockquote p,
.wp-block-quote p {
    margin-bottom: 0 !important;
    font-size: 18px !important;
    line-height: 1.75 !important;
    color: #1a4b7c !important;
}

/* Tables */
.entry-content table,
.post-body table,
.wp-block-table table {
    width: 100% !important;
    border-collapse: collapse !important;
    margin: 2.25rem 0 !important;
    border: 1px solid #c4c5d5 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    font-size: 15px !important;
    display: table !important;
}

.entry-content th,
.post-body th,
.wp-block-table th {
    background-color: #1a4b7c !important;
    color: #ffffff !important;
    padding: 14px 18px !important;
    font-weight: 700 !important;
    text-align: left !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.entry-content td,
.post-body td,
.wp-block-table td {
    padding: 12px 18px !important;
    border-bottom: 1px solid #e4e2e1 !important;
    border-right: 1px solid #e4e2e1 !important;
    color: #333333 !important;
    line-height: 1.6 !important;
}

.entry-content tr:nth-child(even),
.post-body tr:nth-child(even),
.wp-block-table tr:nth-child(even) {
    background-color: #fbf9f8 !important;
}

.entry-content tr:hover,
.post-body tr:hover {
    background-color: #f0eded !important;
}

/* Images & Figures */
.entry-content figure,
.post-body figure,
.wp-block-image,
.wp-block-gallery {
    margin: 2rem 0 !important;
    display: block !important;
}

.entry-content img,
.post-body img,
.wp-block-image img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 8px !important;
    border: 1px solid #c4c5d5 !important;
    display: block !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06) !important;
}

.entry-content figcaption,
.post-body figcaption,
.wp-block-image figcaption {
    text-align: center !important;
    font-size: 13px !important;
    color: #64748b !important;
    font-style: italic !important;
    margin-top: 10px !important;
    display: block !important;
}

/* Code Blocks */
.entry-content pre,
.post-body pre,
.wp-block-code {
    background-color: #1e293b !important;
    color: #f8fafc !important;
    padding: 1.25rem 1.5rem !important;
    border-radius: 8px !important;
    overflow-x: auto !important;
    font-family: Consolas, 'Courier New', monospace !important;
    font-size: 14px !important;
    line-height: 1.6 !important;
    margin: 2rem 0 !important;
    border: 1px solid #334155 !important;
    display: block !important;
}

.entry-content code:not(pre code),
.post-body code:not(pre code) {
    background-color: #f0eded !important;
    color: #00288e !important;
    padding: 3px 7px !important;
    border-radius: 4px !important;
    font-size: 14px !important;
    font-family: Consolas, 'Courier New', monospace !important;
    font-weight: 600 !important;
}

/* Horizontal Separators */
.entry-content hr,
.post-body hr,
.wp-block-separator {
    border: none !important;
    border-top: 1px solid #c4c5d5 !important;
    margin: 3rem 0 !important;
    display: block !important;
}
