.rsNavbar {
    background-color: unset;
}

.blogSpotlight,
.blogTopics,
.blogGridSection,
.blogCta {
    position: relative;
}

.blogSpotlight {
    padding: 24px 0 34px;
}

.blogSpotlightCard {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f4f9ff 0%, #ffffff 56%, #edf4ff 100%);
    border: 1px solid #d7e7fb;
    border-radius: 32px;
    padding: 42px;
    box-shadow: 0 26px 60px rgba(4, 28, 51, 0.08);
}

.blogSpotlightCard::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(13, 109, 253, 0.18) 0%, rgba(13, 109, 253, 0) 70%);
}

.blogLabel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border-radius: 999px;
    background: #e9f3ff;
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blogSpotlightCard h2 {
    font-size: 44px;
    line-height: 1.18;
    color: var(--primary-dark-color);
    margin: 22px 0 18px;
}

.blogIntro,
.blogSectionHead p,
.blogCard p,
.blogCtaCopy p {
    color: #56667f;
    font-size: 16px;
    line-height: 1.9;
}

.blogMetaList,
.blogKeyPoints {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.blogMetaList {
    margin: 0 0 20px;
}

.blogMetaList span,
.blogCardMeta span {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid #dbe6f5;
    color: #36506f;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.blogKeyPoints span {
    padding: 12px 16px;
    border-radius: 18px;
    background: rgba(4, 28, 51, 0.06);
    color: var(--primary-dark-color);
    font-weight: 600;
}

.blogBtn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 24px;
    border-radius: 999px;
    background: linear-gradient(135deg, #0d6dfd 0%, #0a55c6 100%);
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    border: 1px solid transparent;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    box-shadow: 0 18px 30px rgba(13, 109, 253, 0.24);
}

.blogBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 24px 36px rgba(13, 109, 253, 0.28);
}

.blogBtn img {
    width: 16px;
    height: 16px;
}

.blogSpotlightMedia {
    position: relative;
    padding-left: 32px;
}

.blogSpotlightMedia img {
    display: block;
    width: 100%;
    min-height: 420px;
    object-fit: cover;
    border-radius: 28px;
    box-shadow: 0 24px 50px rgba(4, 28, 51, 0.14);
}

.blogMetric {
    position: absolute;
    left: 0;
    bottom: 28px;
    max-width: 220px;
    padding: 22px 24px;
    border-radius: 24px;
    background: var(--primary-dark-color);
    color: #fff;
    box-shadow: 0 20px 40px rgba(4, 28, 51, 0.28);
}

.blogMetric strong {
    display: block;
    font-family: "Lato", sans-serif;
    font-size: 28px;
    line-height: 1.1;
    margin-bottom: 6px;
}

.blogMetric span {
    display: block;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.86);
}

.blogTopics {
    padding: 6px 0 12px;
}

.blogSectionHead {
    max-width: 760px;
    margin: 0 auto 28px;
    text-align: center;
}

.blogSectionHead h2,
.blogCtaCopy h2 {
    font-size: 40px;
    line-height: 1.2;
    color: var(--primary-dark-color);
    margin-top: 16px;
}

.blogPills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.blogPills span {
    padding: 13px 18px;
    border-radius: 999px;
    border: 1px solid #dbe6f5;
    background: #fff;
    color: #173a64;
    font-weight: 700;
    box-shadow: 0 12px 22px rgba(4, 28, 51, 0.05);
}

.blogGridSection {
    padding: 10px 0 60px;
}

.blogCard {
    height: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dfe9f7;
    border-radius: 26px;
    box-shadow: 0 22px 40px rgba(4, 28, 51, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blogCard:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 48px rgba(4, 28, 51, 0.11);
}

.blogCardMedia {
    display: block;
    height: 250px;
    overflow: hidden;
}

.blogCardMedia img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blogCard:hover .blogCardMedia img {
    transform: scale(1.04);
}

.blogCardBody {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 26px;
}

.blogCardMeta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.blogCard h3 {
    margin: 18px 0 14px;
    font-size: 24px;
    line-height: 1.35;
    color: var(--primary-dark-color);
}

.blogCard h3 a {
    color: inherit;
    text-decoration: none;
}

.blogCard p {
    margin-bottom: 22px;
}

.blogCardLink {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    margin-top: auto;
}

.blogCardLink img {
    width: 16px;
    height: 16px;
}

.blogCta {
    padding: 8px 0 60px;
}

.blogCtaCard {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 38px 40px;
    border-radius: 30px;
    background: linear-gradient(135deg, #041c33 0%, #0d6dfd 100%);
    box-shadow: 0 28px 56px rgba(4, 28, 51, 0.18);
}

.blogCtaCopy .blogLabel {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
}

.blogCtaCopy h2,
.blogCtaCopy p {
    color: #fff;
}

.blogCtaCopy p {
    max-width: 720px;
    margin-top: 16px;
}

.blogCtaActions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.blogBtnLight {
    background: #fff;
    color: var(--primary-dark-color);
    box-shadow: none;
}

.blogBtnLight:hover {
    box-shadow: 0 20px 34px rgba(255, 255, 255, 0.2);
}

.blogBtnOutline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: none;
}

@media (max-width: 1199px) {
    .blogSpotlightCard h2,
    .blogSectionHead h2,
    .blogCtaCopy h2 {
        font-size: 36px;
    }
}

@media (max-width: 991px) {
    .blogSpotlightCard {
        padding: 30px;
    }

    .blogSpotlightMedia {
        padding-left: 0;
    }

    .blogSpotlightMedia img {
        min-height: 320px;
    }

    .blogMetric {
        left: 18px;
        bottom: 18px;
    }

    .blogCtaCard {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .blogSpotlight {
        padding-top: 10px;
    }

    .blogSpotlightCard,
    .blogCtaCard {
        padding: 24px;
        border-radius: 24px;
    }

    .blogSpotlightCard h2,
    .blogSectionHead h2,
    .blogCtaCopy h2 {
        font-size: 30px;
    }

    .blogCardBody {
        padding: 22px;
    }

    .blogCard h3 {
        font-size: 22px;
    }
}

@media (max-width: 575px) {
    .blogSpotlightCard h2,
    .blogSectionHead h2,
    .blogCtaCopy h2 {
        font-size: 26px;
    }

    .blogMetaList,
    .blogKeyPoints,
    .blogPills,
    .blogCtaActions {
        gap: 10px;
    }

    .blogMetric {
        position: static;
        margin-top: 16px;
        max-width: 100%;
    }

    .blogSpotlightMedia img {
        min-height: 240px;
    }

    .blogCardMedia {
        height: 220px;
    }

    .blogBtn,
    .blogBtnLight,
    .blogBtnOutline {
        width: 100%;
    }
}
