/* =========================================================
   SQUAD ASSOCIATES
   BLOG / INSIGHTS PAGE
   Brand: Dark Navy + White
========================================================= */


/* =========================================================
   PAGE HERO
========================================================= */

.squad-page-hero {
    position: relative;
    overflow: hidden;
    background: #050538;
    color: #ffffff;
    padding: 110px 0 90px;
}

.squad-page-hero::before {
    content: "";
    position: absolute;
    width: 420px;
    height: 420px;
    top: -180px;
    right: -120px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.squad-page-hero::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -180px;
    left: -100px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 50%;
}

.squad-page-hero .container {
    position: relative;
    z-index: 2;
}


/* =========================================================
   HERO CONTENT
========================================================= */

.squad-page-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.squad-page-hero-content .squad-section-label {
    display: inline-block;
    margin-bottom: 20px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.squad-page-hero-content h1 {
    margin: 0 auto 22px;
    max-width: 850px;
    color: #ffffff;
    font-size: 58px;
    line-height: 1.1;
    font-weight: 700;
    letter-spacing: -1.5px;
}

.squad-page-hero-content > p {
    max-width: 720px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 17px;
    line-height: 1.8;
}


/* =========================================================
   HERO BREADCRUMB
========================================================= */

.squad-vacancy-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.squad-vacancy-breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.squad-vacancy-breadcrumb a:hover {
    opacity: 0.7;
}

.squad-vacancy-breadcrumb span {
    color: rgba(255, 255, 255, 0.5);
}


/* =========================================================
   BLOG AREA
========================================================= */

.ins-blog-area {
    position: relative;
    background: #ffffff;
    padding: 120px 0 100px;
}


/* =========================================================
   SECTION INTRO
========================================================= */

.oit-section-box {
    position: relative;
}

.oit-section-subtitle {
    display: inline-block;
    color: #050538;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.6px;
}

.oit-section-title {
    margin: 0;
    color: #050538;
    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.8px;
}

.oit-section-box > p {
    max-width: 700px;
    margin-right: auto;
    margin-left: auto;
    color: #64748b;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   BLOG GRID
========================================================= */

.ins-blog-area .row {
    position: relative;
}


/* =========================================================
   BLOG CARD
========================================================= */

.ins-blog-item {
    position: relative;
    height: 100%;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}

.ins-blog-item:hover {
    transform: translateY(-7px);
    border-color: rgba(5, 5, 56, 0.18);
    box-shadow: 0 20px 50px rgba(5, 5, 56, 0.10);
}


/* =========================================================
   BLOG IMAGE
========================================================= */

.ins-blog-thumb {
    position: relative;
    width: 100%;
    height: 245px;
    overflow: hidden;
    background: #f1f3f7;
}

.ins-blog-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform 0.5s ease;
}

.ins-blog-item:hover .ins-blog-thumb img {
    transform: scale(1.05);
}


/* =========================================================
   IMAGE OVERLAY
========================================================= */

.ins-blog-thumb::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to bottom,
        rgba(5, 5, 56, 0),
        rgba(5, 5, 56, 0.15)
    );

    pointer-events: none;
}


/* =========================================================
   BLOG CONTENT
========================================================= */

.ins-blog-content {
    padding: 28px 28px 30px;
}


/* =========================================================
   CATEGORY
========================================================= */

.ins-blog-meta {
    display: flex;
    align-items: center;
}

.ins-blog-meta span {
    display: inline-flex;
    align-items: center;

    padding: 7px 12px;

    background: rgba(5, 5, 56, 0.06);
    border-radius: 30px;

    color: #050538;
    font-size: 11px;
    line-height: 1;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 0.8px;
}


/* =========================================================
   BLOG TITLE
========================================================= */

.ins-blog-content .common-title {
    margin-bottom: 12px;
    color: #050538;
    font-size: 22px;
    line-height: 1.35;
    font-weight: 700;
}

.ins-blog-content .common-title a {
    color: #050538;
    text-decoration: none;
}


/* =========================================================
   TITLE HOVER LINE
========================================================= */

.ins-blog-content .common-title .border-line {
    position: relative;
}

.ins-blog-content .common-title .border-line::after {
    content: "";

    position: absolute;
    left: 0;
    bottom: -4px;

    width: 0;
    height: 2px;

    background: #050538;

    transition: width 0.3s ease;
}

.ins-blog-item:hover
.ins-blog-content .common-title .border-line::after {
    width: 100%;
}


/* =========================================================
   SUMMARY
========================================================= */

.ins-blog-content > p {
    margin-bottom: 22px;
    color: #64748b;
    font-size: 15px;
    line-height: 1.75;
}


/* =========================================================
   AUTHOR
========================================================= */

.ins-blog-author-wrap {
    display: flex;
    align-items: center;
    gap: 12px;

    padding-top: 20px;

    border-top: 1px solid #edf0f2;
}

.ins-blog-author-wrap .logo {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;

    overflow: hidden;
    border-radius: 50%;

    background: #f1f3f7;
}

.ins-blog-author-wrap .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ins-blog-author-info {
    min-width: 0;
}

.ins-blog-author-info .name {
    margin: 0 0 3px;

    color: #050538;
    font-size: 14px;
    line-height: 1.3;
    font-weight: 700;
}

.ins-blog-author-info span {
    color: #94a3b8;
    font-size: 12px;
    line-height: 1.4;
}


/* =========================================================
   EMPTY STATE
========================================================= */

.ins-blog-empty {
    padding: 70px 25px;

    text-align: center;

    border: 1px dashed #d9dee7;
    border-radius: 14px;

    background: #f8f9fb;
}

.ins-blog-empty i {
    display: block;
    margin-bottom: 15px;

    color: #050538;
    font-size: 42px;
}

.ins-blog-empty h3 {
    margin-bottom: 8px;

    color: #050538;
    font-size: 24px;
}

.ins-blog-empty p {
    margin: 0;
    color: #64748b;
}


/* =========================================================
   CAREER / CTA SECTION
========================================================= */

.squad-career-cta {
    position: relative;
    overflow: hidden;

    background: #050538;

    padding: 90px 0;
}

.squad-career-cta-inner {
    position: relative;
    z-index: 2;

    max-width: 760px;
    margin: 0 auto;
}

.squad-career-cta-inner .squad-section-label {
    display: inline-block;

    margin-bottom: 18px;

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.squad-career-cta-inner h2 {
    margin: 0 0 20px;

    color: #ffffff;

    font-size: 42px;
    line-height: 1.2;
    font-weight: 700;
}

.squad-career-cta-inner p {
    max-width: 650px;

    margin: 0 auto 30px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 16px;
    line-height: 1.8;
}


/* =========================================================
   CTA BUTTON
========================================================= */

.squad-career-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    min-height: 52px;
    padding: 0 28px;

    background: #ffffff;

    color: #050538;

    border: 1px solid #ffffff;
    border-radius: 5px;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease;
}

.squad-career-button:hover {
    background: transparent;
    color: #ffffff;
    transform: translateY(-2px);
}

.squad-career-button i {
    font-size: 13px;
}


/* =========================================================
   LARGE TABLETS
========================================================= */

@media (max-width: 1199px) {

    .squad-page-hero {
        padding: 95px 0 80px;
    }

    .squad-page-hero-content h1 {
        font-size: 50px;
    }

    .ins-blog-area {
        padding: 100px 0 80px;
    }

    .oit-section-title {
        font-size: 38px;
    }

    .ins-blog-thumb {
        height: 230px;
    }

}


/* =========================================================
   TABLETS
========================================================= */

@media (max-width: 991px) {

    .squad-page-hero {
        padding: 80px 0 70px;
    }

    .squad-page-hero-content h1 {
        font-size: 43px;
    }

    .squad-page-hero-content > p {
        font-size: 16px;
    }

    .ins-blog-area {
        padding: 85px 0 70px;
    }

    .oit-section-title {
        font-size: 34px;
    }

    .ins-blog-thumb {
        height: 240px;
    }

    .squad-career-cta {
        padding: 75px 0;
    }

    .squad-career-cta-inner h2 {
        font-size: 36px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .squad-page-hero {
        padding: 65px 0 60px;
    }

    .squad-page-hero-content {
        padding: 0 15px;
    }

    .squad-page-hero-content h1 {
        font-size: 34px;
        line-height: 1.2;
        letter-spacing: -0.7px;
    }

    .squad-page-hero-content > p {
        font-size: 15px;
        line-height: 1.7;
    }

    .squad-vacancy-breadcrumb {
        font-size: 13px;
    }

    .ins-blog-area {
        padding: 70px 0 55px;
    }

    .oit-section-box {
        margin-bottom: 45px !important;
    }

    .oit-section-title {
        font-size: 29px;
        line-height: 1.3;
    }

    .oit-section-box > p {
        font-size: 15px;
    }

    .ins-blog-thumb {
        height: 225px;
    }

    .ins-blog-content {
        padding: 23px;
    }

    .ins-blog-content .common-title {
        font-size: 21px;
    }

    .squad-career-cta {
        padding: 65px 20px;
    }

    .squad-career-cta-inner h2 {
        font-size: 30px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .squad-page-hero {
        padding: 55px 0 50px;
    }

    .squad-page-hero-content h1 {
        font-size: 29px;
    }

    .squad-page-hero-content > p {
        font-size: 14px;
    }

    .squad-vacancy-breadcrumb {
        gap: 8px;
        font-size: 12px;
    }

    .ins-blog-area {
        padding: 60px 0 45px;
    }

    .oit-section-title {
        font-size: 26px;
    }

    .ins-blog-thumb {
        height: 210px;
    }

    .ins-blog-content {
        padding: 20px;
    }

    .ins-blog-content .common-title {
        font-size: 20px;
    }

    .ins-blog-content > p {
        font-size: 14px;
    }

    .ins-blog-author-wrap .logo {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .squad-career-cta-inner h2 {
        font-size: 27px;
    }

    .squad-career-cta-inner p {
        font-size: 14px;
    }

    .squad-career-button {
        width: 100%;
    }

}