/* ── Blogs listing hero (gradient + text left / image right) ─────── */
.blogs-hero-banner.hero-banner.cl-banner-inner,
section.blogs-hero-banner {
    background: linear-gradient(90deg, #005590 0%, #016EAF 50%, #007DD3 100%) !important;
    background-image: linear-gradient(90deg, #005590 0%, #016EAF 50%, #007DD3 100%) !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    min-height: auto;
    padding-top: 48px !important;
    padding-bottom: 48px !important;
}
.js-blog-home-sections
{
    padding-top: 24px;
}
.blogs-hero-banner__inner {
    position: relative;
    z-index: 1;
    width: 100%;
}

.blogs-hero-banner__media {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blogs-hero-banner__img {
    display: block;
    width: 100%;
    max-width: 504px;
    height: auto;
    max-height: 336px;
    object-fit: contain;
}

.blogs-hero-banner__content {
    max-width: 90%;
}

.blogs-hero-banner__content .display-4 {
    font-family: "Gotham", sans-serif;
    font-weight: 300;
    letter-spacing: -1px;
    line-height: 1.15;
    font-size: clamp(1.75rem, 3vw, 2.5rem);
}

.blogs-hero-banner__desc {
    font-family: "Gotham", sans-serif;
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.6;
}

.blogs-hero-banner__desc p {
    margin-bottom: 0;
    color: #fff;
}

.blogs-hero-banner .btn-white {
    background: #fff;
    color: var(--blue_level_1, #016EAF) !important;
    border-radius: 9999px;
    padding: 0.75rem 1.5rem;
    font-family: "Gotham", sans-serif;
    font-size: 14px;
    font-weight: 400;
}

@media (min-width: 992px) {
    .blogs-hero-banner.hero-banner.cl-banner-inner,
    section.blogs-hero-banner {
        min-height: auto;
        padding-top: 56px !important;
        padding-bottom: 56px !important;
    }

    .blogs-hero-banner__inner {
        gap: 0;
    }

    .blogs-hero-banner__content {
        margin-left: auto;
        margin-right: 0;
        /*max-width: 32rem;*/
        padding-right: 0.5rem;
    }

    .blogs-hero-banner__media {
        justify-content: flex-start;
    }

    .blogs-hero-banner__img {
        max-width: 552px;
        max-height: 424px;
    }
}

@media (max-width: 991.98px) {
    .blogs-hero-banner.hero-banner.cl-banner-inner,
    section.blogs-hero-banner {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .blogs-hero-banner__content .display-4 {
        font-size: 1.75rem;
    }

    .blogs-hero-banner__img {
        max-width: 384px;
        max-height: 264px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* ── Category pill filters ───────────────────────────────────────── */
.blog-category-nav-section {
    padding: 43px 0;
    position: relative;
    z-index: 2;
}

.blog-category-nav-section > svg {
    z-index: 1;
}

.blog-category-nav {
    display: flex;
    justify-content: center;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.blog-category-nav::-webkit-scrollbar {
    display: none;
}

.blog-category-nav-section ul.toggle-btn-container-blog {
    background: transparent !important;
    border-radius: 0 !important;
    overflow: visible !important;
    list-style: none;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: max-content;
    max-width: none;
    padding: 0 !important;
    margin: 0 auto !important;
}

.blog-category-nav-section ul.toggle-btn-container-blog li {
    background: #fff;
    border: 1px solid rgba(0, 105, 177, 0.22);
    border-radius: 9999px;
    overflow: hidden;
    color: var(--blue_level_1, #016EAF);
    height: auto !important;
    min-height: 40px;
    padding: 0 !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    cursor: pointer;
    font-family: "Gotham", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.blog-category-nav-section ul.toggle-btn-container-blog li a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 18px;
    color: inherit;
    text-decoration: none;
}

@media (min-width: 768px) {
    .blog-category-nav-section ul.toggle-btn-container-blog li {
        font-size: 14px;
        min-height: 42px;
        height: auto !important;
    }

    .blog-category-nav-section ul.toggle-btn-container-blog li a {
        min-height: 42px;
        padding: 10px 20px;
    }
}

.blog-category-nav-section ul.toggle-btn-container-blog li.active,
.blog-category-nav-section ul.toggle-btn-container-blog li:hover {
    background: var(--blue_level_1, #016EAF);
    border-color: var(--blue_level_1, #016EAF);
    color: #fff;
}

.blog-category-nav-section ul.toggle-btn-container-blog li.active a,
.blog-category-nav-section ul.toggle-btn-container-blog li:hover a {
    color: #fff;
}

@media (max-width: 575.98px) {
    .blog-category-nav-section {
        padding: 48px 0 28px;
    }

    .blog-category-nav {
        justify-content: flex-start;
        padding: 0 16px;
    }

    .blog-category-nav-section ul.toggle-btn-container-blog {
        margin: 0 !important;
        justify-content: flex-start;
    }

    .blog-featured-section {
        padding: 28px 0 32px;
    }
}

/* ── Featured blog banner ────────────────────────────────────────── */
.blog-featured-section {
    background: #fff;
    padding: 0 0 40px;
    position: relative;
    z-index: 2;
}

.blog-featured {
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 12px 32px rgba(0, 62, 105, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-featured:hover {
    color: inherit;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 16px 40px rgba(0, 62, 105, 0.16);
}

.blog-featured__media {
    position: relative;
    min-height: 220px;
    background: linear-gradient(135deg, #007DD3 0%, #016EAF 55%, #005590 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.blog-featured__media::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.blog-featured__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.35s ease;
}

.blog-featured:hover .blog-featured__img {
    transform: scale(1.05);
}

.blog-featured__quote {
    position: absolute;
    left: 24px;
    bottom: 8px;
    z-index: 2;
    font-size: 96px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 700;
}

.blog-featured__content {
    background: var(--blue_level_1, #016EAF);
    padding: 28px 24px 32px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.blog-featured__tag {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-family: "Gotham", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--blue_level_2, #fff);
}

.blog-featured__tag-label {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 9999px;
    background: var(--red_level_1, #e12e56);
    color: #fff;
    font-family: "Gotham", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
}

.blog-featured__tag-category {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
}

.blog-featured__title {
    font-family: "Gotham", sans-serif;
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    font-weight: 300;
    line-height: 1.25;
    letter-spacing: -0.02em;
    color: #fff;
    margin: 0;
}

.blog-featured__desc {
    font-family: "Gotham", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

@media (min-width: 768px) {
    .blog-featured {
        flex-direction: row;
        min-height: 359px;
    }

    .blog-featured__media {
        flex: 0 0 42%;
        min-height: auto;
    }

    .blog-featured__content {
        flex: 1;
        padding: 40px 44px;
        gap: 14px;
    }

    .blog-featured__quote {
        left: 32px;
        bottom: 12px;
        font-size: 120px;
    }
}

@media (max-width: 575.98px) {
    .blog-featured__content {
        padding: 22px 18px 26px;
    }
}

/* ── Editor's Picks ──────────────────────────────────────────────── */
.blog-editor-section {
    background: #fff;
    padding: 8px 0 48px;
    position: relative;
    z-index: 2;
}

.blog-editor-section__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.blog-editor-section__title {
    font-family: "Gotham", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue_level_1, #016EAF);
    margin: 0;
    white-space: nowrap;
}

.blog-editor-section__line {
    flex: 1;
    height: 1px;
    background: rgba(0, 105, 177, 0.18);
}

.blog-editor-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.blog-editor-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(0, 105, 177, 0.12);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 24px rgba(0, 62, 105, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-editor-card:hover {
    color: inherit;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 62, 105, 0.12);
}

.blog-editor-card__media {
    position: relative;
    height: 210px;
    background: linear-gradient(135deg, #016EAF 0%, #005590 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.blog-editor-card:nth-child(odd) .blog-editor-card__media {
    background-color: var(--red_level_1, #e12e56);
}

.blog-editor-card:nth-child(even) .blog-editor-card__media {
    background-color: var(--blue_level_1, #016EAF);
}

.blog-editor-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.35s ease;
}

.blog-editor-card:hover .blog-editor-card__img {
    transform: scale(1.05);
}

.blog-editor-card__tag {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.92);
    color: var(--blue_level_1, #016EAF);
    font-family: "Gotham", sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
}

.blog-editor-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 18px 22px;
    flex: 1;
}

.blog-editor-card__title {
    font-family: "Gotham", sans-serif;
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--blue_level_1, #016EAF);
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.blog-editor-card__desc {
    font-family: "Gotham", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.55);
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    flex: 1;
}

.blog-editor-card__body .blog-card-meta {
    margin-top: auto;
}

@media (min-width: 768px) {
    .blog-editor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }

    .blog-editor-card__media {
        height: 240px;
    }

    .blog-editor-card__body {
        padding: 24px 22px 26px;
    }

    .blog-editor-card__title {
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .blog-editor-section {
        padding: 4px 0 32px;
    }

    .blog-editor-section__header {
        margin-bottom: 20px;
    }
}

/* ── Latest blogs ────────────────────────────────────────────────── */
.blog-latest-section {
    background: #fff;
    padding: 8px 0 56px;
    position: relative;
    z-index: 2;
}

.blog-latest-section__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.blog-latest-section__title {
    font-family: "Gotham", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue_level_1, #016EAF);
    margin: 0;
    white-space: nowrap;
}

.blog-latest-section__line {
    flex: 1;
    height: 1px;
    background: rgba(0, 105, 177, 0.18);
}

.blog-latest-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.blog-latest-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(0, 105, 177, 0.12);
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 8px 24px rgba(0, 62, 105, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-latest-card:hover {
    color: inherit;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(0, 62, 105, 0.12);
}

.blog-latest-card__media {
    position: relative;
    height: 160px;
    background: linear-gradient(135deg, #016EAF 0%, #005590 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.blog-latest-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.35s ease;
}

.blog-latest-card:hover .blog-latest-card__img {
    transform: scale(1.05);
}

.blog-latest-card:nth-child(5n + 1) .blog-latest-card__media {
    background-color: #016EAF;
}

.blog-latest-card:nth-child(5n + 2) .blog-latest-card__media {
    background-color: var(--red_level_1, #e12e56);
}

.blog-latest-card:nth-child(5n + 3) .blog-latest-card__media {
    background-color: #2e9e6b;
}

.blog-latest-card:nth-child(5n + 4) .blog-latest-card__media {
    background-color: #6b5b95;
}

.blog-latest-card:nth-child(5n + 5) .blog-latest-card__media {
    background-color: #007DD3;
}

.blog-latest-card__tag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 9999px;
    background: #e12e56;
    color: #fff;
    font-family: "Gotham", sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
}

.blog-latest-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 16px 18px;
    flex: 1;
}

.blog-latest-card__title {
    font-family: "Gotham", sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.3;
    letter-spacing: -0.02em;
    color: var(--blue_level_1, #016EAF);
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.blog-latest-card__desc {
    font-family: "Gotham", sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.55);
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    flex: 1;
}

.blog-latest-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 6px;
}

.blog-latest-card__meta {
    font-family: "Gotham", sans-serif;
    font-size: 12px;
    color: rgba(0, 0, 0, 0.45);
}

.blog-latest-card__read-more {
    font-family: "Gotham", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--blue_level_1, #016EAF);
    white-space: nowrap;
}

@media (min-width: 768px) {
    .blog-latest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .blog-latest-card__media {
        height: 170px;
    }
}

@media (min-width: 992px) {
    .blog-latest-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 575.98px) {
    .blog-latest-section {
        padding: 4px 0 36px;
    }

    .blog-latest-section__header {
        margin-bottom: 20px;
    }
}

.blog-page-section.key-people-section {
    padding-bottom: 40px;
    padding-top: 40px;
}

.blog-latest-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid rgba(0, 105, 177, 0.12);
}

.blog-latest-card__author {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.blog-latest-card__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue_level_1, #016EAF);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    flex-shrink: 0;
    letter-spacing: 0.02em;
    font-family: "Gotham", sans-serif;
}

.blog-latest-card__author-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.blog-latest-card__author-name {
    font-family: "Gotham", sans-serif;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--black_level_1, #000);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-latest-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    font-family: "Gotham", sans-serif;
    font-size: 12px;
    line-height: 1.3;
    color: rgba(0, 0, 0, 0.45);
}

.blog-latest-card__meta-sep {
    color: rgba(0, 0, 0, 0.3);
    font-weight: 700;
    line-height: 1;
}

.blog-latest-card__date,
.blog-latest-card__reading-time {
    white-space: nowrap;
}

.blog-latest-card__read-more {
    flex-shrink: 0;
    font-size: 13px;
}

.blog-latest-card__read-more .cl-read-more2__icon {
    width: 20px;
    height: 20px;
}

.blog-featured__content .blog-card-meta {
    margin-top: 12px;
    border-top-color: rgba(255, 255, 255, 0.2);
}

.blog-latest-card__desc {
    font-family: "Gotham", sans-serif;
    font-size: 13px;
    font-weight: 300;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.55);
    margin: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    flex: 1;
}

.blog-latest-card__body .blog-card-meta {
    margin-top: auto;
}

@media (min-width: 768px) {
    .blog-latest-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .blog-latest-card__media {
        height: 170px;
    }
}

@media (min-width: 992px) {
    .blog-latest-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}

@media (max-width: 575.98px) {
    .blog-latest-section {
        padding: 4px 0 36px;
    }

    .blog-latest-section__header {
        margin-bottom: 20px;
    }
}

/* ── Shared author / read-more meta (featured, editor, latest) ───── */
.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid rgba(0, 105, 177, 0.14);
}

.blog-card-meta__author {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    flex: 1;
}

.blog-card-meta__avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue_level_1, #016EAF);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: "Gotham", sans-serif;
    font-size: 12px;
    font-weight: 700;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.blog-card-meta__author-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.blog-card-meta__author-name {
    font-family: "Gotham", sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--black_level_1, #111);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card-meta__details {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    font-family: "Gotham", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    color: rgba(0, 0, 0, 0.62);
}

.blog-card-meta__sep {
    color: rgba(0, 0, 0, 0.35);
    font-weight: 700;
    line-height: 1;
}

.blog-card-meta__date,
.blog-card-meta__reading-time {
    white-space: nowrap;
}

.blog-card-meta__read-more {
    flex-shrink: 0;
    font-size: 14px !important;
    font-weight: 400 !important;
}

.blog-card-meta__read-more .cl-read-more2__icon {
    width: 22px;
    height: 22px;
}

.blog-card-meta--white {
    border-top-color: rgba(255, 255, 255, 0.22);
}

.blog-card-meta--white .blog-card-meta__avatar {
    background: #fff;
    color: var(--blue_level_1, #016EAF);
}

.blog-card-meta--white .blog-card-meta__author-name {
    color: #fff;
}

.blog-card-meta--white .blog-card-meta__details {
    color: rgba(255, 255, 255, 0.85);
}

.blog-card-meta--white .blog-card-meta__sep {
    color: rgba(255, 255, 255, 0.55);
}

.blog-page-section.key-people-section {
    padding-bottom: 40px;
    padding-top: 40px;
}

.blog-category-block {
    position: relative;
    z-index: 2;
    padding-top: 48px;
    padding-bottom: 48px;
}

.blog-category-all-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(0, 105, 177, 0.12);
}

.blog-category-all-header__title {
    margin: 0 0 8px;
    font-family: "Gotham", sans-serif;
    font-size: clamp(1.5rem, 2.4vw, 2rem);
    font-weight: 400;
    line-height: 1.25;
    color: var(--blue_level_1, #016EAF);
}

.blog-category-all-header__desc {
    margin: 0;
    max-width: 640px;
    font-family: "Gotham", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.55);
}

@media (min-width: 768px) {
    .blog-category-all-header {
        flex-direction: row;
        align-items: flex-end;
    }
}

.blog-view-all-wrap {
    display: flex;
    justify-content: center;
    padding: 8px 0 48px;
}

.blog-view-all-btn,
.blog-back-highlights-btn {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
}

.blog-back-highlights-btn__icon {
    transform: rotate(180deg);
}

.blog-page-section + .blog-category-block {
    padding-top: 32px;
}

.blog-latest-section__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
}

.blog-latest-section__title {
    font-family: "Gotham", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--blue_level_1, #016EAF);
    margin: 0;
    white-space: nowrap;
}

.blog-latest-section__line {
    flex: 1;
    height: 1px;
    background: rgba(0, 105, 177, 0.18);
}

.blog-view-all-btn,
.blog-back-highlights-btn {
    border: 0;
    background: transparent;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
}

.blog-back-highlights-btn__icon {
    transform: rotate(180deg);
}

/* ── View all category CTA ───────────────────────────────────────── */
.blog-view-all-section {
    background: #fff;
    padding: 8px 0 64px;
    position: relative;
    z-index: 2;
}

.blog-view-all-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 28px 30px;
    border-radius: 20px;
    background: linear-gradient(90deg, #005590 0%, #016EAF 55%, #007DD3 100%);
    box-shadow: 0 14px 36px rgba(0, 62, 105, 0.16);
}

.blog-view-all-card__eyebrow {
    display: inline-block;
    margin-bottom: 8px;
    font-family: "Gotham", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
}

.blog-view-all-card__title {
    margin: 0 0 8px;
    font-family: "Gotham", sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.6rem);
    font-weight: 400;
    line-height: 1.3;
    color: #fff;
}

.blog-view-all-card__desc {
    margin: 0;
    max-width: 520px;
    font-family: "Gotham", sans-serif;
    font-size: 15px;
    font-weight: 300;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.88);
}

.blog-view-all-card__action {
    flex-shrink: 0;
    min-width: 190px;
}

.blog-view-all-card__action .btn-white {
    color: #016eaf !important;
}

@media (min-width: 768px) {
    .blog-view-all-card {
        flex-direction: row;
        align-items: center;
        padding: 32px 40px;
    }
}

@media (max-width: 575.98px) {
    .blog-view-all-section {
        padding: 4px 0 40px;
    }

    .blog-view-all-card {
        padding: 24px 20px;
    }

    .blog-view-all-card__action {
        width: 100%;
        min-width: 0;
    }

    .blog-view-all-card__action .btn {
        width: 100%;
        justify-content: center;
    }
}

.blog-page-section.key-people-section {
    padding-bottom: 40px;
    padding-top: 40px;
}

.blog-page-section.key-people-section::after {
    display: none;
}

.blog-page-section .key-people-header {
    padding: 60px 4px 0;
}

.blog-category-block {
    position: relative;
    z-index: 2;
    padding-top: 48px;
    padding-bottom: 48px;
}

.blog-page-section + .blog-category-block {
    padding-top: 32px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid var(--blue_level_2);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: var(--shadow-2xl);
}

.blog-card:hover {
    color: inherit;
}

.blog-card__media {
    position: relative;
    height: 230px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
}

.blog-card__category {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: #fff;
    color: var(--blue_level_1);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 9999px;
    line-height: 1.2;
}

.blog-card__thumb {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.35s ease;
}

.blog-card:hover .blog-card__thumb {
    transform: scale(1.05);
}

@media (prefers-reduced-motion: reduce) {
    .blog-featured__img,
    .blog-editor-card__img,
    .blog-latest-card__img,
    .blog-card__thumb {
        transition: none;
    }

    .blog-featured:hover .blog-featured__img,
    .blog-editor-card:hover .blog-editor-card__img,
    .blog-latest-card:hover .blog-latest-card__img,
    .blog-card:hover .blog-card__thumb {
        transform: none;
    }
}

.blog-card__body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.blog-card__title {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-size: 1rem;
    line-height: 1.25;
    letter-spacing: -0.05em;
    height: calc(1rem * 1.25 * 2);
    margin-bottom: 0;
    font-weight: 400;
    color: var(--black_level_1);
}

.blog-card__desc {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    font-size: 13px;
    line-height: 1.5;
    height: calc(13px * 1.5 * 3);
    margin-bottom: 0;
    color: rgba(0, 0, 0, 0.55);
    flex: 1;
}

.blog-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--blue_level_2);
}

.blog-card__author {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.blog-card__avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--blue_level_1);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.blog-card__author-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.blog-card__author-name {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.3;
    color: var(--black_level_1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 12px;
    line-height: 1.3;
    color: rgba(0, 0, 0, 0.45);
}

.blog-card__meta-sep {
    color: rgba(0, 0, 0, 0.3);
    font-weight: 700;
    line-height: 1;
}

.blog-card__date,
.blog-card__reading-time {
    white-space: nowrap;
}

.blog-card__read-more {
    flex-shrink: 0;
    font-size: 13px;
    white-space: nowrap;
}

.blog-card__read-more .cl-read-more2__icon {
    width: 20px;
    height: 20px;
}

.blog-testimonial-card {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--blue_level_2);
    border-radius: 12px;
    padding: 20px 16px 16px;
    box-shadow: var(--shadow-2xl);
}

.blog-testimonial-link {
    text-decoration: none;
    display: block;
    color: inherit;
    height: 100%;
}

.blog-quote-mark {
    font-size: 36px;
    line-height: 1;
    color: var(--blue_level_1);
    font-weight: 700;
    margin-bottom: 4px;
}

.blog-testimonial-card blockquote {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 15px;
    line-height: 1.6;
    color: var(--black_level_1);
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
    min-height: 3em !important;
    flex: 1;
}

.blog-testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--blue_level_2);
    margin-top: auto;
}

.blog-testimonial-author {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    flex: 1;
}

.blog-author-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    flex-shrink: 0;
    letter-spacing: 0.02em;
}

.blog-author-avatar.av-green {
    background: #2e9e6b;
}

.blog-testimonial-author-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.blog-testimonial-author-name {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--black_level_1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-testimonial-role {
    font-size: 12px;
    line-height: 1.3;
    color: rgba(0, 0, 0, 0.45);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.blog-testimonial-read-more {
    flex-shrink: 0;
    font-size: 13px;
    white-space: nowrap;
}

.blog-testimonial-read-more .cl-read-more2__icon {
    width: 20px;
    height: 20px;
}.blog-detail-category-heading {
    padding: 40px 0 0;
}

.blog-detail-category-heading .cl-section__title {
    margin-bottom: 0;
}

.blog-detail-category-heading__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 40px;
}

.blog-detail-category-heading__spacer {
    flex: 1 1 auto;
}

.blog-detail-category-heading + .blog_details {
    padding-top: 40px;
}

.blog-detail-back {
    display: inline-flex;
    margin-bottom: 0;
    margin-left: auto;
    flex-shrink: 0;
}

.blog-detail-back__icon {
    transform: rotate(180deg);
}

/* ── Blog Detail Two-Column Layout ───────────────────── */
.blog-detail-layout {
    align-items: stretch;
}

@media (min-width: 992px) {
    .blog-detail-author {
        border-right: 1px dashed rgba(0, 105, 177, 0.12);
    }

    .col-12.col-lg-8.col-xl-9.blog-detail-content {
        padding-left: 19px !important;
    }
}

.blog-detail-author__inner {
    position: sticky;
    top: 120px;
    padding-top: 4px;
    padding-right: 19px;
}

.blog-detail-author__profile {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
}

.blog-detail-author__media {
    flex-shrink: 0;
}

.blog-detail-author__photo {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

.blog-detail-author__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--blue_level_1);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
}

.blog-detail-author__info {
    min-width: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.blog-detail-author__info strong {
    font-family: "Gotham", sans-serif;
    font-size: 1.125rem;
    color: var(--black_level_1);
    display: block;
    margin-bottom: 0;
    line-height: 1.35;
}

.blog-detail-author__role {
    font-size: 14px;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.55);
    margin-bottom: 0;
    line-height: 1.45;
}

.blog-detail-author__meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    font-family: "Gotham", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(0, 0, 0, 0.55);
}

.blog-detail-author__meta time,
.blog-detail-author__meta span {
    white-space: nowrap;
}

.blog-detail-author__meta-sep {
    color: rgba(0, 0, 0, 0.35);
    font-weight: 700;
    line-height: 1;
}

.blog-detail-author__bio {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.68);
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 105, 177, 0.12);
}

.blog-detail-author__bio p:last-child {
    margin-bottom: 0;
}

.blog-detail-meta {
    margin-bottom: 28px;
}

.blog-detail-meta .blog-card__date {
    margin-left: 0;
    font-size: 13px;
    color: rgba(0, 0, 0, 0.55);
}

.blog-detail-content .blog-detail-quote {
    margin: 0;
    max-width: 100%;
}

.blog-detail-content {
    min-width: 0;
    overflow-wrap: break-word;
}

.blog-detail-content .blog_desc {
    margin-top: 8px;
}

.blog-detail-content .blog_desc p,
.blog-detail-content .blog_desc li {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(26, 35, 50, 0.88);
}

.blog-detail-content .blog_desc p {
    margin-bottom: 1.35em;
}

.blog-detail-content .blog_desc a {
    color: var(--blue_level_1, #016EAF);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.blog-detail-content .blog_desc h2,
.blog-detail-content .blog_desc h3,
.blog-detail-content .blog_desc h4 {
    font-family: "Gotham", sans-serif;
    color: var(--blue_level_1, #016EAF);
    font-weight: 500;
    margin-top: 2.25rem;
    margin-bottom: 0.85rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.blog-detail-content .blog_desc h2 {
    font-size: clamp(1.35rem, 2.2vw, 1.65rem);
}

.blog-detail-content .blog_desc span.text-huge {
    color: var(--blue_level_1, #016EAF);
}

.blog-detail-nav {
    padding: 40px 0 48px;
    border-top: 1px solid rgba(0, 105, 177, 0.1);
}

.blog-detail-nav .news-navigation {
    margin-top: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 20px;
    flex-wrap: wrap;
}

.blog-detail-nav .news-nav-card {
    display: block;
    flex: 1 1 calc(50% - 10px);
    width: calc(50% - 10px);
    max-width: calc(50% - 10px);
    min-width: 0;
    height: auto;
    margin-left: 0;
    padding: 22px 24px;
    border: 1px solid rgba(0, 105, 177, 0.12);
    border-radius: 12px;
    text-decoration: none;
    background: #fff;
    text-align: left;
    transition: all .25s ease;
}

.blog-detail-nav .news-nav-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(0, 105, 177, 0.1);
    border-color: rgba(0, 105, 177, 0.2);
}

.blog-detail-nav .nav-direction {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    color: #0069B1;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
}

.blog-detail-nav .nav-title {
    font-size: 15px;
    line-height: 1.5;
    color: rgba(0, 0, 0, 0.82);
    font-weight: 500;
    text-align: left;
}

.blog-detail-nav .next-news {
    margin-left: auto;
    text-align: left;
}

.blog-detail-nav .prev-news {
    margin-left: 0;
    text-align: left;
}

.blog-detail-related {
    background: #fff;
    padding-top: 56px;
    padding-bottom: 56px;
}

.blog-detail-related.blog-latest-section {
    padding-top: 56px;
    padding-bottom: 64px;
}

.blog-detail-related .cl-section__title {
    margin-bottom: 2rem;
}

/* ── Blog Detail Responsive ──────────────────────────── */
.blog-detail-hero__title {
    max-width: 834px;
    margin-left: auto;
    margin-right: auto;
}

.blog-detail-hero__desc {
    max-width: 570px;
}


@media (max-width: 991.98px) {
    .blog-detail-author {
        border-right: none;
        border-bottom: 1px dashed rgba(0, 105, 177, 0.12);
        padding-right: 0;
        padding-bottom: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .col-12.col-lg-8.col-xl-9.blog-detail-content {
        padding-left: 0 !important;
    }

    .blog-detail-author__inner {
        position: static;
        margin-bottom: 0;
    }

    .blog-detail-author {
        order: -1;
    }

    .blog-detail-author__bio {
        margin-top: 16px;
        padding-top: 16px;
    }

    .blog-detail-category-heading + .blog_details {
        padding-top: 32px;
    }

    .blog_details {
        padding: 32px 0 28px;
    }
}

@media (max-width: 768px) {
    .blog-detail-hero__title {
        font-size: clamp(1.375rem, 5.5vw, 2rem);
        line-height: 1.25;
        padding: 0 12px;
    }

    .blog-detail-hero__desc {
        font-size: 15px;
        line-height: 1.5;
        padding: 0 16px;
    }

    .cl-banner-inner.hero-banner.blog-detail-hero,
    .content-container .hero-banner.cl-banner-inner {
        min-height: auto;
        padding-top: 72px;
        padding-bottom: 48px;
    }

    .blog-detail-category-heading {
        padding: 28px 0 0;
    }

    .blog-detail-category-heading .cl-section__title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        line-height: 1.15;
        letter-spacing: -1px;
    }

    .blog-detail-category-heading__inner {
        gap: 12px;
    }

    .blog-detail-category-heading + .blog_details {
        padding-top: 24px;
    }

    .blog_details {
        padding: 24px 0 20px;
    }

    .blog-detail-back {
        font-size: 13px;
    }

    .blog-detail-author__info strong {
        font-size: 1rem;
    }

    .blog-detail-author__role {
        font-size: 13px;
    }

    .blog-detail-author__bio {
        font-size: 13px;
        line-height: 1.65;
    }

    .blog-detail-meta {
        margin-bottom: 20px;
    }

    .blog-detail-meta .blog-card__date {
        font-size: 12px;
        line-height: 1.5;
    }

    .blog-detail-content .blog_desc p,
    .blog-detail-content .blog_desc li {
        font-size: 16px;
        line-height: 1.7;
    }

    .blog-detail-content .blog_desc h2,
    .blog-detail-content .blog_desc h3,
    .blog-detail-content .blog_desc h4 {
        font-size: clamp(1.125rem, 4.5vw, 1.5rem);
        margin-top: 1.5rem;
    }

    .blog-detail-nav {
        padding: 28px 0 32px;
    }

    .blog-detail-nav .news-nav-card {
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .blog-detail-nav .next-news {
        margin-left: 0;
    }

    .blog-detail-related {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    .blog-detail-related .cl-section__title {
        font-size: clamp(1.5rem, 6vw, 2rem);
        margin-bottom: 1.5rem;
    }

    .content-container .tx-breadcrumb li[aria-current="page"] {
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
}

@media (max-width: 575.98px) {
    .blog-detail-layout {
        --bs-gutter-y: 1.25rem;
    }

    .blog-detail-author {
        padding-bottom: 1.25rem;
    }
}

/* ── Testimonial Grid (Category 5) ──────────────────────── */
.blog-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {
    .blog-testimonial-grid {
        grid-template-columns: 1fr;
    }
}

.blog-testimonial-card {
    background: #fff;
    border: 1px solid var(--blue_level_2);
    border-radius: 12px;
    padding: 20px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    transition: box-shadow 0.2s ease;
    min-height: 0;
    box-shadow: var(--shadow-2xl);
}

.blog-testimonial-card:hover {
    box-shadow: 0 6px 24px rgba(0, 51, 102, 0.08);
}

.blog-quote-mark {
    font-size: 36px;
    line-height: 1;
    color: var(--blue_level_1);
    font-weight: 700;
    margin-bottom: 0;
}

.blog-testimonial-card blockquote {
    margin: 0;
    font-style: normal;
    color: var(--black_level_1);
    font-size: 15px;
    line-height: 1.6;
    flex: 1;
    min-height: 3em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-overflow: ellipsis;
}

.blog-testimonial-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--blue_level_2);
}

.av-green {
    background-color: #2e9e6b;
}

.blog-company-pill {
    padding: 4px 14px;
    border: 1px solid #c8d0db;
    border-radius: 20px;
    font-size: 0.78rem;
    color: #3a4a5c;
    white-space: nowrap;
    flex-shrink: 0;
}

.cl-banner-inner.hero-banner p {
    font-size: 18px;
}
.cl-banner-inner.hero-banner p strong{
    font-size: 20px;
}
@media (max-width: 450px){
    .key-people-header{
        width: 95%;
    }
}

/* ── Blog Detail Quote Section ─────────────────────────── */
.blog-detail-quote-section {
    background: transparent;
    padding: 0 0 28px;
}

.blog-detail-quote {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 100%;
    margin: 0;
    padding: 0;
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0, 105, 177, 0.12);
    box-shadow: 0 10px 28px rgba(0, 62, 105, 0.08);
}

.blog-detail-quote__media {
    position: relative;
    flex: 0 0 40%;
    width: 40%;
    align-self: stretch;
    min-height: 220px;
    background: linear-gradient(135deg, #016EAF 0%, #005590 100%);
    overflow: hidden;
}

.blog-detail-quote__avatar {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 0;
    object-fit: cover;
    object-position: top;
    border: none;
    box-shadow: none;
}

.blog-detail-quote__content {
    flex: 0 0 60%;
    width: 60%;
    min-width: 0;
    margin: 0;
    padding: 32px 36px;
    border-left: none;
    background: transparent;
    display: flex;
    align-items: center;
}

.blog-detail-quote__text {
    font-size: clamp(1.05rem, 1.8vw, 1.25rem);
    line-height: 1.55;
    color: rgba(0, 0, 0, 0.78);
    font-style: italic;
    margin: 0;
}

.blog-detail-quote__text::before {
    content: "\201C";
    color: var(--blue_level_1);
    font-size: 3rem;
    font-style: normal;
    font-weight: 700;
    line-height: 0.6;
    display: block;
    margin-bottom: 8px;
}

.blog-detail-quote__text::after {
    content: none;
}

.blog-detail-quote--no-media .blog-detail-quote__content {
    flex: 1 1 100%;
    width: 100%;
    padding: 32px 36px;
}

@media (max-width: 768px) {
    .blog-detail-quote-section {
        padding: 0 0 22px;
    }

    .blog-detail-quote {
        flex-direction: column;
    }

    .blog-detail-quote__media,
    .blog-detail-quote__content {
        flex: 1 1 100%;
        width: 100%;
    }

    .blog-detail-quote__media {
        min-height: 200px;
        height: 220px;
    }

    .blog-detail-quote__content,
    .blog-detail-quote--no-media .blog-detail-quote__content {
        padding: 22px 20px;
    }

    .blog-detail-quote__text {
        font-size: 1.05rem;
        line-height: 1.55;
    }
}

@media (max-width: 575.98px) {
    .blog-detail-quote__media {
        min-height: 180px;
        height: 200px;
    }

    .blog-detail-quote__content,
    .blog-detail-quote--no-media .blog-detail-quote__content {
        padding: 18px 16px;
    }
}

.pro4 .cl-awards__slider .swiper-wrapper {
    display: flex;
    justify-content: center;
}

.onboarding_sticky {
    position: fixed;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    bottom: 40px;
    left: 50%;
    z-index: 9999;
    margin: 0 auto;
    transform: translateX(-50%);
}

.onboarding_sticky .btn.btn-outline-light {
    border: 1px solid #fff;
    color: #fff;
    z-index: 9999999;
    background: #0069B1;
    opacity: 0.9;
}

section.cl-section.cl-section--top-no-padding.cl-section--half-bg.cl-features {
    padding-bottom: 0;
}

@media screen and (max-width: 768px) {
    .cl-contact-form {
        margin-top: 30px;
    }
}

.hero-banner .banner-logo {
    width: 200px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}

.blog_desc mark,
.blog_desc blockquote {
    display: block;
    position: relative;
    margin: 2rem 0;
    padding: 22px 20px 22px 24px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #005590 0%, #016EAF 55%, #007DD3 100%);
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.55;
    box-shadow: 0 14px 36px rgba(0, 62, 105, 0.16);
    padding-left: 40px;
}

.blog_desc mark::before,
.blog_desc blockquote::before {
    content: "\201C";
    position: absolute;
    top: 10px;
    left: 18px;
    font-size: 3.25rem;
    line-height: 1;
    color: var(--red_level_1, #e12e56);
    font-style: normal;
    opacity: 0.95;
}

.blog_desc mark p,
.blog_desc blockquote p {
    color: #fff;
    margin: 0;
    padding-left: 14px;
    font-size: inherit;
    line-height: inherit;
}

.blog_desc mark span.text-huge,
.blog_desc blockquote span.text-huge {
    color: #fff;
    background: none;
    border: none;
    padding: 0;
}

.blog_desc figure.image {
    margin: 1.5em 0;
}

.blog_desc figure.image:not(.image-style-align-left):not(.image-style-align-right):not(.image-style-side) {
    display: table;
    clear: both;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.blog_desc figure.image img {
    display: block;
    max-width: 100%;
    height: auto;
}

.blog_desc figure.image.image-style-align-left,
.blog_desc figure.image.image-style-align-right,
.blog_desc figure.image.image-style-side {
    display: block;
    clear: none;
    max-width: 50%;
    margin: 0 0 1em 0;
}

.blog_desc .image-style-side,
.blog_desc .image-style-align-right {
    float: right;
    margin-left: 1.5em;
}

.blog_desc .image-style-align-left {
    float: left;
    margin-right: 1.5em;
}

.blog_desc .image-style-align-center,
.blog_desc .image-style-block {
    display: table;
    clear: both;
    margin-left: auto;
    margin-right: auto;
}

.blog_desc::after {
    content: "";
    display: table;
    clear: both;
}

.blog_desc img {
    max-width: 100%;
    height: auto;
}

.blog_details {
    background: #f1f8ff;
    padding: 56px 0 40px;
}

.blog-nav-card {


    padding: 20px;
    border: 1px solid #dbe4ef;
    border-radius: 14px;
    text-decoration: none;
    background: #fff;

}
 .news-navigation{
        display:flex;
        align-items:center;
        gap:15px;
        margin-top:30px;
        flex-wrap:wrap;
    }

    .news-navigation .next-btn{
        margin-left:auto;
    }
    .news-navigation{
        display:flex;
        justify-content:space-between;
        gap:20px;
        flex-wrap:wrap;
        margin-top:20px;
    }

    .news-nav-card{
        width:calc(50% - 10px);
        flex: 1 1 calc(50% - 10px);
        min-width: 0;
        padding:22px 24px;
        border:1px solid rgba(0, 105, 177, 0.12);
        border-radius:12px;
        text-decoration:none;
        background:#fff;
        transition:all .25s ease;
    }

    .news-nav-card:hover{
        transform:translateY(-2px);
        box-shadow:0 12px 28px rgba(0, 105, 177, 0.1);
        border-color:rgba(0, 105, 177, 0.2);
    }

    .nav-direction{
        font-size:11px;
        font-weight:700;
        letter-spacing:0.1em;
        text-transform:uppercase;
        color:#0069B1;
        margin-bottom:10px;
        display:flex;
        align-items:center;
        gap:8px;
    }

    .nav-title{
        font-size:15px;
        line-height:1.5;
        color:rgba(0, 0, 0, 0.82);
        font-weight:500;
    }

    .next-news{
        margin-left:auto;
    }

    .blog_desc mark,
    .blog_desc blockquote {
        padding: 22px 20px 22px 24px;
        border-radius: 12px;
        font-size: 1.1rem;
        padding-left: 40px;
    }

    .blog_desc mark::before,
    .blog_desc blockquote::before {
        font-size: 2.75rem;
        left: 12px;
        top: 6px;
    }

    .blog_desc span.text-huge {
        font-size: 1.15rem;
    }

    .blog_desc figure.image {
        margin: 1.5em 0;
    }

    .blog_desc figure.image:not(.image-style-align-left):not(.image-style-align-right):not(.image-style-side) {
        display: table;
        clear: both;
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }

    .blog_desc figure.image img {
        display: block;
        max-width: 100%;
        height: auto;
    }

    .blog_desc figure.image.image-style-align-left,
    .blog_desc figure.image.image-style-align-right,
    .blog_desc figure.image.image-style-side {
        display: block;
        clear: none;
        max-width: 50%;
        margin: 0 0 1em 0;
    }

    .blog_desc .image-style-side,
    .blog_desc .image-style-align-right {
        float: right;
        margin-left: 1.5em;
    }

    .blog_desc .image-style-align-left {
        float: left;
        margin-right: 1.5em;
    }

    .blog_desc .image-style-align-center,
    .blog_desc .image-style-block {
        display: table;
        clear: both;
        margin-left: auto;
        margin-right: auto;
    }

    .blog_desc::after {
        content: "";
        display: table;
        clear: both;
    }

    .blog_desc img {
        max-width: 100%;
        height: auto;
    }

    .blog_details {
        background: #f1f8ff;
        padding: 0px 0;
        padding-bottom: 20px;
    }

    .blog-nav-card {


        padding: 20px;
        border: 1px solid #dbe4ef;
        border-radius: 14px;
        text-decoration: none;
        background: #fff;

    }
 .news-navigation{
        display:flex;
        align-items:center;
        gap:15px;
        margin-top:30px;
        flex-wrap:wrap;
    }

    .news-navigation .next-btn{
        margin-left:auto;
    }
    .news-navigation{
        display:flex;
        justify-content:space-between;
        gap:20px;
        flex-wrap:wrap;
        margin-top:20px;
    }

    .news-nav-card{
        width:calc(50% - 10px); 
        border-radius: 10px;
        min-width:280px;
        padding:20px;
        border:1px solid #dbe4ef;
        border-radius:14px;
        text-decoration:none;
        background:#fff;
        transition:all .3s ease;
    }

    .news-nav-card:hover{
        transform:translateY(-3px);
        box-shadow:9px 9px 20px 1px rgba(0, 105, 177, 0.15);
    }

    .nav-direction{
        font-size:13px;
        font-weight:600;
        color:#0069B1;
        margin-bottom:10px;
        display:flex;
        align-items:center;
        gap:8px;
    }

    /*.next-news .nav-direction{
        justify-content:flex-end;
    }*/

.nav-title{
    font-size:12px;
    line-height:1.5;
    color:#000;
    font-weight:500;
}

.next-news{
    margin-left:auto;
    /*text-align:right;*/
}
@media (max-width:768px ){
    .news-nav-card{
        width: 100%;
        min-width: 0;
        padding: 16px;
    }

    .next-news{
        margin-left: 0;
    }

    .news-navigation{
        margin-top: 14px;
        gap: 12px;
    }

    .blog_details{
        padding: 56px 0 20px;
    }

    .blog_desc .image-style-side,
    .blog_desc .image-style-align-right,
    .blog_desc .image-style-align-left{
        float: none;
        max-width: 100%;
        margin: 0 0 1rem 0;
    }
}


 .pro4 .cl-awards__slider .swiper-wrapper {
    display: flex;
    justify-content: center;
}

.onboarding_sticky {
    position: fixed;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center;
    bottom: 40px;
    left: 50%;
    z-index: 9999;
    margin: 0 auto;
    transform: translateX(-50%);
}

.onboarding_sticky .btn.btn-outline-light {
    border: 1px solid #fff;
    color: #fff;
    z-index: 9999999;
    background: #0069B1;
    opacity: 0.9;
}

section.cl-section.cl-section--top-no-padding.cl-section--half-bg.cl-features {
    padding-bottom: 0;
}

@media screen and (max-width: 768px) {
    .cl-contact-form {
        margin-top: 30px;
    }
}

.hero-banner .banner-logo {
    width: 200px;
    height: auto;
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 1.5rem;
}
.blog_desc p {
    font-size: 17px;
    line-height: 1.8;
    color: rgba(26, 35, 50, 0.88);
}

.blog_desc a {
    color: var(--blue_level_1, #016EAF);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
    transition: color 0.2s ease;
}

.blog_desc a:hover {
    color: #005590;
}

.blog_desc span.text-huge {
    display: inline;
    font-family: "Gotham", sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.35rem);
    font-weight: 500;
    line-height: 1.55;
    letter-spacing: -0.01em;
    color: var(--blue_level_1, #016EAF);
}

.blog_desc p > span.text-huge:only-child,
.blog_desc h2 span.text-huge,
.blog_desc h3 span.text-huge {
    display: inline;
    margin: 0;
    padding: 0;
    background: none;
    border: none;
}