/* =========================================================
   MAAYON FASHION — BLOG / INSIGHTS
   ========================================================= */


/* =========================================================
   1. BLOG PAGE BASE
   ========================================================= */

.fluid-blog-page {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #f8f6f1;
    color: #17202a;
    overflow: hidden;
}

.fluid-blog-page *,
.fluid-blog-page *::before,
.fluid-blog-page *::after {
    box-sizing: border-box;
}


/* Remove unwanted spacing from theme containers */

.fluid-blog-page .container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   2. FEATURED HERO
   ========================================================= */

.fluid-blog-hero {
    position: relative;
    width: 100%;
    min-height: 720px;
    overflow: hidden;
    background: #171717;
}

.fluid-hero-link-wrap {
    position: relative;
    display: flex;
    min-height: 720px;
    width: 100%;
    color: #ffffff;
    text-decoration: none;
    overflow: hidden;
}


/* Background image */

.fluid-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    transform: scale(1.01);
    transition: transform 1.2s cubic-bezier(.2,.65,.2,1);
}


/* Dark cinematic overlay */

.fluid-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0, 0, 0, 0.12) 0%,
            rgba(0, 0, 0, 0.18) 35%,
            rgba(0, 0, 0, 0.68) 100%
        );
}


/* Slight left-to-right gradient */

.fluid-hero-overlay::after {
    content: "";
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.28) 0%,
            transparent 65%
        );
}


/* Hero hover */

.fluid-hero-link-wrap:hover .fluid-hero-bg {
    transform: scale(1.05);
}


/* =========================================================
   3. BLUEPRINT LINES
   ========================================================= */

.footer-blueprint-lines {
    position: absolute;
    inset: 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    max-width: 1280px;
    margin: 0 auto;

    pointer-events: none;
    opacity: 0.22;
}

.blueprint-col {
    border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.blueprint-col:last-child {
    border-right: 1px solid rgba(255, 255, 255, 0.35);
}


/* =========================================================
   4. HERO CONTENT CONTAINER
   ========================================================= */

.fluid-hero-container {
    position: relative;
    z-index: 3;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    min-height: 720px;

    padding-top: 55px;
    padding-bottom: 65px;
}


/* =========================================================
   5. HERO META
   ========================================================= */

.fluid-hero-top-meta {
    display: flex;
    align-items: center;
    gap: 18px;

    
    font-size: 11px;
    line-height: 1.4;

    letter-spacing: 0.14em;
    text-transform: uppercase;

    color: rgba(255, 255, 255, 0.82);
}

.fluid-hero-tag {
    display: inline-flex;
    align-items: center;

    padding: 8px 12px;

    border: 1px solid rgba(255, 255, 255, 0.45);

    font-size: 10px;
    letter-spacing: 0.16em;

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


/* =========================================================
   6. HERO TITLE
   ========================================================= */

.fluid-hero-content {
    max-width: 950px;
}

.fluid-hero-title {
    max-width: 900px;

    margin: 0 0 35px;

    font-family: "Manrope", sans-serif;
    font-size: clamp(42px, 5vw, 82px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -0.045em;

    color: #ffffff;
}


/* =========================================================
   7. VIEW ARTICLE PILL
   ========================================================= */

.fluid-hero-view-pill {
    display: inline-flex;
    align-items: center;

    padding: 13px 20px;

    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 50px;
    
    font-size: 10px;
    letter-spacing: 0.16em;

    color: #ffffff;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        border-color 0.3s ease;
}

.fluid-hero-link-wrap:hover .fluid-hero-view-pill {
    background: #ffffff;
    border-color: #ffffff;
    color: #111111;
}


/* =========================================================
   8. BLOG GRID SECTION
   ========================================================= */

.fluid-blog-grid-section {
    width: 100%;
    padding: 110px 0 130px;
    background: #f8f6f1;
}

.fluid-grid-container {
    padding-left: 40px;
    padding-right: 40px;
}


/* =========================================================
   9. GRID HEADER
   ========================================================= */

.fluid-grid-header {
    margin-bottom: 65px;
}

.section-label-light {
    display: block;

    margin-bottom: 18px;

    
    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: #77736c;
}

.fluid-grid-heading {
    max-width: 850px;

    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: clamp(32px, 4vw, 54px);
    font-weight: 500;
    line-height: 1.08;

    letter-spacing: -0.04em;

    color: #17202a;
}


/* =========================================================
   10. POSTS GRID
   ========================================================= */

.fluid-posts-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 70px 28px;
}


/* =========================================================
   11. POST CARD
   ========================================================= */

.fluid-post-card {
    width: 100%;
    min-width: 0;
}

.fluid-card-link {
    display: block;

    width: 100%;

    color: inherit;
    text-decoration: none;
}


/* =========================================================
   12. CARD IMAGE
   ========================================================= */

.fluid-card-image-frame {
    position: relative;

    width: 100%;
    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #e8e4dc;
}

.fluid-thumbnail {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2,.65,.2,1);
}


/* Image hover */

.fluid-card-link:hover .fluid-thumbnail {
    transform: scale(1.045);
}


/* =========================================================
   13. CARD DETAILS
   ========================================================= */

.fluid-card-meta-box {
    padding-top: 22px;
}

.fluid-card-title {
    margin: 0 0 12px;

    font-family: "Manrope", sans-serif;
    font-size: 22px;
    font-weight: 500;
    line-height: 1.25;

    letter-spacing: -0.025em;

    color: #17202a;

    transition: opacity 0.25s ease;
}

.fluid-card-link:hover .fluid-card-title {
    opacity: 0.62;
}


/* =========================================================
   14. CARD DATE
   ========================================================= */

.fluid-card-date {
    display: block;


    font-size: 10px;

    letter-spacing: 0.12em;
    text-transform: uppercase;

    color: #77736c;
}


/* =========================================================
   15. EMPTY STATE
   ========================================================= */

.fluid-posts-grid .text-secondary {
    grid-column: 1 / -1;

    margin: 0;

    font-size: 16px;
    color: #77736c;
}


/* =========================================================
   16. TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .fluid-blog-hero,
    .fluid-hero-link-wrap,
    .fluid-hero-container {
        min-height: 620px;
    }

    .fluid-hero-container {
        padding-top: 40px;
        padding-bottom: 50px;
    }

    .fluid-grid-container {
        padding-left: 30px;
        padding-right: 30px;
    }

    .fluid-blog-grid-section {
        padding-top: 85px;
        padding-bottom: 100px;
    }

    .fluid-posts-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 55px 24px;
    }

    .fluid-grid-header {
        margin-bottom: 50px;
    }

}


/* =========================================================
   17. MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .fluid-blog-hero,
    .fluid-hero-link-wrap,
    .fluid-hero-container {
        min-height: 560px;
    }

    .fluid-hero-container {
        padding-top: 30px;
        padding-bottom: 38px;
    }

    .fluid-grid-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .fluid-hero-top-meta {
        gap: 10px;
        flex-wrap: wrap;

        font-size: 9px;
    }

    .fluid-hero-tag {
        padding: 7px 9px;
        font-size: 8px;
    }

    .fluid-hero-title {
        margin-bottom: 25px;

        font-size: clamp(36px, 11vw, 54px);
        line-height: 1.04;
    }

    .fluid-hero-view-pill {
        padding: 11px 16px;
        font-size: 9px;
    }

    .fluid-blog-grid-section {
        padding: 70px 0 80px;
    }

    .fluid-grid-header {
        margin-bottom: 40px;
    }

    .fluid-grid-heading {
        font-size: 34px;
        line-height: 1.1;
    }

    .fluid-posts-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .fluid-card-image-frame {
        aspect-ratio: 4 / 5;
    }

    .fluid-card-title {
        font-size: 20px;
    }

}


/* =========================================================
   18. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .fluid-blog-hero,
    .fluid-hero-link-wrap,
    .fluid-hero-container {
        min-height: 500px;
    }

    .fluid-hero-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .fluid-hero-title {
        font-size: 36px;
    }

    .fluid-grid-heading {
        font-size: 30px;
    }

    .fluid-card-image-frame {
        aspect-ratio: 1 / 1.15;
    }

}



/* =========================================================
   MAAYON FASHION
   SINGLE BLOG / ARTICLE PAGE
   ========================================================= */


/* =========================================================
   1. MAIN ARTICLE PAGE
   ========================================================= */

.single-insight-main {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #f8f6f1;
    color: #18222d;
    overflow: hidden;
}

.single-insight-main *,
.single-insight-main *::before,
.single-insight-main *::after {
    box-sizing: border-box;
}


/* Prevent Blocksy from adding unwanted article spacing */

.single-insight-main .container {
    width: min(1180px, calc(100% - 80px));
    margin-left: auto;
    margin-right: auto;
}

.single-insight-main .container-wide {
    width: min(1380px, calc(100% - 60px));
    margin-left: auto;
    margin-right: auto;
}

.single-insight-main .container-narrow {
    width: min(820px, calc(100% - 60px));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   2. ARTICLE HERO / HEADER
   ========================================================= */

.insight-single-header {
    width: 100%;
    padding: 105px 0 85px;
    background: #f8f6f1;
}

.insight-single-header .container {
    display: flex;
    flex-direction: column;
}


/* =========================================================
   3. META INFORMATION
   ========================================================= */

.insight-meta-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 30px;

   
    font-size: 10px;
    font-weight: 500;
    line-height: 1.5;

    letter-spacing: 0.13em;
    text-transform: uppercase;

    color: #77736d;
}

.insight-category {
    color: #18222d;
}

.meta-separator {
    color: #aaa59d;
}

.insight-date,
.insight-read-time {
    color: #77736d;
}


/* =========================================================
   4. ARTICLE TITLE
   ========================================================= */

.insight-single-title {
    max-width: 1050px;

    margin: 0 0 30px;

    font-family: "Manrope", sans-serif;
    font-size: clamp(46px, 6vw, 82px);
    font-weight: 500;
    line-height: 1.04;

    letter-spacing: -0.055em;

    color: #18222d;
}


/* =========================================================
   5. ARTICLE EXCERPT
   ========================================================= */

.insight-single-excerpt {
    max-width: 760px;

    margin: 0 0 45px;

    font-family: "Manrope", sans-serif;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.7;

    color: #6f6b65;
}


/* =========================================================
   6. AUTHOR BAR
   ========================================================= */

.insight-author-bar {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 5px;
}

.author-avatar {
    width: 50px;
    height: 50px;

    flex: 0 0 50px;

    overflow: hidden;

    border-radius: 50%;
}

.author-avatar img {
    display: block;

    width: 50px;
    height: 50px;

    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.author-name {
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 600;

    color: #18222d;
}

.author-role {
    
    font-size: 9px;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #858078;
}


/* =========================================================
   7. FEATURED IMAGE SECTION
   ========================================================= */

.insight-featured-banner-wrap {
    width: 100%;
    padding: 0 0 100px;

    background: #f8f6f1;
}

.insight-featured-frame {
    position: relative;

    width: 100%;

    overflow: hidden;

    background: #e8e4dc;
}

.insight-featured-img {
    display: block;

    width: 100%;
    height: auto;

    max-height: 780px;

    object-fit: cover;

    transition: transform 1s cubic-bezier(.2, .65, .2, 1);
}

.insight-featured-frame:hover .insight-featured-img {
    transform: scale(1.015);
}


/* =========================================================
   8. ARTICLE CONTENT WRAPPER
   ========================================================= */

.insight-article-content-wrap {
    width: 100%;

    padding: 10px 0 100px;

    background: #f8f6f1;
}

.insight-content-body {
    width: 100%;

    font-family: "Manrope", sans-serif;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.9;

    color: #343b42;
}


/* =========================================================
   9. ARTICLE TYPOGRAPHY
   ========================================================= */

.insight-content-body p {
    margin: 0 0 28px;
}

.insight-content-body p:last-child {
    margin-bottom: 0;
}


/* Headings */

.insight-content-body h2 {
    margin: 75px 0 25px;

    font-family: "Manrope", sans-serif;
    font-size: clamp(30px, 4vw, 46px);
    font-weight: 500;
    line-height: 1.15;

    letter-spacing: -0.035em;

    color: #18222d;
}

.insight-content-body h3 {
    margin: 55px 0 20px;

    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.25;

    color: #18222d;
}

.insight-content-body h4 {
    margin: 40px 0 15px;

    font-size: 21px;
    font-weight: 600;

    color: #18222d;
}


/* =========================================================
   10. ARTICLE LINKS
   ========================================================= */

.insight-content-body a {
    color: #18222d;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;

    transition: opacity 0.25s ease;
}

.insight-content-body a:hover {
    opacity: 0.55;
}


/* =========================================================
   11. LISTS
   ========================================================= */

.insight-content-body ul,
.insight-content-body ol {
    margin: 25px 0 35px;
    padding-left: 25px;
}

.insight-content-body li {
    margin-bottom: 12px;
    padding-left: 5px;
}


/* =========================================================
   12. BLOCKQUOTES
   ========================================================= */

.insight-content-body blockquote {
    margin: 55px 0;
    padding: 10px 0 10px 30px;

    border-left: 2px solid #18222d;

    font-family: "Manrope", sans-serif;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.5;

    color: #18222d;
}

.insight-content-body blockquote p {
    margin: 0;
}


/* =========================================================
   13. ARTICLE IMAGES
   ========================================================= */

.insight-content-body img {
    display: block;

    max-width: 100%;
    height: auto;

    margin: 45px auto;
}

.insight-content-body figure {
    margin: 55px 0;
}

.insight-content-body figure img {
    width: 100%;
    margin: 0;
}

.insight-content-body figcaption {
    margin-top: 12px;

    
    font-size: 9px;
    line-height: 1.5;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #858078;
}


/* =========================================================
   14. HORIZONTAL RULE
   ========================================================= */

.insight-content-body hr {
    height: 1px;

    margin: 60px 0;

    border: 0;

    background: #ddd9d1;
}


/* =========================================================
   15. TABLE
   ========================================================= */

.insight-content-body table {
    width: 100%;

    margin: 45px 0;

    border-collapse: collapse;

    font-size: 14px;
}

.insight-content-body th,
.insight-content-body td {
    padding: 14px 12px;

    border-bottom: 1px solid #ddd9d1;

    text-align: left;
}

.insight-content-body th {
    font-weight: 600;
}


/* =========================================================
   16. WORDPRESS PAGE LINKS
   ========================================================= */

.page-links {
    display: flex;
    align-items: center;
    gap: 8px;

    margin-top: 60px;
    padding-top: 30px;

    border-top: 1px solid #ddd9d1;

    
    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* =========================================================
   17. ARTICLE FOOTER
   ========================================================= */

.insight-article-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;

    margin-top: 90px;
    padding-top: 30px;

    border-top: 1px solid #dcd8d0;
}


/* =========================================================
   18. TAGS
   ========================================================= */

.insight-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.insight-tag-pill {
    display: inline-flex;
    align-items: center;

    padding: 8px 12px;

    border: 1px solid #d3cec5;

    
    font-size: 9px;

    letter-spacing: 0.08em;

    color: #6f6b65;

    text-decoration: none;

    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
}

.insight-tag-pill:hover {
    background: #18222d;
    border-color: #18222d;

    color: #ffffff;
}


/* =========================================================
   19. BACK TO BLOG
   ========================================================= */

.insight-back-row {
    flex-shrink: 0;
}

.btn-back-to-insights {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    
    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.1em;
    text-transform: uppercase;

    color: #18222d;

    text-decoration: none;

    transition: transform 0.25s ease;
}

.btn-back-to-insights span {
    font-size: 17px;
    line-height: 1;
}

.btn-back-to-insights:hover {
    transform: translateX(-5px);
}


/* =========================================================
   20. RELATED INSIGHTS SECTION
   ========================================================= */

.related-insights-section {
    width: 100%;

    padding: 110px 0 130px;

    background: #ebe7df;
}

.related-header {
    margin-bottom: 55px;
}

.related-header .about-page-tag {
    display: block;

    margin-bottom: 18px;

    
    font-size: 10px;
    font-weight: 500;

    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: #77736d;
}

.related-header .section-title {
    max-width: 700px;

    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    font-weight: 500;
    line-height: 1.08;

    letter-spacing: -0.04em;

    color: #18222d;
}


/* =========================================================
   21. RELATED GRID
   ========================================================= */

.related-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 28px;
}


/* =========================================================
   22. RELATED CARD
   ========================================================= */

.related-grid .portfolio-card-item {
    width: 100% !important;

    margin: 0;

    padding: 0;
}

.related-grid .portfolio-card-link {
    display: block;

    color: inherit;
    text-decoration: none;
}


/* =========================================================
   23. RELATED IMAGE
   ========================================================= */

.related-grid .portfolio-image-frame {
    position: relative;

    width: 100%;
    height: auto !important;

    aspect-ratio: 4 / 5;

    overflow: hidden;

    background: #d9d4cb;
}

.related-grid .portfolio-thumb {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition:
        transform 0.8s cubic-bezier(.2, .65, .2, 1);
}

.related-grid .portfolio-card-link:hover .portfolio-thumb {
    transform: scale(1.045);
}


/* =========================================================
   24. RELATED CARD DETAILS
   ========================================================= */

.related-grid .portfolio-card-details {
    padding: 20px 0 0;
}

.related-grid .portfolio-card-details span {
    font-family: "IBM Plex Mono", monospace !important;
    font-size: 9px !important;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    color: #77736d !important;
}

.related-grid .portfolio-project-title {
    margin: 8px 0 0;

    font-family: "Manrope", sans-serif;

    font-size: 21px !important;
    font-weight: 500;

    line-height: 1.25;

    letter-spacing: -0.025em;

    color: #18222d;
}


/* =========================================================
   25. TABLET
   ========================================================= */

@media (max-width: 1024px) {

    .single-insight-main .container {
        width: min(100% - 60px, 900px);
    }

    .single-insight-main .container-wide {
        width: calc(100% - 40px);
    }

    .single-insight-main .container-narrow {
        width: min(100% - 60px, 760px);
    }

    .insight-single-header {
        padding: 80px 0 65px;
    }

    .insight-single-title {
        font-size: clamp(42px, 7vw, 65px);
    }

    .insight-featured-banner-wrap {
        padding-bottom: 75px;
    }

    .insight-article-content-wrap {
        padding-bottom: 75px;
    }

    .related-insights-section {
        padding: 85px 0 100px;
    }

    .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* =========================================================
   26. MOBILE
   ========================================================= */

@media (max-width: 767px) {

    .single-insight-main .container,
    .single-insight-main .container-narrow {
        width: calc(100% - 40px);
    }

    .single-insight-main .container-wide {
        width: calc(100% - 30px);
    }


    /* Hero */

    .insight-single-header {
        padding: 60px 0 50px;
    }

    .insight-meta-top {
        margin-bottom: 22px;

        gap: 8px;

        font-size: 8px;
    }

    .insight-single-title {
        margin-bottom: 22px;

        font-size: clamp(36px, 10vw, 52px);
        line-height: 1.06;

        letter-spacing: -0.045em;
    }

    .insight-single-excerpt {
        margin-bottom: 32px;

        font-size: 16px;
        line-height: 1.7;
    }


    /* Featured image */

    .insight-featured-banner-wrap {
        padding-bottom: 60px;
    }

    .insight-featured-img {
        min-height: 380px;

        object-fit: cover;
    }


    /* Article */

    .insight-article-content-wrap {
        padding-top: 0;
        padding-bottom: 65px;
    }

    .insight-content-body {
        font-size: 16px;
        line-height: 1.85;
    }

    .insight-content-body p {
        margin-bottom: 24px;
    }

    .insight-content-body h2 {
        margin-top: 55px;
        margin-bottom: 20px;

        font-size: 32px;
    }

    .insight-content-body h3 {
        margin-top: 40px;

        font-size: 25px;
    }

    .insight-content-body blockquote {
        margin: 40px 0;

        padding-left: 20px;

        font-size: 21px;
    }


    /* Footer */

    .insight-article-footer {
        align-items: flex-start;
        flex-direction: column;

        margin-top: 65px;
        padding-top: 25px;

        gap: 25px;
    }


    /* Related */

    .related-insights-section {
        padding: 70px 0 80px;
    }

    .related-header {
        margin-bottom: 40px;
    }

    .related-header .section-title {
        font-size: 34px;
    }

    .related-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .related-grid .portfolio-image-frame {
        aspect-ratio: 4 / 5;
    }

}


/* =========================================================
   27. SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .insight-single-header {
        padding-top: 45px;
    }

    .insight-single-title {
        font-size: 35px;
    }

    .insight-single-excerpt {
        font-size: 15px;
    }

    .insight-featured-img {
        min-height: 300px;
    }

    .insight-content-body {
        font-size: 15px;
    }

    .insight-content-body h2 {
        font-size: 29px;
    }

    .related-header .section-title {
        font-size: 30px;
    }

}