/* =========================================
   TRAINERSLINK BLOG
========================================= */

.trainers-blog-container {
    width: 100%;
    max-width: 1170px;

    margin: 0 auto;

    padding-left: 15px;
    padding-right: 15px;
}


/* =========================================
   COMMON BADGE
========================================= */

.trainers-blog-badge {
    display: inline-flex;
    align-items: center;

    padding: 10px 13px;

    background: #e9f1ff;
    color: #075bd8;

    border-radius: 20px;

    font-size: 10px;
    font-weight: 700;

    line-height: 1;
    letter-spacing: .7px;
}


/* =========================================
   PAGE HEADER
========================================= */

.trainers-blog-header {
    background: #f5f8fd;

    border-top: 1px solid #e3e9f1;
    border-bottom: 1px solid #dfe6ef;

    padding: 56px 0 58px;
}


.trainers-blog-header .trainers-blog-badge {
    margin-bottom: 18px;
}


.trainers-blog-header h1 {
    margin: 0 0 18px;

    color: #111827;

    font-size: 44px;
    font-weight: 700;

    line-height: 1.15;
    letter-spacing: -1.2px;
}


.trainers-blog-header p {
    margin: 0;

    color: #5e7290;

    font-size: 15px;
    line-height: 1.7;
}


/* =========================================
   ARTICLES SECTION
========================================= */

.trainers-blog-articles {
    background: #ffffff;

    padding: 75px 0 78px;
}


/* =========================================
   SECTION HEADING
========================================= */

.trainers-blog-section-heading {
    margin-bottom: 43px;

    text-align: center;
}


.trainers-blog-section-heading .trainers-blog-badge {
    margin-bottom: 14px;
}


.trainers-blog-section-heading h2 {
    margin: 0 0 12px;

    color: #111827;

    font-size: 36px;
    font-weight: 700;

    line-height: 1.25;
    letter-spacing: -.8px;
}


.trainers-blog-section-heading p {
    margin: 0;

    color: #617594;

    font-size: 14px;
    line-height: 1.6;
}


/* =========================================
   BLOG GRID
========================================= */

.trainers-blog-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 22px;
}


/* =========================================
   BLOG CARD
========================================= */

.trainers-blog-card {
    display: flex;
    flex-direction: column;

    min-width: 0;

    padding: 24px 25px 27px;

    background: #ffffff;

    border: 1px solid #dfe7f1;

    border-radius: 17px;

    box-shadow: 0 7px 24px rgba(25, 54, 91, .035);
}


/* =========================================
   ARTICLE IMAGE / PREVIEW
========================================= */

.trainers-blog-image {
    width: 100%;

    padding: 11px 12px;

    margin-bottom: 20px;

    background: #eaf1fc;

    border-radius: 12px;
}


/* Blue top strip */

.trainers-blog-image-top {
    display: flex;
    align-items: center;
    justify-content: space-between;

    height: 34px;

    padding: 0 12px;

    background: #1764e8;

    color: #ffffff;
}


.trainers-blog-image-top span {
    font-size: 7px;
    font-weight: 700;

    letter-spacing: .2px;
}


.trainers-blog-image-top strong {
    font-size: 9px;
    font-weight: 700;
}


/* Image body */

.trainers-blog-image-content {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 112px;

    padding: 13px 12px;

    background: #ffffff;
}


/* Text box */

.trainers-blog-image-text {
    width: calc(100% - 76px);

    padding: 10px;

    background: #f5f7fa;

    border-radius: 7px;
}


.trainers-blog-image-text small {
    display: block;

    margin-bottom: 7px;

    color: #075bd8;

    font-size: 6px;
    font-weight: 700;

    line-height: 1;
}


.trainers-blog-image-text h3 {
    margin: 0;

    color: #111827;

    font-size: 13px;
    font-weight: 700;

    line-height: 1.2;
}


/* =========================================
   TRAINER ICON
========================================= */

.trainers-blog-trainer-icon {
    position: absolute;

    right: 6px;
    top: 19px;

    width: 62px;
    height: 74px;
}


/* Head / board */

.trainers-blog-trainer-icon span {
    position: absolute;

    top: 0;
    left: 11px;

    width: 35px;
    height: 25px;

    border: 1px solid #1764e8;

    border-radius: 5px;

    background: #ffffff;

    z-index: 2;
}


/* Screen line */

.trainers-blog-trainer-icon span::after {
    content: "";

    position: absolute;

    left: 8px;
    right: 8px;
    bottom: -7px;

    height: 2px;

    background: #1764e8;

    box-shadow:
        0 5px 0 #1764e8,
        0 10px 0 #1764e8;
}


/* Blue circle background */

.trainers-blog-trainer-icon::before {
    content: "";

    position: absolute;

    right: 0;
    top: 15px;

    width: 54px;
    height: 54px;

    background: #dce8fb;

    border-radius: 50%;
}


/* Person head */

.trainers-blog-trainer-icon i {
    position: absolute;

    left: 25px;
    top: 49px;

    width: 12px;
    height: 12px;

    background: #1764e8;

    border-radius: 50%;

    z-index: 3;
}


/* Person body */

.trainers-blog-trainer-icon b {
    position: absolute;

    left: 30px;
    top: 60px;

    width: 2px;
    height: 14px;

    background: #1764e8;

    z-index: 3;
}


.trainers-blog-trainer-icon b::before,
.trainers-blog-trainer-icon b::after {
    content: "";

    position: absolute;

    top: 8px;

    width: 15px;
    height: 2px;

    background: #1764e8;
}


.trainers-blog-trainer-icon b::before {
    right: 0;

    transform: rotate(-35deg);
    transform-origin: right center;
}


.trainers-blog-trainer-icon b::after {
    left: 0;

    transform: rotate(35deg);
    transform-origin: left center;
}


/* =========================================
   CARD META
========================================= */

.trainers-blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 21px;
}


.trainers-blog-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 41px;
    height: 41px;

    background: #eaf1ff;

    color: #1764e8;

    border-radius: 11px;

    font-size: 15px;
    font-weight: 700;
}


.trainers-blog-category {
    display: inline-flex;
    align-items: center;

    min-height: 30px;

    padding: 7px 12px;

    background: #edf3fd;

    color: #075bd8;

    border-radius: 20px;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: .4px;
}


/* =========================================
   CARD CONTENT
========================================= */

.trainers-blog-card>h2 {
    margin: 0 0 11px;

    color: #111827;

    font-size: 20px;
    font-weight: 700;

    line-height: 1.25;
}


.trainers-blog-card>p {
    margin: 0;

    color: #5e7393;

    font-size: 14px;

    line-height: 1.65;
}


/* =========================================
   READ ARTICLE
========================================= */

.trainers-blog-read {
    display: inline-flex;

    margin-top: auto;
    padding-top: 23px;

    color: #075bd8;

    font-size: 13px;
    font-weight: 700;

    line-height: 1;

    text-decoration: none;

    transition: color .2s ease;
}


.trainers-blog-read:hover {
    color: #0b4db2;
}


/* =========================================
   CARD HOVER
========================================= */

.trainers-blog-card {
    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.trainers-blog-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 12px 32px rgba(25, 54, 91, .08);
}


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

@media (max-width: 991.98px) {

    .trainers-blog-header {
        padding: 50px 0;
    }


    .trainers-blog-header h1 {
        font-size: 38px;
    }


    .trainers-blog-articles {
        padding: 60px 0;
    }


    .trainers-blog-section-heading h2 {
        font-size: 32px;
    }


    .trainers-blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


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

@media (max-width: 767.98px) {

    .trainers-blog-header {
        padding: 38px 0 40px;
    }


    .trainers-blog-header h1 {
        font-size: 30px;

        letter-spacing: -.5px;
    }


    .trainers-blog-header p {
        font-size: 14px;
    }


    .trainers-blog-articles {
        padding: 45px 0 55px;
    }


    .trainers-blog-section-heading {
        margin-bottom: 30px;
    }


    .trainers-blog-section-heading h2 {
        font-size: 27px;

        letter-spacing: -.4px;
    }


    .trainers-blog-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }


    .trainers-blog-card {
        padding: 20px;
    }


    .trainers-blog-card>h2 {
        font-size: 19px;
    }


    .trainers-blog-card>p {
        font-size: 13px;
    }

}


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

@media (max-width: 575.98px) {

    .trainers-blog-header {
        padding: 32px 0 35px;
    }


    .trainers-blog-header h1 {
        font-size: 27px;
    }


    .trainers-blog-section-heading h2 {
        font-size: 24px;
    }


    .trainers-blog-image-text h3 {
        font-size: 12px;
    }


    .trainers-blog-card-meta {
        margin-bottom: 17px;
    }


    .trainers-blog-number {
        width: 38px;
        height: 38px;

        font-size: 14px;
    }


    .trainers-blog-category {
        font-size: 9px;
    }

}

/* =========================================
   COMMON CONTAINER
========================================= */

.tl-container {
    width: 100%;
    max-width: 1190px;

    margin: 0 auto;

    padding-left: 15px;
    padding-right: 15px;
}


/* =========================================
   BLOG DETAIL HEADER
========================================= */

.blog-detail-header {
    background: #f5f8fd;

    border-top: 1px solid #e4eaf2;
    border-bottom: 1px solid #dfe6ef;

    padding: 58px 0 58px;
}


.blog-detail-badge {
    display: inline-flex;

    align-items: center;

    padding: 10px 13px;

    margin-bottom: 18px;

    background: #eaf2ff;

    border-radius: 22px;

    color: #075bd8;

    font-size: 11px;
    font-weight: 800;

    letter-spacing: .7px;
}


.blog-detail-header h1 {
    max-width: 1100px;

    margin: 0 0 18px;

    color: #101827;

    font-size: 47px;
    font-weight: 750;

    line-height: 1.16;

    letter-spacing: -1.3px;
}


.blog-detail-header p {
    max-width: 760px;

    margin: 0;

    color: #607493;

    font-size: 15px;

    line-height: 1.8;
}


/* =========================================
   ARTICLE AREA
========================================= */

.blog-article {
    background: #ffffff;

    padding: 68px 0 75px;
}


.blog-article-container {
    width: 100%;

    max-width: 866px;

    margin: 0 auto;
}


/* =========================================
   BLOG COVER
========================================= */

.blog-cover {
    width: 100%;

    height: 372px;

    padding: 0 32px;

    background: #ffffff;

    border: 1px solid #e2e9f2;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 16px 35px rgba(29, 58, 93, .08);
}


/* Blue top bar */

.blog-cover-top {
    height: 68px;

    margin: 0;

    padding: 0 32px;

    background: #1764e8;

    display: flex;

    align-items: center;

    justify-content: space-between;

    color: #ffffff;

    font-size: 20px;

    font-weight: 800;
}


/* Cover inner */

.blog-cover-content {
    height: 304px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    padding: 34px 32px;
}


/* Cover text box */

.blog-cover-text {
    width: 66%;

    min-height: 250px;

    padding: 24px 25px;

    background: #f5f7fa;

    border-radius: 17px;
}


.blog-cover-category {
    margin-bottom: 23px;

    color: #174b96;

    font-size: 20px;

    font-weight: 800;

    letter-spacing: .3px;
}


.blog-cover-text h2 {
    margin: 0;

    color: #202631;

    font-size: 36px;

    font-weight: 800;

    line-height: 1.2;
}


/* =========================================
   SIMPLE COVER ILLUSTRATION
========================================= */

.blog-cover-illustration {
    position: relative;

    width: 190px;
    height: 230px;

    margin-left: 25px;
}


/* Decorative circle */

.blog-cover-illustration::before {
    content: "";

    position: absolute;

    width: 130px;
    height: 130px;

    right: 0;
    top: 25px;

    background: #dce8fc;

    border-radius: 50%;
}


.blog-cover-illustration::after {
    content: "";

    position: absolute;

    width: 105px;
    height: 105px;

    right: 15px;
    top: 62px;

    background: #dce8fc;

    border-radius: 50%;
}


/* Presentation board */

.presentation-board {
    position: absolute;

    z-index: 3;

    width: 94px;
    height: 58px;

    right: 52px;
    top: 18px;

    background: #ffffff;

    border: 4px solid #1764e8;

    border-radius: 9px;
}


/* Presentation lines */

.presentation-line {
    position: absolute;

    z-index: 4;

    height: 7px;

    background: #1764e8;
}

.line-one {
    width: 60px;

    right: 67px;
    top: 87px;
}

.line-two {
    width: 32px;

    right: 82px;
    top: 106px;
}


/* Person */

.person-head {
    position: absolute;

    z-index: 5;

    width: 35px;
    height: 35px;

    right: 78px;
    top: 140px;

    background: #1764e8;

    border-radius: 50%;
}


.person-body {
    position: absolute;

    z-index: 5;

    width: 5px;
    height: 58px;

    right: 93px;
    top: 174px;

    background: #1764e8;
}


/* Arms */

.person-arm {
    position: absolute;

    z-index: 5;

    width: 48px;
    height: 4px;

    background: #1764e8;

    top: 190px;
}

.arm-left {
    right: 95px;

    transform: rotate(-35deg);

    transform-origin: right center;
}

.arm-right {
    right: 48px;

    transform: rotate(35deg);

    transform-origin: left center;
}


/* =========================================
   ARTICLE CONTENT
========================================= */

.blog-content {
    margin-top: 30px;
}


/* Category */

.blog-content-category {
    display: inline-flex;

    padding: 10px 13px;

    margin-bottom: 21px;

    background: #eaf2ff;

    border-radius: 20px;

    color: #075bd8;

    font-size: 11px;

    font-weight: 800;

    letter-spacing: .5px;
}


/* Article title */

.blog-content>h1 {
    margin: 0 0 18px;

    color: #101827;

    font-size: 39px;

    font-weight: 750;

    line-height: 1.18;

    letter-spacing: -.8px;
}


/* Intro */

.blog-intro {
    margin: 0 0 38px;

    color: #607493;

    font-size: 15px;

    line-height: 1.85;
}


/* Sections */

.blog-content section {
    margin-bottom: 37px;
}


.blog-content section h2 {
    margin: 0 0 25px;

    color: #111827;

    font-size: 24px;

    font-weight: 750;

    line-height: 1.3;
}


.blog-content section p {
    margin: 0;

    color: #607493;

    font-size: 16px;

    line-height: 1.8;
}


/* =========================================
   BACK BUTTON
========================================= */

.back-blog-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 54px;

    padding: 0 21px;

    background: #1764e8;

    border-radius: 10px;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: .2s ease;
}


.back-blog-btn:hover {
    background: #0d56cf;

    color: #ffffff;
}


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

@media (max-width: 991.98px) {

    .blog-detail-header {
        padding: 50px 0;
    }

    .blog-detail-header h1 {
        font-size: 39px;
    }

    .blog-article {
        padding-top: 55px;
    }

    .blog-article-container {
        max-width: 760px;
    }

    .blog-cover {
        height: 350px;
    }

    .blog-cover-content {
        height: 282px;
    }

    .blog-cover-text h2 {
        font-size: 31px;
    }

    .blog-content>h1 {
        font-size: 34px;
    }
}


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

@media (max-width: 767.98px) {

    .blog-detail-header {
        padding: 42px 0 40px;
    }

    .blog-detail-badge {
        margin-bottom: 15px;

        font-size: 10px;
    }

    .blog-detail-header h1 {
        font-size: 30px;

        letter-spacing: -.6px;
    }

    .blog-detail-header p {
        font-size: 14px;

        line-height: 1.7;
    }


    .blog-article {
        padding: 35px 0 55px;
    }


    .blog-article-container {
        max-width: 100%;

        padding: 0 15px;
    }


    /* Cover */

    .blog-cover {
        height: auto;

        min-height: 290px;

        padding: 0 15px;

        border-radius: 15px;
    }


    .blog-cover-top {
        height: 55px;

        padding: 0 18px;

        font-size: 14px;
    }


    .blog-cover-content {
        height: auto;

        min-height: 235px;

        padding: 20px 16px;
    }


    .blog-cover-text {
        width: 100%;

        min-height: 190px;

        padding: 19px;

        display: flex;

        flex-direction: column;

        justify-content: center;
    }


    .blog-cover-category {
        margin-bottom: 15px;

        font-size: 14px;
    }


    .blog-cover-text h2 {
        font-size: 25px;
    }


    /* Hide illustration on small screens */

    .blog-cover-illustration {
        display: none;
    }


    /* Content */

    .blog-content {
        margin-top: 25px;
    }


    .blog-content-category {
        margin-bottom: 17px;

        font-size: 10px;
    }


    .blog-content>h1 {
        font-size: 29px;

        letter-spacing: -.5px;

        line-height: 1.2;
    }


    .blog-intro {
        margin-bottom: 32px;

        font-size: 14px;
    }


    .blog-content section {
        margin-bottom: 30px;
    }


    .blog-content section h2 {
        margin-bottom: 17px;

        font-size: 21px;
    }


    .blog-content section p {
        font-size: 14px;

        line-height: 1.75;
    }


    .back-blog-btn {
        min-height: 50px;

        font-size: 13px;
    }

}


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

@media (max-width: 480px) {

    .blog-detail-header h1 {
        font-size: 27px;
    }

    .blog-cover-text h2 {
        font-size: 22px;
    }

    .blog-content>h1 {
        font-size: 26px;
    }

}