/* =====================================================
   BLOG DETAILS SECTION
===================================================== */

.blog-details-section {
    width: 100%;
    background: #ffffff;
    padding: 35px 0 20px;
}

.blog-details-wrapper {
    width: 100%;
}


/* =====================================================
   LARGE BLOG IMAGE
===================================================== */

.blog-image {
    width: 100%;
    margin-bottom: 25px;
    overflow: hidden;
}

.blog-image img {
    display: block;

    width: 100%;
    height: 500px;

    object-fit: cover;
    object-position: center;

    border-radius: 0;
}


/* =====================================================
   BLOG CONTENT
===================================================== */

.blog-content {
    width: 100%;
    max-width: 100%;
}


/* =====================================================
   DATE
===================================================== */

.blog-meta {
    margin-bottom: 12px;
}

.blog-meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 400;

    color: #666666;
}

.blog-meta i {
    font-size: 14px;
    color: #0b2d62;
}


/* =====================================================
   MAIN HEADING
===================================================== */

.blog-content h2 {
    margin: 0 0 18px;

    max-width: 950px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 32px;
    line-height: 1.35;
    font-weight: 700;

    color: #111111;
}


/* =====================================================
   INTRODUCTION PARAGRAPH
===================================================== */

.blog-content > p {
    max-width: 100%;

    margin: 0;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.65;
    font-weight: 400;

    color: #111111;

    letter-spacing: 0.2px;
    text-align: justify;
}


/* =====================================================
   KEY HIGHLIGHTS
===================================================== */

.key-highlights-section {
    width: 100%;
    background: #ffffff;

    padding: 15px 0 10px;
}

.key-highlights-content {
    width: 100%;
}


/* Heading */

.key-highlights-title {
    display: inline-block;

    margin: 0 0 17px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;

    color: #111111;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}


/* Paragraph */

.key-highlights-content p {
    margin: 0 0 16px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;

    color: #111111;

    letter-spacing: 0.2px;
    text-align: justify;
}


/* Bold */

.key-highlights-content strong {
    font-weight: 700;
    color: #080808;
}


/* =====================================================
   RESEARCHERS SECTION
===================================================== */

.researchers-section {
    width: 100%;
    background: #ffffff;

    padding: 5px 0 30px;
}

.researchers-content {
    width: 100%;
}


/* Heading */

.researchers-title {
    display: inline-block;

    margin: 0 0 17px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;

    color: #111111;

    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}


/* Paragraphs */

.researchers-content p {
    margin: 0 0 16px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;

    color: #111111;

    letter-spacing: 0.2px;
    text-align: justify;
}


/* Quote */

.researchers-quote {
    font-weight: 700 !important;
    font-style: italic;

    line-height: 1.55 !important;
}


/* Looking Ahead */

.looking-ahead-title {
    margin: 0 0 17px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 400;

    color: #111111;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .blog-details-section {
        padding: 25px 0 20px;
    }

    .blog-image img {
        height: 400px;
    }

    .blog-content h2 {
        font-size: 28px;
    }

    .blog-content > p,
    .key-highlights-content p,
    .researchers-content p {
        font-size: 15.5px;
        line-height: 1.65;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .blog-details-section {
        padding: 20px 0 20px;
    }

    /* Large Image */

    .blog-image {
        margin-bottom: 20px;
    }

    .blog-image img {
        width: 100%;
        height: 280px;

        object-fit: cover;
    }


    /* Date */

    .blog-meta {
        margin-bottom: 10px;
    }

    .blog-meta span {
        font-size: 13px;
    }


    /* Heading */

    .blog-content h2 {
        font-size: 24px;
        line-height: 1.4;

        margin-bottom: 15px;
    }


    /* Paragraph */

    .blog-content > p {
        font-size: 15px;
        line-height: 1.65;

        text-align: left;
    }


    /* Highlights */

    .key-highlights-section {
        padding: 10px 0;
    }

    .key-highlights-title,
    .researchers-title {
        font-size: 15px;
    }

    .key-highlights-content p,
    .researchers-content p {
        font-size: 15px;
        line-height: 1.65;

        text-align: left;
    }


    /* Quote */

    .researchers-quote {
        font-size: 15px !important;
        line-height: 1.6 !important;

        text-align: left !important;
    }
}


/* =====================================================
   SMALL MOBILE
===================================================== */

@media (max-width: 480px) {

    .blog-image img {
        height: 220px;
    }

    .blog-content h2 {
        font-size: 21px;
    }

    .blog-content > p,
    .key-highlights-content p,
    .researchers-content p {
        font-size: 14px;
        line-height: 1.65;
    }

    .blog-meta span {
        font-size: 12.5px;
    }

    .key-highlights-title,
    .researchers-title,
    .looking-ahead-title {
        font-size: 14.5px;
    }
}