/**
 * Bibhuti frontend design system
 *
 * This stylesheet is deliberately loaded after the legacy theme files.
 * New rules must use the `ds-` namespace or a page scope such as `.page-home`
 * until a legacy component has been visually verified and migrated.
 */

:root {
    /* Brand */
    --ds-color-brand-600: #be2727;
    --ds-color-brand-700: #991f1f;

    /* Neutral palette */
    --ds-color-heading: #0a0624;
    --ds-color-body: #444444;
    --ds-color-muted: #6d7378;
    --ds-color-surface: #ffffff;
    --ds-color-surface-subtle: #f8f9fa;
    --ds-color-border: #eeeeee;

    /* Typography */
    --ds-font-family: "Bibhuti", sans-serif;
    --ds-font-size-display: clamp(2.5rem, 4vw, 3.25rem);
    --ds-font-size-section: clamp(2rem, 3vw, 2.5rem);
    --ds-font-size-subsection: clamp(1.625rem, 2.4vw, 1.9375rem);
    --ds-font-size-card: 1.25rem;
    --ds-font-size-body-lg: 1.1875rem;
    --ds-font-size-body: 1.0625rem;
    --ds-font-size-small: 0.9375rem;
    --ds-line-height-heading: 1.2;
    --ds-line-height-section: 1.45;
    --ds-line-height-body: 1.68;

    /* Spacing: 4px base scale */
    --ds-space-1: 0.25rem;
    --ds-space-2: 0.5rem;
    --ds-space-3: 0.75rem;
    --ds-space-4: 1rem;
    --ds-space-5: 1.5rem;
    --ds-space-6: 2rem;
    --ds-space-7: 3rem;
    --ds-space-8: 4rem;
    --ds-space-9: 5rem;
    --ds-space-10: 7.5rem;

    /* Shape and motion */
    --ds-radius-sm: 0.3125rem;
    --ds-radius-md: 0.5rem;
    --ds-radius-lg: 1rem;
    --ds-shadow-card: 0 0.625rem 1.875rem rgba(10, 6, 36, 0.08);
    --ds-transition: 180ms ease;
}

/* Service AI assistant */
.ai-summary-wrap {
    padding: var(--ds-space-6) 0 0;
}

.ai-summary-panel {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: var(--ds-space-5);
    align-items: start;
    overflow: hidden;
    padding: var(--ds-space-6) calc(var(--ds-space-7) + 1rem) var(--ds-space-6) var(--ds-space-6);
    border: 1px solid rgba(190, 39, 39, 0.16);
    border-radius: var(--ds-radius-lg);
    background: linear-gradient(135deg, #fffafa 0%, var(--ds-color-surface) 65%);
    box-shadow: var(--ds-shadow-card);
}

.ai-summary-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 0.3rem;
    background: linear-gradient(180deg, var(--ds-color-brand-600), #ff912c);
}

.ai-summary-icon,
.service-ai-avatar {
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    color: #fff;
    background: linear-gradient(145deg, var(--ds-color-brand-600), var(--ds-color-brand-700));
}

.ai-summary-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.85rem;
    font-size: 1.45rem;
    box-shadow: 0 0.55rem 1.25rem rgba(190, 39, 39, 0.2);
}

.ai-summary-eyebrow {
    display: block;
    margin-bottom: var(--ds-space-1);
    color: var(--ds-color-brand-600);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.ai-panel-label {
    margin: 0 0 var(--ds-space-3);
    color: var(--ds-color-heading);
    font-family: var(--ds-font-family);
    font-size: var(--ds-font-size-card);
    line-height: var(--ds-line-height-heading);
}

.ai-summary-audio {
    display: flex;
    align-items: center;
    gap: var(--ds-space-2);
    margin: 0 0 var(--ds-space-3);
}

.ai-summary-audio[hidden] { display: none; }

.ai-summary-audio-button,
.ai-summary-audio-stop {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--ds-space-2);
    min-height: 2.25rem;
    border: 1px solid rgba(190, 39, 39, 0.28);
    color: var(--ds-color-brand-600);
    background: #fff;
    font-size: 0.8125rem;
    font-weight: 700;
    transition: color var(--ds-transition), background var(--ds-transition), border-color var(--ds-transition);
}

.ai-summary-audio-button { padding: 0.4rem 0.75rem; border-radius: 999px; }
.ai-summary-audio-stop { width: 2.25rem; padding: 0; border-radius: 50%; }
.ai-summary-audio-button:hover,
.ai-summary-audio-button.is-speaking,
.ai-summary-audio-stop:hover { border-color: var(--ds-color-brand-600); color: #fff; background: var(--ds-color-brand-600); }

.ai-summary-content {
    max-width: 68rem;
    color: var(--ds-color-body);
    font-size: var(--ds-font-size-body);
    line-height: var(--ds-line-height-body);
    white-space: pre-line;
}

.ai-summary-panel.is-loading .ai-summary-content {
    color: var(--ds-color-muted);
}

.ai-summary-panel.is-error {
    background: #fff7f7;
}

.ai-panel-close,
.service-ai-head button {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    font-size: 1.45rem;
    line-height: 1;
    transition: background var(--ds-transition), transform var(--ds-transition);
}

.ai-panel-close {
    position: absolute;
    z-index: 1;
    top: var(--ds-space-4);
    right: var(--ds-space-4);
    color: var(--ds-color-muted);
}

.ai-panel-close:hover {
    color: var(--ds-color-brand-600);
    background: rgba(190, 39, 39, 0.08);
    transform: rotate(6deg);
}

.service-ai-widget {
    position: fixed;
    z-index: 9998;
    right: var(--ds-space-5);
    bottom: var(--ds-space-5);
    font-family: var(--ds-font-family);
}

.service-ai-launcher {
    display: flex;
    align-items: center;
    gap: var(--ds-space-2);
    padding: 0.8rem 1.15rem;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 999px;
    color: #fff;
    background: linear-gradient(135deg, var(--ds-color-brand-600), var(--ds-color-brand-700));
    box-shadow: 0 0.8rem 2rem rgba(153, 31, 31, 0.3);
    font-size: var(--ds-font-size-small);
    font-weight: 700;
    transition: transform var(--ds-transition), box-shadow var(--ds-transition);
}

.service-ai-launcher:hover {
    transform: translateY(-2px);
    box-shadow: 0 1rem 2.25rem rgba(153, 31, 31, 0.36);
}

.service-ai-launcher i {
    color: #ffd35a;
    font-size: 1.2rem;
}

.service-ai-menu {
    position: absolute;
    right: 0;
    bottom: 4rem;
    width: min(26rem, calc(100vw - 2rem));
    overflow: hidden;
    border: 1px solid var(--ds-color-border);
    border-radius: var(--ds-radius-lg);
    background: var(--ds-color-surface);
    box-shadow: 0 1.5rem 4rem rgba(10, 6, 36, 0.22);
}

.service-ai-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding: var(--ds-space-5);
    color: #fff;
    background: linear-gradient(135deg, var(--ds-color-brand-600), var(--ds-color-brand-700));
}

.service-ai-identity {
    display: flex;
    align-items: center;
    gap: var(--ds-space-3);
}

.service-ai-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 0.7rem;
    color: #ffd35a;
    background: rgba(255,255,255,0.12);
}

.service-ai-head strong,
.service-ai-actions strong {
    display: block;
    font-weight: 700;
}

.service-ai-head small,
.service-ai-actions small {
    display: block;
    margin-top: 0.15rem;
    font-size: 0.75rem;
    line-height: 1.35;
}

.service-ai-head small { color: rgba(255,255,255,0.8); }
.service-ai-head button { color: #fff; }
.service-ai-head button:hover { background: rgba(255,255,255,0.14); }

.service-ai-actions {
    display: grid;
    gap: var(--ds-space-3);
    padding: var(--ds-space-4);
    background: var(--ds-color-surface-subtle);
}

.service-ai-actions > button {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: var(--ds-space-3);
    align-items: center;
    padding: var(--ds-space-3);
    border: 1px solid var(--ds-color-border);
    border-radius: var(--ds-radius-md);
    color: var(--ds-color-heading);
    background: var(--ds-color-surface);
    text-align: left;
    transition: border-color var(--ds-transition), box-shadow var(--ds-transition), transform var(--ds-transition);
}

.service-ai-actions > button > span:first-child {
    display: grid;
    place-items: center;
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 0.65rem;
    color: var(--ds-color-brand-600);
    background: rgba(190,39,39,0.08);
    font-size: 1.15rem;
}

.service-ai-actions > button > i:last-child { color: var(--ds-color-brand-600); font-size: 1.2rem; }
.service-ai-actions small { color: var(--ds-color-muted); }
.service-ai-actions > button:hover { border-color: rgba(190,39,39,0.42); box-shadow: 0 0.5rem 1.25rem rgba(10,6,36,0.07); transform: translateY(-1px); }

.service-ai-messages { height: 16rem; overflow-y: auto; padding: var(--ds-space-4); background: #fbfbfc; }
.ai-message { max-width: 88%; margin-bottom: var(--ds-space-2); padding: 0.65rem 0.8rem; border-radius: 0.75rem; color: var(--ds-color-body); font-size: 0.875rem; line-height: 1.5; white-space: pre-wrap; }
.ai-message-assistant { border: 1px solid var(--ds-color-border); border-bottom-left-radius: 0.2rem; background: #fff; }
.ai-message-user { margin-left: auto; border-bottom-right-radius: 0.2rem; color: #fff; background: var(--ds-color-brand-600); }
.ai-message-error { color: var(--ds-color-brand-700); background: #fff0f0; }
.ai-service-link { display: block; margin-bottom: var(--ds-space-2); color: var(--ds-color-brand-600); font-weight: 700; text-decoration: underline; text-underline-offset: 0.18em; }
.service-ai-pills { display: flex; gap: var(--ds-space-2); overflow-x: auto; padding: var(--ds-space-3) var(--ds-space-4); border-top: 1px solid var(--ds-color-border); scrollbar-width: thin; }
.service-ai-pills button,.service-ai-pills a { flex: 0 0 auto; padding: 0.35rem 0.7rem; border: 1px solid rgba(190,39,39,0.28); border-radius: 999px; color: var(--ds-color-brand-600); background: #fff; font-size: 0.75rem; }
.service-ai-pills button:hover,.service-ai-pills a:hover { color: #fff; background: var(--ds-color-brand-600); }
.service-ai-form { display: flex; gap: var(--ds-space-2); padding: var(--ds-space-3) var(--ds-space-4); border-top: 1px solid var(--ds-color-border); background: #fff; }
.service-ai-form textarea { flex: 1; resize: none; padding: 0.65rem 0.75rem; border: 1px solid #d8d8d8; border-radius: var(--ds-radius-md); color: var(--ds-color-body); font: inherit; }
.service-ai-form textarea:focus { border-color: var(--ds-color-brand-600); outline: 0; box-shadow: 0 0 0 0.2rem rgba(190,39,39,0.1); }
.service-ai-form button { width: 2.75rem; border: 0; border-radius: var(--ds-radius-md); color: #fff; background: var(--ds-color-brand-600); }
.service-ai-form button:hover { background: var(--ds-color-brand-700); }
.service-ai-form button:disabled { opacity: 0.55; }

@media (max-width: 575px) {
    .ai-summary-wrap { padding-top: var(--ds-space-4); }
    .ai-summary-panel { grid-template-columns: 1fr; gap: var(--ds-space-3); padding: var(--ds-space-5) var(--ds-space-6) var(--ds-space-5) var(--ds-space-5); }
    .ai-summary-icon { width: 2.75rem; height: 2.75rem; }
    .service-ai-widget { right: var(--ds-space-3); bottom: var(--ds-space-3); }
    .service-ai-launcher { width: 3.2rem; height: 3.2rem; justify-content: center; padding: 0; }
    .service-ai-launcher span { display: none; }
    .service-ai-menu { bottom: 3.75rem; }
}

/* Opt-in primitives. Nothing in the legacy site uses these classes yet. */
.ds-container {
    width: min(100% - 2rem, 82.5rem);
    margin-inline: auto;
}

.ds-stack {
    display: flex;
    flex-direction: column;
    gap: var(--ds-stack-gap, var(--ds-space-5));
}

.ds-cluster {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--ds-cluster-gap, var(--ds-space-4));
}

.ds-section {
    padding-block: var(--ds-section-space, var(--ds-space-10));
}

@media (max-width: 767.98px) {
    .ds-section {
        --ds-section-space: var(--ds-space-8);
    }
}

/* --------------------------------------------------------------------------
 * CMS-authored content
 * --------------------------------------------------------------------------
 * This class is applied only around trusted backend HTML output. Important
 * declarations deliberately neutralize CKEditor typography pasted inline.
 */

.cms-content {
    color: var(--ds-color-body) !important;
    font-family: var(--ds-font-family) !important;
    font-size: var(--ds-font-size-body) !important;
    line-height: var(--ds-line-height-body) !important;
    overflow-wrap: anywhere;
}

.cms-content :where(h1, h2, h3, h4, h5, h6) {
    margin: var(--ds-space-6) 0 var(--ds-space-3);
    color: var(--ds-color-heading) !important;
    font-family: var(--ds-font-family) !important;
    font-weight: 700 !important;
}

.cms-content :where(h1, h2) {
    font-size: var(--ds-font-size-section) !important;
    line-height: var(--ds-line-height-section) !important;
}

.cms-content h3 {
    font-size: var(--ds-font-size-subsection) !important;
    line-height: 1.4 !important;
}

.cms-content h4 {
    font-size: 1.375rem !important;
    line-height: 1.4 !important;
}

.cms-content :where(h5, h6) {
    font-size: var(--ds-font-size-card) !important;
    line-height: 1.45 !important;
}

.cms-content :where(p, li, td, th, blockquote, figcaption),
.cms-content :where(p, li, td, th) span {
    color: var(--ds-color-body) !important;
    font-family: var(--ds-font-family) !important;
    font-size: var(--ds-font-size-body) !important;
    line-height: var(--ds-line-height-body) !important;
}

.cms-content p {
    margin: 0 0 var(--ds-space-4);
}

.cms-content :where(ul, ol) {
    margin: 0 0 var(--ds-space-5);
    padding-left: var(--ds-space-6);
}

.cms-content ul {
    list-style: disc outside;
}

.cms-content ol {
    list-style: decimal outside;
}

.cms-content li + li {
    margin-top: var(--ds-space-2);
}

.cms-content :where(strong, b) {
    font-weight: 700;
}

.cms-content :where(em, i) {
    font-style: italic;
}

.cms-content u {
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.cms-content a {
    color: var(--ds-color-brand-600) !important;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.cms-content a:hover,
.cms-content a:focus-visible {
    color: var(--ds-color-brand-700) !important;
}

.cms-content :where(img, figure img) {
    display: block;
    max-width: 100% !important;
    height: auto !important;
    margin-block: var(--ds-space-5);
    border-radius: var(--ds-radius-md);
}

.cms-content figure {
    max-width: 100%;
    margin: var(--ds-space-6) 0;
}

.cms-content figure.image-style-align-left,
.cms-content figure.image-style-block-align-left {
    margin-right: auto;
    margin-left: 0;
}

.cms-content figure.image-style-align-center,
.cms-content figure.image:not([class*="image-style-"]) {
    margin-right: auto;
    margin-left: auto;
}

.cms-content figure.image-style-align-right,
.cms-content figure.image-style-block-align-right,
.cms-content figure.image-style-side {
    margin-right: 0;
    margin-left: auto;
}

.cms-content .image-style-align-left {
    float: left;
    margin-right: var(--ds-space-5);
}

.cms-content .image-style-align-right,
.cms-content .image-style-side {
    float: right;
    margin-left: var(--ds-space-5);
}

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

.cms-content figcaption {
    margin-top: calc(-1 * var(--ds-space-3));
    color: var(--ds-color-muted) !important;
    font-size: var(--ds-font-size-small) !important;
}

.cms-content table {
    display: block;
    width: 100% !important;
    max-width: 100%;
    margin: var(--ds-space-6) 0;
    overflow-x: auto;
    border-collapse: collapse;
    background: var(--ds-color-surface);
}

.cms-content :where(th, td) {
    min-width: 8rem;
    padding: var(--ds-space-3) var(--ds-space-4) !important;
    border: 1px solid var(--ds-color-border) !important;
    text-align: left;
    vertical-align: top;
}

.cms-content th {
    background: var(--ds-color-surface-subtle) !important;
    color: var(--ds-color-heading) !important;
    font-weight: 700;
}

.cms-content > :first-child {
    margin-top: 0;
}

.cms-content > :last-child {
    margin-bottom: 0;
}

/* --------------------------------------------------------------------------
 * Inner pages: shared reading rhythm
 * --------------------------------------------------------------------------
 * The frontend master assigns `page-inner` by default. Homepage retains its
 * explicit `page-home` scope, and admin layouts do not use either class.
 */

.page-inner .main_wrapper > main {
    color: var(--ds-color-body);
    font-family: var(--ds-font-family);
}

.page-inner .main_wrapper > main .section__title__heading h3,
.page-inner .main_wrapper > main .section__title__heading .who-title {
    margin-block: 0;
    color: var(--ds-color-heading);
    font-family: var(--ds-font-family);
    font-weight: 700;
    line-height: var(--ds-line-height-section);
}

.page-inner .main_wrapper > main .section__title__heading p,
.page-inner .main_wrapper > main .section__title__text p,
.page-inner .main_wrapper > main .blog__4__section__title__text p {
    color: var(--ds-color-body);
    font-size: var(--ds-font-size-body-lg);
    line-height: var(--ds-line-height-body);
}

.page-inner .main_wrapper > main .about__list li,
.page-inner .main_wrapper > main .service__content__4 p,
.page-inner .main_wrapper > main .service__single__4 > p,
.page-inner .main_wrapper > main .project__bottom__text p,
.page-inner .main_wrapper > main .blog__content p {
    color: var(--ds-color-body);
    font-size: var(--ds-font-size-body);
    line-height: var(--ds-line-height-body);
}

.page-inner .main_wrapper > main .service__heading__4 h3,
.page-inner .main_wrapper > main .service__heading__4 h3 a,
.page-inner .main_wrapper > main .project__heading h3,
.page-inner .main_wrapper > main .project__heading h3 a,
.page-inner .main_wrapper > main .blog__content h6,
.page-inner .main_wrapper > main .blog__content h6 a {
    color: var(--ds-color-heading);
    font-size: var(--ds-font-size-card);
    font-weight: 700;
    line-height: 1.35;
}

@media (max-width: 767.98px) {
    .page-inner .main_wrapper > main .section__title__heading h3,
    .page-inner .main_wrapper > main .section__title__heading .who-title {
        text-wrap: balance;
    }
}

/* --------------------------------------------------------------------------
 * Homepage pilot: buttons and cards
 * -------------------------------------------------------------------------- */

.page-home .main_wrapper > main .default__button,
.page-home .main_wrapper > main .view-partners-btn,
.page-home .main_wrapper > main .cta-buttons .btn-primary,
.page-home .main_wrapper > main .cta-buttons .btn-secondary {
    display: inline-flex;
    min-height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid transparent;
    border-radius: var(--ds-radius-md);
    font-family: var(--ds-font-family);
    font-size: var(--ds-font-size-body);
    font-weight: 600;
    line-height: 1.2;
    text-align: center;
    text-decoration: none;
    transition:
        color var(--ds-transition),
        background-color var(--ds-transition),
        border-color var(--ds-transition),
        box-shadow var(--ds-transition),
        transform var(--ds-transition);
}

.page-home .main_wrapper > main .default__button,
.page-home .main_wrapper > main .view-partners-btn {
    background-color: var(--ds-color-brand-600);
    color: var(--ds-color-surface);
}

.page-home .main_wrapper > main .default__button:hover,
.page-home .main_wrapper > main .default__button:focus-visible,
.page-home .main_wrapper > main .view-partners-btn:hover,
.page-home .main_wrapper > main .view-partners-btn:focus-visible {
    border-color: var(--ds-color-heading);
    background-color: transparent;
    color: var(--ds-color-heading);
}

.page-home .main_wrapper > main .default__button:focus-visible,
.page-home .main_wrapper > main .view-partners-btn:focus-visible,
.page-home .main_wrapper > main .cta-buttons a:focus-visible {
    outline: 3px solid rgba(190, 39, 39, 0.25);
    outline-offset: 3px;
}

.page-home #service__area .text-visible,
.page-home #service__area .service__single__4 {
    display: flex;
    flex-direction: column;
}

.page-home #service__area .service__single__4 {
    width: 100%;
    height: 100%;
    border-color: var(--ds-color-border);
    box-shadow: var(--ds-shadow-card);
}

.page-home #service__area .service__content__4 {
    flex: 1 1 auto;
}

.page-home #project__area .swiper-slide,
.page-home #project__area .project__single {
    height: auto;
}

.page-home #project__area .project__single {
    display: flex;
    flex-direction: column;
}

.page-home #project__area .project__content {
    flex: 1 1 auto;
    gap: var(--ds-space-4);
}

@media (prefers-reduced-motion: reduce) {
    .page-home .main_wrapper > main .default__button,
    .page-home .main_wrapper > main .view-partners-btn,
    .page-home .main_wrapper > main .cta-buttons a {
        transition: none;
    }
}

/* --------------------------------------------------------------------------
 * Homepage pilot: typography
 * --------------------------------------------------------------------------
 * These selectors intentionally map existing homepage components to semantic
 * roles. They do not apply to inner pages.
 */

.page-home .main_wrapper > main {
    font-family: var(--ds-font-family);
    color: var(--ds-color-body);
}

.page-home .main_wrapper > main .section__title__heading h3,
.page-home .main_wrapper > main .section__title__heading .who-title {
    margin-block: 0;
    color: var(--ds-color-heading);
    font-family: var(--ds-font-family);
    font-size: var(--ds-font-size-section);
    font-weight: 700;
    line-height: var(--ds-line-height-section);
}

.page-home .main_wrapper > main .section__title__heading p,
.page-home .main_wrapper > main .section__title__text p {
    color: var(--ds-color-body);
    font-size: var(--ds-font-size-body-lg);
    line-height: var(--ds-line-height-body);
}

.page-home .main_wrapper > main .service__heading__4 h3,
.page-home .main_wrapper > main .service__heading__4 h3 a,
.page-home .main_wrapper > main .project__heading h3,
.page-home .main_wrapper > main .project__heading h3 a {
    color: var(--ds-color-heading);
    font-size: var(--ds-font-size-card);
    font-weight: 700;
    line-height: 1.35;
}

.page-home .main_wrapper > main .service__content__4 p,
.page-home .main_wrapper > main .service__single__4 > p,
.page-home .main_wrapper > main .project__bottom__text p,
.page-home .main_wrapper > main .blog__content p {
    color: var(--ds-color-body);
    font-size: var(--ds-font-size-body);
    line-height: var(--ds-line-height-body);
}

.page-home .main_wrapper > main .team__member__content__4 h6,
.page-home .main_wrapper > main .team__member__content__4 h6 a,
.page-home .main_wrapper > main .blog__content h6,
.page-home .main_wrapper > main .blog__content h6 a {
    color: var(--ds-color-heading);
    font-size: var(--ds-font-size-card);
    line-height: 1.35;
}

.page-home .main_wrapper > main .testimonial__2__author__name h6,
.page-home .main_wrapper > main .testimonial__2__author__name h6 a {
    color: var(--ds-color-heading);
    font-size: var(--ds-font-size-small);
    line-height: 1.35;
}

.page-home .main_wrapper > main .partners-header h2 {
    font-size: var(--ds-font-size-subsection);
    line-height: var(--ds-line-height-heading);
}

@media (max-width: 767.98px) {
    .page-home .main_wrapper > main .section__title__heading h3,
    .page-home .main_wrapper > main .section__title__heading .who-title {
        text-wrap: balance;
    }
}
