/* ============================================================
   blog-post.css – WholeClear Blog Post Layout
   Layout: [TOC left] [Main content] [Share icons right]
   Related blogs below content area
   Brand: WholeClear logo – navy #002060 + red #c00000
   ============================================================ */

:root {
    --wc-navy: #002060;
    --wc-red: #c00000;
    --wc-navy-dark: #001845;
    --wc-red-dark: #9a0000;
}

/* ──────────────────────────────────────────────
   1. BLOG POST SECTION
────────────────────────────────────────────── */
.blog-post-section {
    background: #f0f2f7;
    padding: 0 0 50px;
}

.blog-post-section .blog-headline-banner {
    margin-bottom: 0;
}

.blog-post-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr) 52px;
    grid-template-areas:
        "toc content share"
        ". related .";
    gap: 24px 20px;
    align-items: start;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
}

html.blog-post-ready .blog-post-layout {
    opacity: 1;
}

.blog-share-sidebar {
    display: contents;
}

/* Reset Bootstrap columns inside new layout (not main content card) */
.blog-post-layout .col-lg-8:not(.blog-main-content),
.blog-post-layout .col-md-4:not(.blog-main-content) {
    width: 100%;
    max-width: 100%;
    flex: none;
    float: none;
    padding-left: 0;
    padding-right: 0;
}

/* ──────────────────────────────────────────────
   2. TABLE OF CONTENTS (LEFT)
────────────────────────────────────────────── */
.blog-toc-sidebar {
    grid-area: toc;
    position: sticky;
    top: 100px;
    z-index: 2;
    align-self: start;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    background: #fff;
    border: 1px solid #e3e8f0;
    border-left: 4px solid var(--wc-navy);
    border-radius: 6px;
    box-shadow: 0 2px 10px rgba(15, 28, 53, 0.06);
    overflow: hidden;
}

.toc-header {
    background: #fff;
    color: var(--wc-navy);
    padding: 18px 20px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #e8eaed;
}

.toc-header svg {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    fill: var(--wc-navy);
}

.toc-header h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0;
    color: var(--wc-navy);
    letter-spacing: 0;
    text-transform: none;
}

.toc-progress-bar {
    display: none;
}

.toc-nav {
    padding: 10px 0 14px;
}

.toc-nav ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.toc-nav ol li {
    border-bottom: none;
}

.toc-nav ol li a {
    display: block;
    padding: 10px 20px;
    color: #374151;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.55;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
    position: relative;
    padding-left: 34px;
}

.toc-nav ol li a::before {
    content: '•';
    position: absolute;
    left: 18px;
    top: 10px;
    font-size: 1.1rem;
    color: var(--wc-navy);
    font-weight: 700;
}

.toc-nav ol li a:hover {
    color: var(--wc-navy);
    background: #f5f7fa;
    padding-left: 34px;
    text-decoration: none;
}

.toc-nav ol li a:hover::before {
    color: var(--wc-red);
}

.toc-nav ol li a.toc-active {
    color: var(--wc-navy);
    background: #eef2f8;
    font-weight: 600;
}

.toc-nav ol li a.toc-active::before {
    color: var(--wc-red);
}

/* ──────────────────────────────────────────────
   3. MAIN CONTENT (CENTER)
────────────────────────────────────────────── */
.blog-main-content {
    grid-area: content;
    background: #ffffff;
    border: 1px solid #e3e8f0;
    border-left: 4px solid var(--wc-navy);
    border-radius: 6px;
    box-shadow: 0 2px 14px rgba(15, 28, 53, 0.07);
    padding: 32px 36px 34px 38px;
    min-width: 0;
    width: 100%;
    justify-self: stretch;
    box-sizing: border-box;
}

.blog-main-content > h2.h2,
.blog-main-content > h2.h4,
.blog-main-content > h2.font_bold,
.blog-main-content > h3.h3,
.blog-main-content > h3.h4,
.blog-main-content > h3.font_bold {
    margin-top: 28px;
}

.blog-main-content > h2.h2:first-child,
.blog-main-content > h2.h4:first-child,
.blog-main-content > h2.font_bold:first-child,
.blog-main-content > h3.h3:first-child,
.blog-main-content > h3.h4:first-child,
.blog-main-content > h3.font_bold:first-child {
    margin-top: 0;
}

.blog-main-content .blog-cta-top,
.blog-main-content .blog-cta-bottom {
    margin-left: 0;
    margin-right: 0;
}

.blog-main-content .blog-cta-top {
    margin-top: 20px;
    margin-bottom: 24px;
}

.blog-main-content .blog-cta-bottom {
    margin-top: 28px;
}

.blog-main-content .blog-cta-banner {
    margin-left: 0;
    margin-right: 0;
}

.blog-main-content a:not(.blog-cta-btn) {
    color: var(--wc-navy);
    text-decoration: none;
    font-weight: 500;
}

.blog-main-content a:not(.blog-cta-btn):hover {
    color: var(--wc-red);
    text-decoration: underline;
}

.blog-main-content .btn-success {
    display: none;
}

.blog-main-content h2[id],
.blog-main-content h3[id] {
    scroll-margin-top: 100px;
}

/* ── Legacy multi-card fallback ── */
.blog-content-block {
    background: #ffffff;
    border: 1px solid #e3e8f0;
    border-left: 4px solid var(--wc-navy);
    border-radius: 6px;
    box-shadow: 0 2px 14px rgba(15, 28, 53, 0.07);
    padding: 26px 30px;
}

.blog-content-block > h2.h2:first-child,
.blog-content-block > h3.h3:first-child {
    margin-top: 0;
}

.blog-content-block a:not(.blog-cta-btn) {
    color: var(--wc-navy);
    text-decoration: none;
    font-weight: 500;
}

.blog-content-block a:not(.blog-cta-btn):hover {
    color: var(--wc-red);
    text-decoration: underline;
}

.blog-content-block .alert {
    border-radius: 6px;
    padding: 14px 18px;
    margin: 14px 0;
    font-size: 0.93rem;
    line-height: 1.6;
    border: 1px solid transparent;
}

.blog-content-block .alert-info {
    background: #eef4fc;
    border-color: #c5d9f5;
    color: #1e3a5f;
}

.blog-content-block .alert-warning {
    background: #fff8e6;
    border-color: #f0d78c;
    color: #5c4a12;
}

/* Bullet lists inside cards */
.blog-content-block ul.list li::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #9ca3af;
    border-radius: 1px;
    top: 11px;
    font-size: 0;
    font-weight: 400;
}

/* Numbered step list */
.blog-step-list {
    list-style: none;
    counter-reset: blog-step;
    margin: 14px 0 18px;
    padding: 0;
}

.blog-step-list li {
    counter-increment: blog-step;
    position: relative;
    padding: 8px 0 8px 72px;
    color: #374151;
    font-size: 0.93rem;
    line-height: 1.7;
    border-bottom: 1px solid #f0f2f5;
}

.blog-step-list li:last-child {
    border-bottom: none;
}

.blog-step-list li::before {
    content: 'Step ' counter(blog-step) '.';
    position: absolute;
    left: 0;
    top: 8px;
    font-weight: 700;
    color: var(--wc-navy);
    font-size: 0.93rem;
}

/* CTA banners */
.blog-cta-banner {
    border-radius: 8px;
    padding: 22px 26px;
    margin-top: 20px;
}

.blog-cta-top {
    background: linear-gradient(90deg, var(--wc-navy) 0%, #003399 45%, #8b1538 75%, var(--wc-red) 100%);
}

.blog-cta-bottom {
    background: linear-gradient(90deg, var(--wc-navy) 0%, #003399 45%, #8b1538 75%, var(--wc-red) 100%);
}

.blog-cta-banner .blog-cta-text {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.55;
    margin: 0 0 16px;
}

.blog-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.blog-cta-btn {
    display: inline-block;
    padding: 10px 26px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    border: 2px solid var(--wc-navy);
    background-color: var(--wc-navy);
    color: #ffffff;
    transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.blog-cta-btn:hover,
.blog-cta-btn:focus {
    background-color: var(--wc-red);
    border-color: var(--wc-red);
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    opacity: 1;
}

.blog-cta-btn.download {
    background-color: #ffffff;
    border-color: #ffffff;
    color: var(--wc-navy);
}

.blog-cta-btn.download:hover,
.blog-cta-btn.download:focus {
    background-color: #f0f2f7;
    border-color: #ffffff;
    color: var(--wc-navy);
}

.blog-headline-banner h1.color-blue,
.blog-headline-banner h1.h2 {
    color: #ffffff !important;
}

.blog-main-content h2.h4,
.blog-main-content h3.h4,
.blog-main-content h2.font_bold,
.blog-main-content h3.font_bold {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--wc-navy);
    margin: 0 0 14px;
    scroll-margin-top: 100px;
}

.blog-main-content h3.h4,
.blog-main-content h3.font_bold {
    font-size: 1.1rem;
}

.blog-content-block > h2.h4:first-child,
.blog-content-block > h2.font_bold:first-child,
.blog-content-block > h3.h4:first-child,
.blog-content-block > h3.font_bold:first-child {
    margin-top: 0;
}

.blog-main-content hr.style-two {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 16px 0 20px;
}

.blog-main-content .btn-warning {
    display: none;
}

/* ── Full-width hero headline (above 3-column layout) ── */
.blog-headline-banner {
    width: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(90deg, var(--wc-navy) 0%, #003399 40%, #8b1538 72%, var(--wc-red) 100%);
    background-color: var(--wc-navy);
}

.blog-headline-banner h1,
.blog-headline-banner h1.h1,
.blog-headline-banner h1.h2,
.blog-headline-banner h1.font_bold,
.blog-headline-banner h1.color-blue {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 1180px;
    margin: 0 auto !important;
    padding: 48px 28px;
    box-sizing: border-box;
    background: none;
    color: #ffffff !important;
    text-align: center !important;
    font-size: 2.35rem;
    font-weight: 800;
    line-height: 1.28;
    letter-spacing: -0.02em;
    border: none;
    border-radius: 0;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
    float: none;
}

.blog-main-content hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 16px 0 20px;
}

.blog-main-content h2.h2 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--wc-navy);
    margin: 0 0 14px;
    padding-bottom: 0;
    border-bottom: none;
    scroll-margin-top: 100px;
}

.blog-main-content h3.h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--wc-navy);
    margin: 0 0 12px;
    scroll-margin-top: 100px;
}

.blog-content-block[id] {
    scroll-margin-top: 100px;
}

.blog-main-content p.para,
.blog-main-content p {
    color: #374151;
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

.blog-main-content ul.list {
    list-style: none;
    margin: 10px 0 18px 0;
    padding: 0;
}

.blog-main-content ul.list li {
    position: relative;
    padding: 5px 0 5px 28px;
    color: #374151;
    font-size: 0.93rem;
    line-height: 1.65;
}

.blog-main-content ul.list li::after {
    content: '✓';
    position: absolute;
    left: 0;
    top: 5px;
    color: #1a56db;
    font-size: 0.9rem;
    font-weight: 700;
}

.blog-main-content ol.list1,
.blog-main-content ul.list1 {
    margin: 12px 0 18px 0;
    padding-left: 22px;
    color: #374151;
    font-size: 0.93rem;
    line-height: 1.7;
}

.blog-main-content ol.list1 li,
.blog-main-content ul.list1 li {
    margin-bottom: 6px;
}

.blog-content-block ul.list1 {
    list-style: none;
    margin: 10px 0 18px 0;
    padding: 0;
}

.blog-content-block ul.list1 li {
    position: relative;
    padding: 5px 0 5px 28px;
    color: #374151;
    font-size: 0.93rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.blog-content-block ul.list1 li::after {
    content: '';
    width: 6px;
    height: 6px;
    background: #9ca3af;
    border-radius: 1px;
    position: absolute;
    left: 0;
    top: 11px;
}

.blog-main-content p.h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0b1c35;
    margin: 20px 0 10px;
}

.blog-main-content hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 20px 0;
}

.blog-main-content img.img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 12px 0;
}

.blog-main-content .well {
    background: #f8f9fc;
    border: 1px solid #e3e8f0;
    border-left: 3px solid var(--wc-navy);
    border-radius: 4px;
    padding: 22px 26px;
    margin: 20px 0 0;
    box-shadow: none;
}

.blog-main-content .well h3.h3 {
    color: #0b1c35;
    margin-top: 0;
}

.blog-main-content .btn-success {
    background: #2c3478;
    border: none;
    border-radius: 6px;
    padding: 11px 22px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.25s ease;
    box-shadow: none;
    margin: 8px 0 16px;
}

.blog-main-content .btn-success:hover {
    background: #1e2560;
    transform: none;
    box-shadow: none;
    color: #fff;
    text-decoration: none;
}

/* ──────────────────────────────────────────────
   4. SHARE SIDEBAR (RIGHT – vertical icons)
────────────────────────────────────────────── */
.share-box {
    grid-area: share;
    position: sticky;
    top: 100px;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    z-index: 3;
}

.share-box-header {
    display: none;
}

.share-buttons {
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0;
    color: #fff;
    transition: opacity 0.2s ease, transform 0.2s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.share-btn::after {
    display: none;
}

.share-btn:hover {
    transform: scale(1.08);
    opacity: 0.9;
    text-decoration: none;
    color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.share-btn svg {
    width: 22px;
    height: 22px;
    fill: #fff;
}

.share-btn .btn-label {
    display: none;
}

.share-btn.facebook  { background: #3b5998; }
.share-btn.twitter   { background: #1da1f2; }
.share-btn.linkedin  { background: #0077b5; }
.share-btn.whatsapp  { background: #25d366; }
.share-btn.email     { background: #ea4335; }
.share-btn.copy-link { background: #6366f1; }

.share-btn.copy-link.copied {
    background: #059669;
}

/* ──────────────────────────────────────────────
   5. RELATED BLOGS (BELOW CONTENT)
────────────────────────────────────────────── */
.related-blogs-box {
    grid-area: related;
    background: transparent;
    border: none;
    box-shadow: none;
    overflow: visible;
    position: relative;
    z-index: 1;
    margin-top: 8px;
    min-width: 0;
    padding-right: 4px;
}

.related-blogs-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    padding: 0 4px 0 0;
}

.related-blogs-header svg {
    flex-shrink: 0;
    fill: var(--wc-navy);
}

.related-blogs-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--wc-navy);
    margin: 0;
}

.related-blogs-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    list-style: none;
    margin: 10px 0 0;
    padding: 0 8px 0 0;
    min-width: 0;
    width: 100%;
}

.related-blogs-list li {
    border: 1px solid #d9dde3;
    border-radius: 4px;
    background: #fff;
    margin: 0;
    min-width: 0;
}

.related-blogs-list li a {
    display: block;
    padding: 12px 14px;
    color: #374151;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.45;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.related-blogs-list li a::before {
    display: none;
}

.related-blogs-list li a:hover {
    color: #00247c;
    background: #f5f7fa;
    text-decoration: none;
    padding-left: 14px;
}

/* ──────────────────────────────────────────────
   6. READING PROGRESS BAR
────────────────────────────────────────────── */
.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: #00247c;
    width: 0%;
    z-index: 9999;
    transition: width 0.1s linear;
}

/* ──────────────────────────────────────────────
   7. LEGACY BOOTSTRAP BLOG LAYOUT
   (for older blog pages – CSS link only)
────────────────────────────────────────────── */
section:not(.blog-post-section) {
    background: #fff;
    padding: 30px 0 50px;
}

section.blog-post-section > .container {
    max-width: 1180px;
    width: calc(100% - 24px);
    padding: 28px 12px 0;
    margin-left: auto;
    margin-right: auto;
}

section:not(.blog-post-section) > .container {
    max-width: 1500px;
    width: calc(100% - 24px);
}

section:not(.blog-post-section) .col-lg-8 {
    background: #fff;
    padding: 0 10px;
}

section:not(.blog-post-section) .col-lg-8 hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 16px 0 20px;
}

section:not(.blog-post-section) .col-lg-8 h2.h2 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0b1c35;
    margin: 28px 0 12px;
}

section:not(.blog-post-section) .col-lg-8 h3.h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: #0b1c35;
    margin: 22px 0 10px;
}

section:not(.blog-post-section) .col-lg-8 p.para,
section:not(.blog-post-section) .col-lg-8 p {
    color: #374151;
    line-height: 1.75;
    margin-bottom: 14px;
    font-size: 0.95rem;
}

section:not(.blog-post-section) .col-lg-8 ul.list {
    list-style: none;
    margin: 10px 0 18px 0;
    padding: 0;
}

section:not(.blog-post-section) .col-lg-8 ul.list li {
    position: relative;
    padding: 5px 0 5px 28px;
    color: #374151;
    font-size: 0.93rem;
    line-height: 1.65;
}

section:not(.blog-post-section) .col-lg-8 ul.list li::after {
    content: '✓';
    position: absolute;
    left: 0;
    top: 5px;
    color: #1a56db;
    font-size: 0.9rem;
    font-weight: 700;
}

section:not(.blog-post-section) .col-lg-8 ol.list1,
section:not(.blog-post-section) .col-lg-8 ul.list1 {
    margin: 12px 0 18px 0;
    padding-left: 22px;
    color: #374151;
    font-size: 0.93rem;
    line-height: 1.7;
}

section:not(.blog-post-section) .col-lg-8 ol.list1 li,
section:not(.blog-post-section) .col-lg-8 ul.list1 li {
    margin-bottom: 6px;
}

section:not(.blog-post-section) .col-lg-8 p.h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #0b1c35;
    margin: 20px 0 10px;
}

section:not(.blog-post-section) .col-lg-8 hr {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 20px 0;
}

section:not(.blog-post-section) .col-lg-8 img.img-responsive {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 12px 0;
}

section:not(.blog-post-section) .col-lg-8 .well {
    background: #f4f4f4;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 22px 26px;
    margin: 24px 0;
    box-shadow: none;
}

section:not(.blog-post-section) .col-lg-8 .btn-success {
    background: #2c3478;
    border: none;
    border-radius: 6px;
    padding: 11px 22px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #fff;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: background 0.25s ease;
    box-shadow: none;
    margin: 8px 0 16px;
}

section:not(.blog-post-section) .col-lg-8 .btn-success:hover {
    background: #1e2560;
    color: #fff;
    text-decoration: none;
}

section:not(.blog-post-section) .col-md-4 .well {
    background: #fff;
    border: 1px solid #d9dde3;
    border-radius: 4px;
    padding: 0;
    box-shadow: none;
    overflow: hidden;
}

section:not(.blog-post-section) .col-md-4 .well h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    padding: 14px 16px 10px;
    border-bottom: 1px solid #e8eaed;
    text-align: left;
}

section:not(.blog-post-section) .col-md-4 .well ul.list-unstyled {
    list-style: none;
    margin: 0;
    padding: 8px 0 12px;
}

section:not(.blog-post-section) .col-md-4 .well ul.list-unstyled li a {
    display: block;
    padding: 8px 16px;
    color: #374151;
    font-size: 0.82rem;
    line-height: 1.5;
    text-decoration: none;
    transition: color 0.2s ease, background 0.2s ease;
}

section:not(.blog-post-section) .col-md-4 .well ul.list-unstyled li a:hover {
    color: #00247c;
    background: #f5f7fa;
    text-decoration: none;
}

/* ──────────────────────────────────────────────
   8. RESPONSIVE
────────────────────────────────────────────── */
@media (max-width: 992px) {
    section.blog-post-section > .container {
        width: calc(100% - 16px);
        padding: 20px 8px 0;
    }

    .blog-post-layout {
        grid-template-columns: 1fr;
        grid-template-areas:
            "toc"
            "content"
            "share"
            "related";
        gap: 20px;
    }

    .blog-toc-sidebar {
        position: static;
    }

    .share-box {
        position: static;
    }

    .share-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .related-blogs-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .blog-main-content {
        padding: 24px 20px 28px 22px;
    }

    .blog-content-block {
        padding: 20px 18px;
    }

    .blog-cta-banner {
        padding: 18px 16px;
    }

    .blog-cta-btn {
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .blog-headline-banner h1,
    .blog-headline-banner h1.h1,
    .blog-headline-banner h1.h2 {
        font-size: 1.45rem;
        padding: 32px 20px;
        line-height: 1.35;
        text-align: center !important;
    }

    .blog-post-layout {
        padding: 0 15px;
    }
}
