.fp-page {
    --fp-content-width: 1240px;
    color: var(--fp-ink, #102838);
}

.fp-container {
    width: min(var(--fp-content-width), calc(100% - 40px));
    margin-inline: auto;
}

.fp-sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}


.fp-btn {
    display: inline-flex;
    min-height: 42px;
    padding: 10px 17px;
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 620;
    line-height: 1.2;
    text-align: center;
    align-items: center;
    justify-content: center;
    transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

.fp-btn:hover {
    transform: translateY(-1px);
}

.fp-btn--primary {
    color: #fff;
    background: var(--fp-accent, #0a9c84);
    border-color: var(--fp-accent, #0a9c84);
}

.fp-btn--primary:hover {
    color: #fff;
    background: var(--fp-accent-dark, #087b6a);
    border-color: var(--fp-accent-dark, #087b6a);
}

.fp-btn--ghost {
    color: var(--fp-ink-2, #234253);
    background: #fff;
    border-color: var(--fp-line, #dce7e5);
}

.fp-btn--ghost:hover {
    color: var(--fp-accent-dark, #087b6a);
    background: var(--fp-accent-soft, #e6f6f2);
    border-color: #acdcd2;
}

.fp-btn--light {
    color: var(--fp-navy, #0b2437);
    background: #fff;
    border-color: rgba(255, 255, 255, .6);
}

.fp-btn--light:hover {
    color: var(--fp-accent-dark, #087b6a);
}

.fp-btn--wide {
    width: 100%;
}

.fp-chip {
    display: inline-flex;
    min-height: 25px;
    padding: 4px 9px;
    color: var(--fp-muted, #68808d);
    background: var(--fp-bg, #f4f8f7);
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .025em;
    align-items: center;
    white-space: nowrap;
}

.fp-chip--accent {
    color: var(--fp-accent-dark, #087b6a);
    background: var(--fp-accent-soft, #e6f6f2);
    border-color: #bce4dc;
}

.fp-chip--warning {
    color: #91551d;
    background: #fff1d9;
    border-color: #f2d39d;
}

.fp-text-link {
    display: inline-flex;
    width: fit-content;
    color: var(--fp-accent-dark, #087b6a);
    font-size: 13px;
    font-weight: 620;
    align-items: center;
    gap: 7px;
}

.fp-text-link span {
    transition: transform .18s ease;
}

.fp-text-link:hover span {
    transform: translateX(3px);
}

/* Hero */
.fp-hero {
    position: relative;
    overflow: hidden;
    padding: 76px 0 70px;
    color: #fff;
    background:
        radial-gradient(circle at 86% 20%, rgba(33, 190, 164, .18), transparent 27%),
        radial-gradient(circle at 3% 95%, rgba(53, 118, 142, .24), transparent 31%),
        linear-gradient(125deg, #0a2133 0%, #0d2d41 56%, #0a3743 100%);
}

.fp-hero::before,
.fp-hero::after {
    position: absolute;
    content: "";
    pointer-events: none;
}

.fp-hero::before {
    inset: 0;
    opacity: .11;
    background-image:
        linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(90deg, #000, transparent 72%);
}

.fp-hero::after {
    right: -120px;
    bottom: -230px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(113, 221, 200, .16);
    border-radius: 50%;
    box-shadow:
        0 0 0 70px rgba(113, 221, 200, .025),
        0 0 0 140px rgba(113, 221, 200, .018);
}

.fp-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(390px, .88fr);
    align-items: center;
    gap: 76px;
}


.fp-hero__content h1 {
    max-width: 760px;
    margin: 0 0 20px;
    color: #fff;
    font-size: clamp(40px, 5.2vw, 70px);
    font-weight: 520;
    letter-spacing: -.045em;
    line-height: 1.04;
}

.fp-hero__content > p {
    max-width: 675px;
    margin: 0;
    color: #b9ced3;
    font-size: 17px;
    line-height: 1.75;
}

.fp-hero-search {
    position: relative;
    display: flex;
    max-width: 690px;
    height: 58px;
    margin-top: 32px;
    padding: 6px;
    background: #fff;
    border: 1px solid rgba(255,255,255,.35);
    border-radius: 14px;
    box-shadow: 0 20px 55px rgba(0, 0, 0, .18);
    align-items: center;
}

.fp-hero-search > svg {
    flex: 0 0 22px;
    width: 22px;
    margin: 0 10px 0 12px;
    fill: none;
    stroke: #6c8791;
    stroke-linecap: round;
    stroke-width: 1.7;
}

.fp-hero-search input {
    min-width: 0;
    height: 100%;
    padding: 0;
    color: var(--fp-ink, #102838);
    background: transparent;
    border: 0;
    outline: 0;
    flex: 1;
}

.fp-hero-search input::placeholder {
    color: #91a4ac;
}

.fp-hero-search button {
    height: 44px;
    padding: 0 23px;
    color: #fff;
    background: var(--fp-accent, #0a9c84);
    border: 0;
    border-radius: 9px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 650;
}

.fp-hero__links {
    display: flex;
    margin-top: 19px;
    flex-wrap: wrap;
    gap: 10px 26px;
}

.fp-hero__links a {
    color: #9ec3c4;
    border-bottom: 1px dashed rgba(158, 195, 196, .48);
    font-size: 12px;
    transition: color .18s ease;
}

.fp-hero__links a:hover {
    color: #fff;
}

.fp-hero__panel {
    position: relative;
    padding: 24px;
    color: var(--fp-ink, #102838);
    background: rgba(255, 255, 255, .98);
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: 22px;
    box-shadow: 0 34px 90px rgba(0, 0, 0, .2);
}

.fp-hero__panel::before {
    position: absolute;
    top: -10px;
    right: 32px;
    width: 75px;
    height: 20px;
    content: "";
    opacity: .35;
    background: repeating-linear-gradient(90deg, #71ddc8 0 2px, transparent 2px 7px);
    border-radius: 4px;
}

.fp-hero__panel-head {
    display: flex;
    margin-bottom: 15px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.fp-hero__panel-head > div {
    display: flex;
    flex-direction: column;
}

.fp-hero__panel-head span:first-child {
    color: var(--fp-muted, #68808d);
    font-size: 10px;
    font-weight: 650;
    letter-spacing: .015em;
}

.fp-hero__panel-head strong {
    margin-top: 2px;
    color: var(--fp-navy, #0b2437);
    font-size: 20px;
    font-weight: 590;
}

.fp-live-dot {
    position: relative;
    padding-left: 13px;
    color: var(--fp-accent-dark, #087b6a) !important;
    font-size: 10px !important;
}

.fp-live-dot::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 7px;
    height: 7px;
    content: "";
    background: var(--fp-accent, #0a9c84);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--fp-accent-soft, #e6f6f2);
    transform: translateY(-50%);
}

.fp-hero-choice {
    display: grid;
    min-height: 76px;
    margin-top: 8px;
    padding: 13px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 13px;
    grid-template-columns: 43px 1fr 18px;
    align-items: center;
    gap: 12px;
    transition: border-color .18s ease, background .18s ease, transform .18s ease;
}

.fp-hero-choice:hover {
    background: var(--fp-bg, #f4f8f7);
    border-color: #b8d7d2;
    transform: translateX(2px);
}

.fp-hero-choice--primary {
    background: linear-gradient(135deg, #edf9f6, #f7fbfa);
    border-color: #b9e0d8;
}

.fp-hero-choice__icon {
    display: grid;
    width: 43px;
    height: 43px;
    color: var(--fp-accent-dark, #087b6a);
    background: var(--fp-accent-soft, #e6f6f2);
    border: 1px solid #c4e7df;
    border-radius: 11px;
    font-size: 13px;
    font-weight: 700;
    place-items: center;
}

.fp-hero-choice > span:nth-child(2) {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.fp-hero-choice strong {
    color: var(--fp-ink, #102838);
    font-size: 13px;
    font-weight: 630;
}

.fp-hero-choice small {
    margin-top: 3px;
    overflow: hidden;
    color: var(--fp-muted, #68808d);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fp-hero-choice > svg {
    width: 17px;
    fill: none;
    stroke: #8aa1aa;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.fp-hero__mini-stats {
    display: grid;
    margin-top: 17px;
    padding-top: 17px;
    border-top: 1px solid var(--fp-line, #dce7e5);
    grid-template-columns: repeat(3, 1fr);
}

.fp-hero__mini-stats span {
    display: flex;
    min-width: 0;
    padding: 0 11px;
    color: var(--fp-muted, #68808d);
    border-right: 1px solid var(--fp-line, #dce7e5);
    font-size: 9px;
    line-height: 1.35;
    flex-direction: column;
}

.fp-hero__mini-stats span:first-child {
    padding-left: 0;
}

.fp-hero__mini-stats span:last-child {
    padding-right: 0;
    border-right: 0;
}

.fp-hero__mini-stats strong {
    margin-bottom: 3px;
    color: var(--fp-navy, #0b2437);
    font-size: 15px;
    font-weight: 650;
}

/* Shared sections */
.fp-demo-notice {
    display: flex;
    margin-top: 22px;
    padding: 14px 16px;
    color: #7d541f;
    background: var(--fp-warning-soft, #fff4df);
    border: 1px solid #ead3ad;
    border-radius: 12px;
    align-items: flex-start;
    gap: 12px;
}

.fp-demo-notice > svg {
    flex: 0 0 20px;
    width: 20px;
    margin-top: 1px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.fp-demo-notice > div {
    display: flex;
    flex-direction: column;
}

.fp-demo-notice strong {
    font-size: 12px;
    font-weight: 680;
}

.fp-demo-notice span {
    margin-top: 2px;
    font-size: 11px;
    line-height: 1.55;
}

.fp-section {
    padding-top: 78px;
}

.fp-section--tight {
    padding-top: 52px;
}

.fp-section-heading {
    display: flex;
    margin-bottom: 26px;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
}

.fp-section-heading > div:first-child {
    display: flex;
    flex-direction: column;
}

.fp-section-heading h2 {
    max-width: 760px;
    margin: 9px 0 0;
    color: var(--fp-navy, #0b2437);
    font-size: clamp(27px, 3vw, 38px);
    font-weight: 530;
    letter-spacing: -.025em;
    line-height: 1.18;
}

.fp-section-heading--small {
    margin-bottom: 22px;
}

.fp-section-heading--small h2 {
    font-size: 24px;
}

.fp-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.fp-category-card {
    display: grid;
    min-height: 111px;
    padding: 19px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 15px;
    grid-template-columns: 42px 1fr 16px;
    align-items: center;
    gap: 12px;
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.fp-category-card:hover {
    border-color: #acd9d1;
    box-shadow: 0 16px 40px rgba(16, 40, 56, .06);
    transform: translateY(-2px);
}

.fp-category-card__icon {
    display: grid;
    width: 42px;
    height: 42px;
    color: var(--fp-accent-dark, #087b6a);
    background: var(--fp-accent-soft, #e6f6f2);
    border: 1px solid #c3e6df;
    border-radius: 11px;
    font-size: 12px;
    font-weight: 700;
    place-items: center;
}

.fp-category-card__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.fp-category-card strong {
    color: var(--fp-ink, #102838);
    font-size: 14px;
    font-weight: 620;
}

.fp-category-card small {
    margin-top: 4px;
    overflow: hidden;
    color: var(--fp-muted, #68808d);
    font-size: 11px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fp-category-card > svg {
    width: 16px;
    fill: none;
    stroke: #8ba0a8;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

/* Product cards */
.fp-product-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.fp-product-list {
    display: grid;
    gap: 13px;
}

.fp-product-card {
    position: relative;
    display: flex;
    min-width: 0;
    padding: 21px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 16px;
    flex-direction: column;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.fp-product-card:hover {
    border-color: #b6d8d3;
    box-shadow: 0 18px 45px rgba(16, 40, 56, .065);
    transform: translateY(-1px);
}

.fp-product-card__top {
    display: flex;
    min-width: 0;
    align-items: flex-start;
    gap: 12px;
}

.fp-org-mark,
.fp-product-logo,
.fp-organization-card__logo,
.fp-organization-profile__logo {
    display: grid;
    overflow: hidden;
    flex: 0 0 auto;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    place-items: center;
}

.fp-org-mark {
    width: 48px;
    height: 48px;
    border-radius: 12px;
}

.fp-org-mark img {
    width: 100%;
    height: 100%;
    padding: 5px;
    object-fit: contain;
}

.fp-org-mark > span {
    display: grid;
    width: 100%;
    height: 100%;
    color: #fff;
    background: var(--fp-org-accent, var(--fp-accent, #0a9c84));
    font-size: 18px;
    font-weight: 650;
    place-items: center;
}

.fp-product-card__heading {
    min-width: 0;
    flex: 1;
}

.fp-product-card__org {
    margin-bottom: 3px;
    overflow: hidden;
    color: var(--fp-muted, #68808d);
    font-size: 10px;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fp-product-card h3 {
    margin: 0;
    color: var(--fp-navy, #0b2437);
    font-size: 17px;
    font-weight: 590;
    letter-spacing: -.012em;
    line-height: 1.3;
}

.fp-product-card h3 a:hover {
    color: var(--fp-accent-dark, #087b6a);
}

.fp-product-card__short {
    min-height: 42px;
    margin: 15px 0 16px;
    color: var(--fp-muted, #68808d);
    font-size: 12px;
    line-height: 1.65;
}

.fp-product-card__specs {
    display: grid;
    padding: 14px 0;
    border-top: 1px solid var(--fp-line, #dce7e5);
    border-bottom: 1px solid var(--fp-line, #dce7e5);
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fp-product-card__specs > div {
    min-width: 0;
    padding: 0 12px;
    border-right: 1px solid var(--fp-line, #dce7e5);
}

.fp-product-card__specs > div:first-child {
    padding-left: 0;
}

.fp-product-card__specs > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.fp-product-card__specs span {
    display: block;
    overflow: hidden;
    margin-bottom: 5px;
    color: var(--fp-muted, #68808d);
    font-size: 9px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fp-product-card__specs strong {
    display: block;
    overflow: hidden;
    color: var(--fp-ink, #102838);
    font-size: 12px;
    font-weight: 650;
    line-height: 1.35;
    text-overflow: ellipsis;
}

.fp-product-card__actions {
    display: flex;
    margin-top: auto;
    padding-top: 17px;
    align-items: center;
    gap: 8px;
}

.fp-product-card__actions .fp-btn {
    flex: 1 1 0;
}

.fp-icon-btn {
    display: grid;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    padding: 0;
    color: var(--fp-muted, #68808d);
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 10px;
    cursor: pointer;
    place-items: center;
    transition: color .18s ease, background .18s ease, border-color .18s ease;
}

.fp-icon-btn svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-width: 1.7;
}

.fp-icon-btn:hover,
.fp-icon-btn.is-active {
    color: var(--fp-accent-dark, #087b6a);
    background: var(--fp-accent-soft, #e6f6f2);
    border-color: #addbd2;
}

/* Organizations on home */
.fp-org-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
}

.fp-org-pill {
    display: flex;
    min-width: 0;
    min-height: 74px;
    padding: 13px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 13px;
    align-items: center;
    gap: 11px;
    transition: border-color .18s ease, background .18s ease;
}

.fp-org-pill:hover {
    background: var(--fp-accent-soft, #e6f6f2);
    border-color: #b8ddd6;
}

.fp-org-pill > img,
.fp-org-pill > span {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
}

.fp-org-pill > img {
    padding: 4px;
    object-fit: contain;
    border: 1px solid var(--fp-line, #dce7e5);
}

.fp-org-pill > span {
    display: grid;
    color: #fff;
    background: var(--fp-org-accent, var(--fp-accent, #0a9c84));
    font-weight: 650;
    place-items: center;
}

.fp-org-pill strong {
    min-width: 0;
    overflow: hidden;
    color: var(--fp-ink, #102838);
    font-size: 12px;
    font-weight: 610;
    text-overflow: ellipsis;
}

/* Link clouds and articles */
.fp-link-cloud {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 9px;
}

.fp-link-cloud a {
    display: flex;
    min-height: 55px;
    padding: 13px 15px;
    color: var(--fp-ink-2, #234253);
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 11px;
    font-size: 12px;
    font-weight: 570;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.fp-link-cloud a:hover {
    color: var(--fp-accent-dark, #087b6a);
    background: var(--fp-accent-soft, #e6f6f2);
    border-color: #b4ddd5;
}

.fp-link-cloud a span {
    color: var(--fp-accent, #0a9c84);
}

.fp-article-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.fp-article-card {
    display: flex;
    min-height: 280px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 16px;
    flex-direction: column;
}

.fp-article-card__meta {
    color: var(--fp-accent-dark, #087b6a);
    font-size: 10px;
    font-weight: 680;
    letter-spacing: .015em;
}

.fp-article-card h3 {
    margin: 18px 0 12px;
    color: var(--fp-navy, #0b2437);
    font-size: 20px;
    font-weight: 560;
    line-height: 1.35;
}

.fp-article-card h3 a:hover {
    color: var(--fp-accent-dark, #087b6a);
}

.fp-article-card p {
    margin: 0 0 24px;
    color: var(--fp-muted, #68808d);
    font-size: 12px;
    line-height: 1.75;
}

.fp-article-card .fp-text-link {
    margin-top: auto;
}

.fp-trust-panel {
    display: flex;
    margin-top: 78px;
    padding: 42px 46px;
    color: #fff;
    background:
        radial-gradient(circle at 86% 20%, rgba(65, 202, 178, .18), transparent 25%),
        linear-gradient(125deg, #0b2538, #103b49);
    border-radius: 22px;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


.fp-trust-panel h2 {
    margin: 0 0 10px;
    color: #fff;
    font-size: clamp(25px, 3vw, 36px);
    font-weight: 530;
    letter-spacing: -.025em;
}

.fp-trust-panel p {
    max-width: 760px;
    margin: 0;
    color: #b7cbcf;
    font-size: 13px;
    line-height: 1.75;
}

/* Inner headers */
.fp-inner-hero {
    padding: 38px 0 42px;
    background:
        linear-gradient(180deg, #edf5f3 0%, rgba(244,248,247,0) 100%);
    border-bottom: 1px solid var(--fp-line, #dce7e5);
}

.fp-inner-hero--compact {
    padding: 24px 0 22px;
}

.fp-breadcrumbs {
    display: flex;
    min-width: 0;
    margin-bottom: 22px;
    color: var(--fp-muted, #68808d);
    font-size: 11px;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
}

.fp-breadcrumbs a:hover {
    color: var(--fp-accent-dark, #087b6a);
}

.fp-breadcrumbs span:last-child {
    max-width: min(650px, 65vw);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fp-inner-hero__row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
}

.fp-inner-hero__row > div:first-child {
    max-width: 880px;
}

.fp-inner-hero h1 {
    margin: 10px 0 12px;
    color: var(--fp-navy, #0b2437);
    font-size: clamp(34px, 4.7vw, 56px);
    font-weight: 520;
    letter-spacing: -.038em;
    line-height: 1.08;
}

.fp-inner-hero p {
    max-width: 820px;
    margin: 0;
    color: var(--fp-muted, #68808d);
    font-size: 14px;
    line-height: 1.7;
}

.fp-count-badge {
    display: flex;
    flex: 0 0 auto;
    min-width: 145px;
    padding: 14px 18px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 13px;
    flex-direction: column;
}

.fp-count-badge strong {
    color: var(--fp-accent-dark, #087b6a);
    font-size: 25px;
    font-weight: 590;
    line-height: 1;
}

.fp-count-badge span {
    margin-top: 5px;
    color: var(--fp-muted, #68808d);
    font-size: 10px;
}

/* Tabs and catalog */
.fp-type-tabs,
.fp-filter-tabs {
    display: flex;
    overflow-x: auto;
    margin: 24px 0;
    padding: 4px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 12px;
    scrollbar-width: none;
    gap: 3px;
}

.fp-type-tabs::-webkit-scrollbar,
.fp-filter-tabs::-webkit-scrollbar {
    display: none;
}

.fp-type-tabs a,
.fp-filter-tabs a {
    display: inline-flex;
    min-height: 38px;
    padding: 9px 14px;
    color: var(--fp-muted, #68808d);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 610;
    align-items: center;
    white-space: nowrap;
}

.fp-type-tabs a:hover,
.fp-filter-tabs a:hover {
    color: var(--fp-ink, #102838);
    background: var(--fp-bg, #f4f8f7);
}

.fp-type-tabs a.is-active,
.fp-filter-tabs a.is-active {
    color: #fff;
    background: var(--fp-navy, #0b2437);
}

.fp-catalog-layout {
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    align-items: start;
    gap: 20px;
}

.fp-filter-card {
    position: sticky;
    top: 98px;
    padding: 19px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 15px;
}

.fp-filter-card__heading {
    display: flex;
    margin-bottom: 18px;
    align-items: center;
    justify-content: space-between;
}

.fp-filter-card__heading h2 {
    margin: 0;
    color: var(--fp-navy, #0b2437);
    font-size: 17px;
    font-weight: 590;
}

.fp-filter-card__heading a {
    color: var(--fp-accent-dark, #087b6a);
    font-size: 10px;
    border-bottom: 1px dashed #9acdc3;
}

.fp-filter-card form {
    display: grid;
    gap: 14px;
}

.fp-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.fp-field > span {
    color: var(--fp-ink-2, #234253);
    font-size: 10px;
    font-weight: 630;
}

.fp-field input,
.fp-field select,
.fp-results-toolbar select {
    width: 100%;
    min-height: 42px;
    padding: 9px 11px;
    color: var(--fp-ink, #102838);
    background: #fff;
    border: 1px solid var(--fp-line-strong, #c9d9d6);
    border-radius: 9px;
    outline: none;
    font-size: 12px;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.fp-field input:focus,
.fp-field select:focus,
.fp-results-toolbar select:focus {
    border-color: var(--fp-accent, #0a9c84);
    box-shadow: 0 0 0 3px rgba(10, 156, 132, .1);
}

.fp-filter-note {
    margin-top: 18px;
    padding: 13px;
    color: var(--fp-muted, #68808d);
    background: var(--fp-bg, #f4f8f7);
    border-radius: 10px;
}

.fp-filter-note strong {
    color: var(--fp-ink-2, #234253);
    font-size: 10px;
}

.fp-filter-note p {
    margin: 5px 0 0;
    font-size: 9px;
    line-height: 1.6;
}

.fp-catalog-results {
    min-width: 0;
}

.fp-results-toolbar {
    display: flex;
    min-height: 50px;
    margin-bottom: 12px;
    padding: 8px 11px 8px 16px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 12px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.fp-results-toolbar > span {
    color: var(--fp-muted, #68808d);
    font-size: 11px;
}

.fp-results-toolbar strong {
    color: var(--fp-ink, #102838);
    font-weight: 650;
}

.fp-results-toolbar select {
    min-width: 200px;
    min-height: 34px;
    padding-block: 5px;
}

.fp-catalog-results .fp-product-card {
    padding: 19px 21px;
}

.fp-catalog-results .fp-product-card__short {
    min-height: auto;
}

.fp-pagination {
    margin-top: 23px;
}

.fp-pagination ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
    gap: 6px;
}

.fp-pagination li > a,
.fp-pagination li > span {
    display: grid;
    min-width: 38px;
    height: 38px;
    padding: 0 8px;
    color: var(--fp-muted, #68808d);
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 9px;
    font-size: 11px;
    place-items: center;
}

.fp-pagination li.active > a,
.fp-pagination li.active > span {
    color: #fff;
    background: var(--fp-navy, #0b2437);
    border-color: var(--fp-navy, #0b2437);
}

.fp-empty-state {
    display: flex;
    min-height: 330px;
    padding: 40px 25px;
    text-align: center;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 16px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.fp-empty-state > span {
    display: grid;
    width: 62px;
    height: 62px;
    margin-bottom: 18px;
    color: var(--fp-accent-dark, #087b6a);
    background: var(--fp-accent-soft, #e6f6f2);
    border-radius: 18px;
    font-size: 20px;
    font-weight: 650;
    place-items: center;
}

.fp-empty-state h2 {
    margin: 0;
    color: var(--fp-navy, #0b2437);
    font-size: 24px;
    font-weight: 560;
}

.fp-empty-state p {
    max-width: 480px;
    margin: 10px 0 20px;
    color: var(--fp-muted, #68808d);
    font-size: 12px;
}

.fp-seo-panel {
    display: grid;
    margin-top: 44px;
    padding: 34px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 18px;
    grid-template-columns: minmax(0, 1.5fr) minmax(260px, .5fr);
    gap: 50px;
}

.fp-seo-panel h2 {
    margin: 9px 0 13px;
    color: var(--fp-navy, #0b2437);
    font-size: 27px;
    font-weight: 540;
    letter-spacing: -.02em;
}

.fp-seo-panel p {
    margin: 0;
    color: var(--fp-muted, #68808d);
    font-size: 12px;
    line-height: 1.8;
}

.fp-seo-panel__links {
    display: flex;
    padding-left: 30px;
    border-left: 1px solid var(--fp-line, #dce7e5);
    flex-direction: column;
    justify-content: center;
}

.fp-seo-panel__links a {
    display: flex;
    padding: 11px 0;
    color: var(--fp-ink-2, #234253);
    border-bottom: 1px solid var(--fp-line, #dce7e5);
    font-size: 12px;
    font-weight: 590;
    justify-content: space-between;
}

.fp-seo-panel__links a:last-child {
    border-bottom: 0;
}

.fp-seo-panel__links a:hover {
    color: var(--fp-accent-dark, #087b6a);
}

.fp-compare-dock {
    position: fixed;
    z-index: 900;
    right: 24px;
    bottom: 24px;
    display: flex;
    min-height: 48px;
    padding: 8px 10px 8px 17px;
    color: #fff;
    background: var(--fp-navy, #0b2437);
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 13px;
    box-shadow: 0 18px 50px rgba(11, 36, 55, .24);
    font-size: 12px;
    font-weight: 620;
    align-items: center;
    gap: 12px;
}

.fp-compare-dock[hidden] {
    display: none;
}

.fp-compare-dock strong {
    display: grid;
    min-width: 29px;
    height: 29px;
    padding: 0 6px;
    color: var(--fp-navy, #0b2437);
    background: #72dec9;
    border-radius: 8px;
    font-size: 11px;
    place-items: center;
}

/* Product detail */
.fp-product-detail-grid {
    display: grid;
    margin-top: 24px;
    grid-template-columns: minmax(0, 1fr) 330px;
    align-items: start;
    gap: 20px;
}

.fp-product-hero-card,
.fp-content-card,
.fp-apply-card__sticky,
.fp-organization-profile {
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 17px;
}

.fp-product-hero-card {
    padding: 27px;
}

.fp-product-hero-card__identity {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.fp-product-logo {
    width: 72px;
    height: 72px;
    border-radius: 16px;
}

.fp-product-logo img {
    width: 100%;
    height: 100%;
    padding: 7px;
    object-fit: contain;
}

.fp-product-logo span {
    display: grid;
    width: 100%;
    height: 100%;
    color: #fff;
    background: var(--fp-accent, #0a9c84);
    font-size: 24px;
    font-weight: 650;
    place-items: center;
}

.fp-product-hero-card__identity > div:last-child {
    min-width: 0;
    flex: 1;
}

.fp-product-hero-card__org {
    color: var(--fp-accent-dark, #087b6a);
    font-size: 11px;
    font-weight: 620;
}

.fp-product-hero-card h1 {
    margin: 6px 0 8px;
    color: var(--fp-navy, #0b2437);
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 540;
    letter-spacing: -.03em;
    line-height: 1.14;
}

.fp-product-hero-card__identity p {
    margin: 0;
    color: var(--fp-muted, #68808d);
    font-size: 13px;
    line-height: 1.65;
}

.fp-product-hero-card__badges {
    display: flex;
    margin-top: 21px;
    flex-wrap: wrap;
    gap: 7px;
}

.fp-product-summary {
    display: grid;
    margin-top: 24px;
    padding: 20px 0 2px;
    border-top: 1px solid var(--fp-line, #dce7e5);
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fp-product-summary > div {
    min-width: 0;
    padding: 0 18px;
    border-right: 1px solid var(--fp-line, #dce7e5);
}

.fp-product-summary > div:first-child {
    padding-left: 0;
}

.fp-product-summary > div:last-child {
    padding-right: 0;
    border-right: 0;
}

.fp-product-summary span {
    display: block;
    color: var(--fp-muted, #68808d);
    font-size: 9px;
}

.fp-product-summary strong {
    display: block;
    margin-top: 7px;
    color: var(--fp-ink, #102838);
    font-size: 15px;
    font-weight: 650;
    line-height: 1.4;
}

.fp-content-card {
    margin-top: 16px;
    padding: 26px;
}

.fp-content-card > h2 {
    margin: 0 0 18px;
    color: var(--fp-navy, #0b2437);
    font-size: 20px;
    font-weight: 560;
}

.fp-check-list,
.fp-simple-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.fp-check-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.fp-check-list li {
    display: flex;
    min-height: 54px;
    padding: 12px 14px;
    color: var(--fp-ink-2, #234253);
    background: var(--fp-bg, #f4f8f7);
    border-radius: 10px;
    font-size: 12px;
    align-items: center;
    gap: 10px;
}

.fp-check-list svg {
    flex: 0 0 19px;
    width: 19px;
    fill: none;
    stroke: var(--fp-accent, #0a9c84);
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.fp-simple-list {
    display: grid;
    gap: 10px;
}

.fp-simple-list li {
    position: relative;
    padding-left: 16px;
    color: var(--fp-muted, #68808d);
    font-size: 12px;
    line-height: 1.6;
}

.fp-simple-list li::before {
    position: absolute;
    top: .65em;
    left: 0;
    width: 5px;
    height: 5px;
    content: "";
    background: var(--fp-accent, #0a9c84);
    border-radius: 50%;
}

.fp-two-column-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.fp-two-column-cards .fp-content-card {
    margin-top: 16px;
}

.fp-richtext {
    color: var(--fp-ink-2, #234253);
    font-size: 14px;
    line-height: 1.82;
}

.fp-richtext > *:first-child {
    margin-top: 0;
}

.fp-richtext > *:last-child {
    margin-bottom: 0;
}

.fp-richtext h2,
.fp-richtext h3 {
    color: var(--fp-navy, #0b2437);
    font-weight: 560;
    line-height: 1.3;
}

.fp-richtext h2 {
    margin: 34px 0 13px;
    font-size: 26px;
}

.fp-richtext h3 {
    margin: 27px 0 10px;
    font-size: 19px;
}

.fp-richtext p {
    margin: 0 0 16px;
}

.fp-richtext ul,
.fp-richtext ol {
    padding-left: 23px;
}

.fp-richtext li {
    margin-bottom: 7px;
}

.fp-richtext a {
    color: var(--fp-accent-dark, #087b6a);
    border-bottom: 1px solid #b6ddd5;
}

.fp-apply-card {
    min-width: 0;
}

.fp-apply-card__sticky {
    position: sticky;
    top: 98px;
    padding: 24px;
}

.fp-apply-card h2 {
    margin: 10px 0 12px;
    color: var(--fp-navy, #0b2437);
    font-size: 23px;
    font-weight: 550;
    line-height: 1.3;
}

.fp-apply-card p {
    margin: 0 0 18px;
    color: var(--fp-muted, #68808d);
    font-size: 11px;
    line-height: 1.7;
}

.fp-apply-card .fp-btn + .fp-btn {
    margin-top: 8px;
}

.fp-source-list {
    margin: 20px 0 15px;
    padding: 14px 0;
    border-top: 1px solid var(--fp-line, #dce7e5);
    border-bottom: 1px solid var(--fp-line, #dce7e5);
}

.fp-source-list > div {
    display: flex;
    padding: 6px 0;
    font-size: 10px;
    justify-content: space-between;
    gap: 15px;
}

.fp-source-list dt {
    color: var(--fp-muted, #68808d);
}

.fp-source-list dd {
    margin: 0;
    color: var(--fp-ink-2, #234253);
    font-weight: 620;
    text-align: right;
}

.fp-apply-card small {
    display: block;
    color: #8da0a8;
    font-size: 9px;
    line-height: 1.6;
}

/* Organizations */
.fp-organizations-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.fp-organization-card {
    display: flex;
    min-height: 230px;
    padding: 23px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 16px;
    flex-direction: column;
    transition: border-color .18s ease, box-shadow .18s ease;
}

.fp-organization-card:hover {
    border-color: #b7d8d2;
    box-shadow: 0 16px 45px rgba(16, 40, 56, .06);
}

.fp-organization-card__top {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.fp-organization-card__logo {
    width: 62px;
    height: 62px;
    border-radius: 14px;
}

.fp-organization-card__logo img {
    width: 100%;
    height: 100%;
    padding: 6px;
    object-fit: contain;
}

.fp-organization-card__logo span {
    display: grid;
    width: 100%;
    height: 100%;
    color: #fff;
    background: var(--fp-org-accent, var(--fp-accent, #0a9c84));
    font-size: 22px;
    font-weight: 650;
    place-items: center;
}

.fp-organization-card h2 {
    margin: 8px 0 0;
    color: var(--fp-navy, #0b2437);
    font-size: 20px;
    font-weight: 570;
}

.fp-organization-card h2 a:hover {
    color: var(--fp-accent-dark, #087b6a);
}

.fp-organization-card > p {
    margin: 18px 0;
    color: var(--fp-muted, #68808d);
    font-size: 12px;
    line-height: 1.7;
}

.fp-organization-card__footer {
    display: flex;
    margin-top: auto;
    padding-top: 14px;
    border-top: 1px solid var(--fp-line, #dce7e5);
    align-items: center;
    gap: 18px;
}

.fp-organization-card__footer > span {
    color: var(--fp-muted, #68808d);
    font-size: 10px;
}

.fp-organization-card__footer > span strong {
    color: var(--fp-ink, #102838);
    font-size: 12px;
}

.fp-organization-card__footer > a {
    margin-left: auto;
    color: var(--fp-accent-dark, #087b6a);
    font-size: 11px;
    font-weight: 620;
}

.fp-verified {
    display: inline-flex;
    color: var(--fp-accent-dark, #087b6a) !important;
    align-items: center;
    gap: 4px;
}

.fp-verified svg {
    width: 14px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
}

.fp-organization-profile {
    display: grid;
    margin-top: 24px;
    padding: 28px;
    grid-template-columns: 86px minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
}

.fp-organization-profile__logo {
    width: 86px;
    height: 86px;
    border-radius: 18px;
}

.fp-organization-profile__logo img {
    width: 100%;
    height: 100%;
    padding: 8px;
    object-fit: contain;
}

.fp-organization-profile__logo span {
    display: grid;
    width: 100%;
    height: 100%;
    color: #fff;
    background: var(--fp-accent, #0a9c84);
    font-size: 28px;
    font-weight: 650;
    place-items: center;
}

.fp-organization-profile__badges {
    display: flex;
    margin-bottom: 7px;
    flex-wrap: wrap;
    gap: 6px;
}

.fp-organization-profile h1 {
    margin: 0 0 7px;
    color: var(--fp-navy, #0b2437);
    font-size: clamp(30px, 4vw, 44px);
    font-weight: 540;
    letter-spacing: -.03em;
}

.fp-organization-profile__content p {
    max-width: 700px;
    margin: 0;
    color: var(--fp-muted, #68808d);
    font-size: 12px;
    line-height: 1.7;
}

.fp-organization-profile__stats {
    display: flex;
    gap: 28px;
}

.fp-organization-profile__stats div {
    display: flex;
    flex-direction: column;
}

.fp-organization-profile__stats strong {
    color: var(--fp-accent-dark, #087b6a);
    font-size: 20px;
    font-weight: 620;
}

.fp-organization-profile__stats span {
    margin-top: 3px;
    color: var(--fp-muted, #68808d);
    font-size: 9px;
}

.fp-organization-info-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(300px, .6fr);
    gap: 16px;
}

.fp-organization-facts dl {
    margin: 0;
}

.fp-organization-facts dl > div {
    display: grid;
    padding: 11px 0;
    border-bottom: 1px solid var(--fp-line, #dce7e5);
    grid-template-columns: 1fr 1.35fr;
    gap: 16px;
}

.fp-organization-facts dl > div:last-child {
    border-bottom: 0;
}

.fp-organization-facts dt {
    color: var(--fp-muted, #68808d);
    font-size: 10px;
}

.fp-organization-facts dd {
    margin: 0;
    color: var(--fp-ink-2, #234253);
    font-size: 10px;
    font-weight: 600;
    text-align: right;
}

.fp-organization-facts a {
    color: var(--fp-accent-dark, #087b6a);
}

/* Content lists */
.fp-pages-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.fp-page-card {
    display: flex;
    min-height: 290px;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 16px;
    flex-direction: column;
}

.fp-page-card__top {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.fp-page-card h2 {
    margin: 20px 0 12px;
    color: var(--fp-navy, #0b2437);
    font-size: 21px;
    font-weight: 560;
    line-height: 1.35;
}

.fp-page-card h2 a:hover {
    color: var(--fp-accent-dark, #087b6a);
}

.fp-page-card p {
    margin: 0;
    color: var(--fp-muted, #68808d);
    font-size: 12px;
    line-height: 1.75;
}

.fp-page-card__footer {
    display: flex;
    margin-top: auto;
    padding-top: 20px;
    color: #8ca0a8;
    font-size: 10px;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.fp-article-hero {
    padding: 35px 0 52px;
    background:
        radial-gradient(circle at 75% 10%, rgba(10, 156, 132, .1), transparent 26%),
        linear-gradient(180deg, #edf5f3 0%, var(--fp-bg, #f4f8f7) 100%);
    border-bottom: 1px solid var(--fp-line, #dce7e5);
}

.fp-article-container {
    max-width: 1040px;
}

.fp-article-hero__meta {
    display: flex;
    color: var(--fp-muted, #68808d);
    font-size: 10px;
    align-items: center;
    gap: 12px;
}

.fp-article-hero h1 {
    max-width: 900px;
    margin: 18px 0 17px;
    color: var(--fp-navy, #0b2437);
    font-size: clamp(38px, 6vw, 64px);
    font-weight: 510;
    letter-spacing: -.045em;
    line-height: 1.08;
}

.fp-article-hero > .fp-container > p {
    max-width: 780px;
    margin: 0;
    color: var(--fp-muted, #68808d);
    font-size: 16px;
    line-height: 1.7;
}

.fp-article-layout {
    display: grid;
    margin-top: 30px;
    grid-template-columns: minmax(0, 1fr) 250px;
    align-items: start;
    gap: 28px;
}

.fp-article-body {
    padding: 34px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 17px;
}

.fp-article-sidebar {
    position: sticky;
    top: 98px;
}

.fp-sidebar-card {
    display: flex;
    padding: 21px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 15px;
    flex-direction: column;
}

.fp-sidebar-card h2 {
    margin: 10px 0 14px;
    color: var(--fp-navy, #0b2437);
    font-size: 18px;
    font-weight: 560;
    line-height: 1.35;
}

.fp-sidebar-card a {
    display: flex;
    padding: 10px 0;
    color: var(--fp-ink-2, #234253);
    border-bottom: 1px solid var(--fp-line, #dce7e5);
    font-size: 11px;
    justify-content: space-between;
}

.fp-sidebar-card a:last-child {
    border-bottom: 0;
}

.fp-sidebar-card a:hover {
    color: var(--fp-accent-dark, #087b6a);
}

.fp-article-disclaimer {
    margin-top: 34px;
    padding: 17px;
    color: #6f5a38;
    background: var(--fp-warning-soft, #fff4df);
    border: 1px solid #ead3ad;
    border-radius: 11px;
}

.fp-article-disclaimer strong {
    font-size: 11px;
}

.fp-article-disclaimer p {
    margin: 5px 0 0;
    font-size: 10px;
    line-height: 1.65;
}

/* Terms */
.fp-alphabet {
    display: flex;
    margin: 25px 0;
    padding: 11px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 12px;
    flex-wrap: wrap;
    gap: 5px;
}

.fp-alphabet a {
    display: grid;
    width: 34px;
    height: 34px;
    color: var(--fp-ink-2, #234253);
    background: var(--fp-bg, #f4f8f7);
    border-radius: 8px;
    font-size: 11px;
    font-weight: 650;
    place-items: center;
}

.fp-alphabet a:hover {
    color: #fff;
    background: var(--fp-accent, #0a9c84);
}

.fp-terms-layout {
    display: grid;
    gap: 18px;
}

.fp-term-group {
    display: grid;
    padding: 24px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 16px;
    grid-template-columns: 62px minmax(0, 1fr);
    align-items: start;
    gap: 22px;
}

.fp-term-group__letter {
    display: grid;
    width: 62px;
    height: 62px;
    color: var(--fp-accent-dark, #087b6a);
    background: var(--fp-accent-soft, #e6f6f2);
    border: 1px solid #bee4dc;
    border-radius: 15px;
    font-size: 24px;
    font-weight: 620;
    place-items: center;
}

.fp-term-group__items {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 24px;
}

.fp-term-group article {
    padding: 14px 0;
    border-bottom: 1px solid var(--fp-line, #dce7e5);
}

.fp-term-group h2 {
    margin: 0 0 5px;
    color: var(--fp-navy, #0b2437);
    font-size: 15px;
    font-weight: 600;
}

.fp-term-group h2 a:hover {
    color: var(--fp-accent-dark, #087b6a);
}

.fp-term-group p {
    margin: 0;
    color: var(--fp-muted, #68808d);
    font-size: 10px;
    line-height: 1.6;
}

.fp-term-article {
    position: relative;
    margin-top: 28px;
    padding: 44px;
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 20px;
}

.fp-term-article__letter {
    position: absolute;
    top: -15px;
    right: 25px;
    color: rgba(10, 156, 132, .07);
    font-size: 180px;
    font-weight: 700;
    line-height: 1;
    pointer-events: none;
}

.fp-term-article h1 {
    position: relative;
    max-width: 760px;
    margin: 13px 0 16px;
    color: var(--fp-navy, #0b2437);
    font-size: clamp(38px, 6vw, 62px);
    font-weight: 510;
    letter-spacing: -.04em;
}

.fp-term-article__lead {
    position: relative;
    max-width: 760px;
    margin: 0 0 34px;
    color: var(--fp-muted, #68808d);
    font-size: 17px;
    line-height: 1.7;
}

/* Compare */
.fp-compare-table-wrap {
    margin-top: 25px;
    overflow-x: auto;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 16px;
}

.fp-compare-table {
    width: 100%;
    min-width: 850px;
    border-collapse: collapse;
}

.fp-compare-table th,
.fp-compare-table td {
    min-width: 190px;
    padding: 17px;
    text-align: left;
    vertical-align: top;
    border-right: 1px solid var(--fp-line, #dce7e5);
    border-bottom: 1px solid var(--fp-line, #dce7e5);
}

.fp-compare-table th:first-child {
    min-width: 165px;
}

.fp-compare-table tr:last-child th,
.fp-compare-table tr:last-child td {
    border-bottom: 0;
}

.fp-compare-table th:last-child,
.fp-compare-table td:last-child {
    border-right: 0;
}

.fp-compare-table thead {
    background: #f8fbfa;
}

.fp-compare-table thead th {
    padding-top: 22px;
    padding-bottom: 22px;
}

.fp-compare-table thead th:not(:first-child) {
    display: table-cell;
}

.fp-compare-table thead strong,
.fp-compare-table thead small {
    display: block;
}

.fp-compare-table thead strong {
    margin: 10px 0 4px;
    color: var(--fp-navy, #0b2437);
    font-size: 15px;
    font-weight: 620;
}

.fp-compare-table thead small {
    color: var(--fp-muted, #68808d);
    font-size: 9px;
}

.fp-compare-table tbody th {
    color: var(--fp-muted, #68808d);
    background: #fbfcfc;
    font-size: 10px;
    font-weight: 620;
}

.fp-compare-table tbody td {
    color: var(--fp-ink-2, #234253);
    font-size: 12px;
    font-weight: 560;
}

.fp-compare-table ul {
    margin: 0;
    padding-left: 17px;
}

.fp-compare-table li {
    margin-bottom: 6px;
    color: var(--fp-muted, #68808d);
    font-size: 10px;
    font-weight: 400;
}

.fp-compare-table__actions td .fp-btn {
    width: 100%;
    margin-bottom: 10px;
}

.fp-compare-table__actions .fp-text-link {
    width: 100%;
    justify-content: center;
}

.fp-compare-actions {
    display: flex;
    margin-top: 14px;
    justify-content: flex-end;
}

/* Responsive */
@media (max-width: 1120px) {
    .fp-hero__grid {
        gap: 45px;
        grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
    }

    .fp-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fp-org-strip {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fp-pages-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .fp-hero {
        padding: 58px 0;
    }

    .fp-hero__grid {
        grid-template-columns: 1fr;
    }

    .fp-hero__content {
        max-width: 790px;
    }

    .fp-hero__panel {
        max-width: 620px;
    }

    .fp-catalog-layout {
        grid-template-columns: 1fr;
    }

    .fp-filter-card {
        position: static;
    }

    .fp-filter-card form {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fp-filter-card form .fp-btn {
        align-self: end;
    }

    .fp-filter-note {
        display: none;
    }

    .fp-product-detail-grid {
        grid-template-columns: 1fr;
    }

    .fp-apply-card__sticky {
        position: static;
    }

    .fp-organization-profile {
        grid-template-columns: 80px minmax(0, 1fr);
    }

    .fp-organization-profile__stats {
        grid-column: 1 / -1;
        padding-top: 18px;
        border-top: 1px solid var(--fp-line, #dce7e5);
    }

    .fp-organization-info-grid {
        grid-template-columns: 1fr;
    }

    .fp-article-layout {
        grid-template-columns: 1fr;
    }

    .fp-article-sidebar {
        position: static;
    }

    .fp-sidebar-card {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0 20px;
    }

    .fp-sidebar-card h2 {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .fp-container {
        width: min(100% - 28px, var(--fp-content-width));
    }

    .fp-hero {
        padding: 44px 0 48px;
    }

    .fp-hero__content h1 {
        font-size: clamp(37px, 11vw, 54px);
    }

    .fp-hero__content > p {
        font-size: 14px;
    }

    .fp-hero-search {
        height: auto;
        min-height: 56px;
    }

    .fp-hero-search button {
        padding-inline: 17px;
    }

    .fp-hero__panel {
        padding: 18px;
    }

    .fp-section {
        padding-top: 58px;
    }

    .fp-section--tight {
        padding-top: 42px;
    }

    .fp-section-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 13px;
    }

    .fp-category-grid,
    .fp-product-grid,
    .fp-organizations-grid,
    .fp-pages-grid,
    .fp-article-grid,
    .fp-link-cloud {
        grid-template-columns: 1fr;
    }

    .fp-category-card {
        min-height: 92px;
    }

    .fp-org-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fp-trust-panel {
        padding: 30px 25px;
        align-items: flex-start;
        flex-direction: column;
    }

    .fp-inner-hero {
        padding: 30px 0 34px;
    }

    .fp-inner-hero__row {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .fp-count-badge {
        min-width: 130px;
    }

    .fp-filter-card form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fp-results-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .fp-results-toolbar form,
    .fp-results-toolbar select {
        width: 100%;
    }

    .fp-seo-panel {
        padding: 25px;
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .fp-seo-panel__links {
        padding: 20px 0 0;
        border-top: 1px solid var(--fp-line, #dce7e5);
        border-left: 0;
    }

    .fp-product-summary {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 0;
    }

    .fp-product-summary > div:nth-child(2) {
        padding-right: 0;
        border-right: 0;
    }

    .fp-product-summary > div:nth-child(3) {
        padding-left: 0;
    }

    .fp-check-list,
    .fp-two-column-cards {
        grid-template-columns: 1fr;
    }

    .fp-organization-card__footer {
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .fp-organization-card__footer > a {
        margin-left: 0;
    }

    .fp-organization-profile {
        padding: 22px;
        grid-template-columns: 68px minmax(0, 1fr);
        gap: 15px;
    }

    .fp-organization-profile__logo {
        width: 68px;
        height: 68px;
    }

    .fp-organization-profile h1 {
        font-size: 29px;
    }

    .fp-term-group {
        grid-template-columns: 1fr;
    }

    .fp-term-group__items {
        grid-template-columns: 1fr;
    }

    .fp-term-article {
        padding: 30px 24px;
    }

    .fp-term-article__letter {
        font-size: 120px;
    }

    .fp-article-body {
        padding: 26px 22px;
    }

    .fp-article-hero h1 {
        font-size: clamp(34px, 11vw, 52px);
    }
}

@media (max-width: 520px) {
    .fp-hero-search > svg {
        display: none;
    }

    .fp-hero-search input {
        padding-left: 10px;
        font-size: 12px;
    }

    .fp-hero__mini-stats {
        grid-template-columns: 1fr 1fr;
        gap: 14px 0;
    }

    .fp-hero__mini-stats span:nth-child(2) {
        border-right: 0;
    }

    .fp-hero__mini-stats span:last-child {
        padding-left: 0;
        grid-column: 1 / -1;
    }

    .fp-category-grid {
        gap: 8px;
    }

    .fp-category-card {
        padding: 15px;
    }

    .fp-product-card {
        padding: 18px;
    }

    .fp-product-card__top {
        flex-wrap: wrap;
    }

    .fp-product-card__top > .fp-chip {
        margin-left: 60px;
    }

    .fp-product-card__short {
        min-height: auto;
    }

    .fp-product-card__specs {
        gap: 11px;
        grid-template-columns: 1fr;
    }

    .fp-product-card__specs > div,
    .fp-product-card__specs > div:first-child,
    .fp-product-card__specs > div:last-child {
        display: flex;
        padding: 0;
        border-right: 0;
        justify-content: space-between;
        gap: 15px;
    }

    .fp-product-card__specs span,
    .fp-product-card__specs strong {
        margin: 0;
        font-size: 10px;
    }

    .fp-product-card__specs strong {
        text-align: right;
    }

    .fp-product-card__actions {
        flex-wrap: wrap;
    }

    .fp-product-card__actions .fp-icon-btn {
        flex: 0 0 42px;
    }

    .fp-org-strip {
        grid-template-columns: 1fr;
    }

    .fp-filter-card form {
        grid-template-columns: 1fr;
    }

    .fp-product-hero-card {
        padding: 21px;
    }

    .fp-product-hero-card__identity {
        flex-direction: column;
    }

    .fp-product-summary {
        grid-template-columns: 1fr;
    }

    .fp-product-summary > div,
    .fp-product-summary > div:first-child,
    .fp-product-summary > div:nth-child(3),
    .fp-product-summary > div:last-child {
        display: flex;
        padding: 0 0 11px;
        border-right: 0;
        border-bottom: 1px solid var(--fp-line, #dce7e5);
        justify-content: space-between;
        gap: 15px;
    }

    .fp-product-summary > div:last-child {
        padding-bottom: 0;
        border-bottom: 0;
    }

    .fp-product-summary strong {
        margin-top: 0;
        text-align: right;
    }

    .fp-content-card {
        padding: 21px;
    }

    .fp-organization-card {
        padding: 19px;
    }

    .fp-organization-profile {
        grid-template-columns: 1fr;
    }

    .fp-organization-profile__stats {
        grid-column: auto;
        flex-direction: column;
        gap: 13px;
    }

    .fp-organization-facts dl > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .fp-organization-facts dd {
        text-align: left;
    }

    .fp-sidebar-card {
        grid-template-columns: 1fr;
    }

    .fp-sidebar-card h2 {
        grid-column: auto;
    }

    .fp-compare-dock {
        right: 14px;
        bottom: 14px;
    }
}


.fp-js-toast {
    position: fixed;
    z-index: 2000;
    right: 24px;
    bottom: 84px;
    max-width: min(350px, calc(100% - 28px));
    padding: 12px 16px;
    visibility: hidden;
    color: #fff;
    background: var(--fp-navy, #0b2437);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 11px;
    box-shadow: 0 18px 45px rgba(11,36,55,.24);
    opacity: 0;
    font-size: 11px;
    font-weight: 580;
    transform: translateY(10px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.fp-js-toast.is-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 520px) {
    .fp-js-toast {
        right: 14px;
        bottom: 76px;
    }
}

/* 0.2.0: category architecture */
.fp-category-grid--roots .fp-category-card {
    min-height: 128px;
}

.fp-category-grid--roots .fp-category-card__content small {
    display: -webkit-box;
    overflow: hidden;
    white-space: normal;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.fp-category-card__content em {
    margin-top: 7px;
    color: var(--fp-accent-dark, #087b6a);
    font-size: 9px;
    font-style: normal;
    font-weight: 650;
}

.fp-category-hub {
    margin: 26px 0 28px;
    padding: 25px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 17px;
}

.fp-category-hub__heading {
    display: grid;
    margin-bottom: 20px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, .65fr);
    align-items: end;
    gap: 32px;
}

.fp-category-hub__heading h2 {
    margin: 8px 0 0;
    color: var(--fp-navy, #0b2437);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 540;
    letter-spacing: -.025em;
}

.fp-category-hub__heading p {
    margin: 0;
    color: var(--fp-muted, #68808d);
    font-size: 11px;
    line-height: 1.7;
}

.fp-subcategory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.fp-subcategory-card {
    display: grid;
    min-width: 0;
    min-height: 104px;
    padding: 15px;
    color: var(--fp-ink, #102838);
    background: linear-gradient(135deg, #fff, #fbfdfc);
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 13px;
    grid-template-columns: 38px minmax(0, 1fr) auto 15px;
    align-items: center;
    gap: 11px;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.fp-subcategory-card:hover {
    color: var(--fp-ink, #102838);
    border-color: #a9d9d0;
    box-shadow: 0 14px 32px rgba(16, 40, 56, .055);
    transform: translateY(-2px);
}

.fp-subcategory-card__icon {
    display: grid;
    width: 38px;
    height: 38px;
    color: var(--fp-accent-dark, #087b6a);
    background: var(--fp-accent-soft, #e6f6f2);
    border: 1px solid #c4e7df;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    place-items: center;
}

.fp-subcategory-card__body {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.fp-subcategory-card__body strong {
    color: var(--fp-navy, #0b2437);
    font-size: 13px;
    font-weight: 620;
    line-height: 1.35;
}

.fp-subcategory-card__body small {
    display: -webkit-box;
    overflow: hidden;
    margin-top: 4px;
    color: var(--fp-muted, #68808d);
    font-size: 9px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.fp-subcategory-card__count {
    display: grid;
    min-width: 28px;
    height: 25px;
    padding: 0 6px;
    color: var(--fp-accent-dark, #087b6a);
    background: var(--fp-accent-soft, #e6f6f2);
    border-radius: 8px;
    font-size: 9px;
    font-weight: 700;
    place-items: center;
}

.fp-subcategory-card > svg {
    width: 15px;
    fill: none;
    stroke: #8ba0a8;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.fp-sibling-nav {
    margin: 24px 0;
}

.fp-sibling-nav__heading {
    display: flex;
    margin-bottom: -12px;
    color: var(--fp-muted, #68808d);
    font-size: 10px;
    font-weight: 620;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.fp-sibling-nav__heading a {
    color: var(--fp-accent-dark, #087b6a);
}

.fp-popular-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.fp-popular-category {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 126px;
    padding: 18px 48px 18px 18px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 14px;
    flex-direction: column;
    justify-content: center;
    transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.fp-popular-category:hover {
    border-color: #afdcd3;
    box-shadow: 0 15px 38px rgba(16, 40, 56, .055);
    transform: translateY(-2px);
}

.fp-popular-category > span {
    color: var(--fp-accent-dark, #087b6a);
    font-size: 9px;
    font-weight: 680;
    letter-spacing: .01em;
}

.fp-popular-category > strong {
    margin-top: 8px;
    color: var(--fp-navy, #0b2437);
    font-size: 16px;
    font-weight: 590;
    line-height: 1.35;
}

.fp-popular-category > small {
    margin-top: 8px;
    color: var(--fp-muted, #68808d);
    font-size: 10px;
}

.fp-popular-category > b {
    position: absolute;
    top: 50%;
    right: 18px;
    display: grid;
    width: 28px;
    height: 28px;
    color: var(--fp-accent-dark, #087b6a);
    background: var(--fp-accent-soft, #e6f6f2);
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    place-items: center;
    transform: translateY(-50%);
}

.fp-seo-panel--category .fp-seo-panel__content h2:first-child,
.fp-seo-panel--category .fp-seo-panel__content h3:first-child {
    margin-top: 0;
}

.fp-seo-panel--category .fp-richtext ul,
.fp-seo-panel--category .fp-richtext ol {
    color: var(--fp-muted, #68808d);
    font-size: 12px;
    line-height: 1.75;
}

@media (max-width: 1040px) {
    .fp-subcategory-grid,
    .fp-popular-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fp-category-hub__heading {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

@media (max-width: 720px) {
    .fp-category-hub {
        padding: 19px;
    }

    .fp-subcategory-grid,
    .fp-popular-category-grid {
        grid-template-columns: 1fr;
    }

    .fp-subcategory-card {
        min-height: 88px;
    }

    .fp-sibling-nav__heading {
        margin-bottom: -8px;
    }
}

@media (max-width: 520px) {
    .fp-subcategory-card {
        padding: 13px;
        grid-template-columns: 35px minmax(0, 1fr) 14px;
    }

    .fp-subcategory-card__count {
        display: none;
    }

    .fp-subcategory-card__icon {
        width: 35px;
        height: 35px;
    }

    .fp-popular-category {
        min-height: 110px;
    }
}

/* FinPortal 0.3.0: expanded category directory and structured microloan filters */
.fp-category-group + .fp-category-group {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--fp-line, #dce7e5);
}

.fp-category-group > h2,
.fp-sibling-nav__heading h2 {
    margin: 0 0 13px;
    color: var(--fp-navy, #0b2437);
    font-size: 15px;
    font-weight: 620;
    line-height: 1.35;
}

.fp-sibling-nav__heading h2 {
    margin-bottom: 0;
}

.fp-filter-more {
    margin-top: 14px;
    border-top: 1px solid var(--fp-line, #dce7e5);
}

.fp-filter-more > summary {
    display: flex;
    padding: 15px 0 2px;
    color: var(--fp-navy, #0b2437);
    cursor: pointer;
    font-size: 12px;
    font-weight: 650;
    list-style: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.fp-filter-more > summary::-webkit-details-marker {
    display: none;
}

.fp-filter-more > summary::after {
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    content: "";
    transform: rotate(45deg) translateY(-2px);
    transition: transform .16s ease;
}

.fp-filter-more[open] > summary::after {
    transform: rotate(225deg) translate(-2px, -2px);
}

.fp-filter-checks {
    display: grid;
    margin-top: 12px;
    grid-template-columns: 1fr;
    gap: 8px;
}

.fp-check {
    display: grid;
    min-width: 0;
    padding: 10px 11px;
    color: var(--fp-ink, #102838);
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 10px;
    cursor: pointer;
    font-size: 10px;
    line-height: 1.35;
    grid-template-columns: 17px minmax(0, 1fr);
    align-items: center;
    gap: 9px;
    transition: border-color .16s ease, background .16s ease;
}

.fp-check:hover {
    border-color: #a8d9d0;
}

.fp-check:has(input:checked) {
    background: var(--fp-accent-soft, #e6f6f2);
    border-color: #9fd5cb;
}

.fp-check input {
    width: 16px;
    height: 16px;
    margin: 0;
    accent-color: var(--fp-accent, #0ea58d);
}

.fp-filter-disclaimer {
    margin: 14px 0 0;
    color: var(--fp-muted, #68808d);
    font-size: 9px;
    line-height: 1.55;
}

.fp-product-card__tags {
    display: flex;
    margin: 13px 0 0;
    flex-wrap: wrap;
    gap: 6px;
}

.fp-product-card__tags span {
    display: inline-flex;
    min-height: 24px;
    padding: 5px 8px;
    color: #3e5c69;
    background: #f4f8f7;
    border: 1px solid #dfe9e7;
    border-radius: 999px;
    font-size: 9px;
    line-height: 1.25;
    align-items: center;
}

.fp-hero__panel-head > strong {
    display: block;
    margin: 0;
    color: var(--fp-navy, #0b2437);
    font-size: 19px;
    font-weight: 620;
    line-height: 1.25;
}

.fp-category-hub {
    overflow: visible;
}

.fp-subcategory-grid--compact .fp-subcategory-card {
    min-height: 84px;
}

@media (min-width: 721px) and (max-width: 1040px) {
    .fp-filter-checks {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .fp-category-group + .fp-category-group {
        margin-top: 20px;
        padding-top: 18px;
    }

    .fp-category-group > h2,
    .fp-sibling-nav__heading h2 {
        font-size: 14px;
    }
}


/* FinPortal 0.3.0 grouped loan filters */
.fp-filter-groups {
    display: grid;
    margin-top: 13px;
    gap: 17px;
}

.fp-filter-group {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.fp-filter-group legend {
    width: 100%;
    margin: 0 0 8px;
    padding: 0;
    color: var(--fp-muted, #68808d);
    font-size: 9px;
    font-weight: 680;
    letter-spacing: .01em;
    line-height: 1.35;
}

.fp-filter-group .fp-filter-checks {
    margin-top: 0;
}

.fp-filter-more[open] {
    padding-bottom: 4px;
}

.fp-filter-card form > .fp-btn {
    margin-top: 16px;
}

/* FinPortal 0.3.1: compact category navigation and concise catalogue filter */
.fp-catalog .fp-type-tabs {
    margin: 20px 0 10px;
}

.fp-quick-categories {
    display: flex;
    overflow-x: auto;
    margin: 10px 0 20px;
    padding: 0 0 2px;
    flex-wrap: wrap;
    scrollbar-width: none;
    gap: 7px;
}

.fp-quick-categories::-webkit-scrollbar {
    display: none;
}

.fp-quick-categories a {
    display: inline-flex;
    min-height: 38px;
    padding: 9px 13px;
    color: var(--fp-ink-2, #234253);
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 10px;
    font-size: 11px;
    font-weight: 610;
    line-height: 1.2;
    align-items: center;
    white-space: nowrap;
    transition: color .16s ease, background .16s ease, border-color .16s ease;
}

.fp-quick-categories a:hover {
    color: var(--fp-accent-dark, #087b6a);
    border-color: #a8d9d0;
}

.fp-quick-categories a.is-active {
    color: #fff;
    background: var(--fp-navy, #0b2437);
    border-color: var(--fp-navy, #0b2437);
}

.fp-catalog .fp-catalog-layout {
    grid-template-columns: 248px minmax(0, 1fr);
    gap: 16px;
}

.fp-catalog .fp-filter-card {
    padding: 16px;
    border-radius: 14px;
}

.fp-catalog .fp-filter-card__heading {
    margin-bottom: 14px;
}

.fp-catalog .fp-filter-card form {
    gap: 10px;
}

.fp-catalog .fp-field {
    gap: 5px;
}

.fp-catalog .fp-field input,
.fp-catalog .fp-field select {
    min-height: 39px;
    padding: 8px 10px;
}

.fp-catalog .fp-filter-more {
    margin-top: 3px;
}

.fp-catalog .fp-filter-more > summary {
    padding: 12px 0 1px;
    font-size: 11px;
}

.fp-filter-chips {
    display: flex;
    margin-top: 10px;
    flex-wrap: wrap;
    gap: 6px;
}

.fp-filter-chip {
    position: relative;
    display: inline-flex;
    cursor: pointer;
}

.fp-filter-chip input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.fp-filter-chip span {
    display: inline-flex;
    min-height: 30px;
    padding: 7px 9px;
    color: var(--fp-ink-2, #234253);
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 9px;
    font-size: 9px;
    font-weight: 610;
    line-height: 1.2;
    align-items: center;
    transition: color .16s ease, background .16s ease, border-color .16s ease;
}

.fp-filter-chip:hover span {
    border-color: #a8d9d0;
}

.fp-filter-chip input:focus-visible + span {
    outline: 2px solid var(--fp-accent, #0a9c84);
    outline-offset: 2px;
}

.fp-filter-chip input:checked + span {
    color: var(--fp-accent-dark, #087b6a);
    background: var(--fp-accent-soft, #e6f6f2);
    border-color: #9fd5cb;
}

.fp-catalog .fp-filter-card form > .fp-btn {
    min-height: 41px;
    margin-top: 9px;
}

.fp-catalog .fp-filter-disclaimer {
    margin-top: 10px;
    font-size: 8.5px;
    line-height: 1.45;
}

.fp-more-categories {
    margin: 24px 0 42px;
    padding: 21px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 15px;
}

.fp-more-categories > h2 {
    margin: 0 0 14px;
    color: var(--fp-navy, #0b2437);
    font-size: 18px;
    font-weight: 590;
}

.fp-more-categories__groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
}

.fp-more-category-group {
    min-width: 0;
    background: #fbfdfc;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 11px;
}

.fp-more-category-group > summary {
    display: flex;
    min-height: 43px;
    padding: 11px 13px;
    color: var(--fp-ink, #102838);
    cursor: pointer;
    font-size: 11px;
    font-weight: 630;
    line-height: 1.3;
    list-style: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.fp-more-category-group > summary::-webkit-details-marker {
    display: none;
}

.fp-more-category-group > summary::after {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid var(--fp-accent-dark, #087b6a);
    border-bottom: 1.5px solid var(--fp-accent-dark, #087b6a);
    content: "";
    flex: 0 0 auto;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .16s ease;
}

.fp-more-category-group[open] > summary::after {
    transform: rotate(225deg) translate(-2px, -2px);
}

.fp-more-category-links {
    display: grid;
    padding: 0 9px 9px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.fp-more-category-links a {
    display: grid;
    min-width: 0;
    min-height: 38px;
    padding: 8px 9px;
    color: var(--fp-ink-2, #234253);
    background: #fff;
    border: 1px solid #e3ecea;
    border-radius: 8px;
    font-size: 10px;
    line-height: 1.3;
    grid-template-columns: minmax(0, 1fr) 12px;
    align-items: center;
    gap: 7px;
}

.fp-more-category-links a:hover {
    color: var(--fp-accent-dark, #087b6a);
    border-color: #acd9d1;
}

.fp-more-category-links svg {
    width: 12px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

@media (max-width: 1040px) {
    .fp-catalog .fp-catalog-layout {
        grid-template-columns: 230px minmax(0, 1fr);
    }

    .fp-more-categories__groups {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 820px) {
    .fp-catalog .fp-catalog-layout {
        grid-template-columns: 1fr;
    }

    .fp-catalog .fp-filter-card {
        position: static;
    }
}

@media (max-width: 720px) {
    .fp-quick-categories {
        margin-bottom: 16px;
        padding-bottom: 4px;
        flex-wrap: nowrap;
    }

    .fp-quick-categories a {
        min-height: 36px;
        padding: 8px 11px;
    }

    .fp-more-categories {
        padding: 17px;
    }

    .fp-more-category-links {
        grid-template-columns: 1fr;
    }
}

/* FinPortal 0.3.1: compact catalog navigation and filter */
.fp-inner-hero--catalog {
    padding-bottom: 30px;
}

.fp-popular-nav {
    margin: 16px 0 20px;
}

.fp-popular-nav__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.fp-popular-nav__item {
    display: grid;
    min-width: 0;
    min-height: 52px;
    padding: 9px 11px;
    color: var(--fp-ink, #102838);
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 11px;
    grid-template-columns: 29px minmax(0, 1fr) 13px;
    align-items: center;
    gap: 9px;
    transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

.fp-popular-nav__item:hover {
    color: var(--fp-ink, #102838);
    background: #fbfdfc;
    border-color: #acd9d1;
    transform: translateY(-1px);
}

.fp-popular-nav__item.is-active {
    color: #fff;
    background: var(--fp-navy, #0b2437);
    border-color: var(--fp-navy, #0b2437);
}

.fp-popular-nav__icon {
    display: grid;
    width: 29px;
    height: 29px;
    color: var(--fp-accent-dark, #087b6a);
    background: var(--fp-accent-soft, #e6f6f2);
    border: 1px solid #c8e8e1;
    border-radius: 8px;
    font-size: 8px;
    font-weight: 700;
    place-items: center;
}

.fp-popular-nav__item.is-active .fp-popular-nav__icon {
    color: #d9fff7;
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .16);
}

.fp-popular-nav__item strong {
    overflow: hidden;
    color: inherit;
    font-size: 11px;
    font-weight: 620;
    line-height: 1.3;
    text-overflow: ellipsis;
}

.fp-popular-nav__item > svg,
.fp-category-directory__links svg {
    width: 13px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.7;
}

.fp-popular-nav__item > svg {
    color: #8aa0a9;
}

.fp-popular-nav__item.is-active > svg {
    color: rgba(255, 255, 255, .72);
}

.fp-filter-card {
    padding: 16px;
}

.fp-filter-card__heading {
    margin-bottom: 13px;
}

.fp-filter-card form {
    gap: 10px;
}

.fp-field {
    gap: 5px;
}

.fp-field input,
.fp-field select,
.fp-results-toolbar select {
    min-height: 39px;
    padding: 8px 10px;
}

.fp-filter-more {
    margin-top: 7px;
}

.fp-filter-more > summary {
    padding-top: 12px;
}

.fp-filter-groups {
    margin-top: 11px;
    gap: 14px;
}

.fp-filter-group legend {
    margin-bottom: 6px;
}

.fp-filter-checks {
    gap: 6px;
}

.fp-check {
    min-height: 36px;
    padding: 8px 9px;
    border-radius: 9px;
    font-size: 9px;
}

.fp-filter-card form > .fp-btn {
    min-height: 40px;
    margin-top: 10px;
}

.fp-filter-disclaimer {
    margin-top: 10px;
    font-size: 8px;
    line-height: 1.45;
}

.fp-category-directory {
    margin: 28px 0 0;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 16px;
}

.fp-category-directory > h2 {
    margin: 0 0 18px;
    color: var(--fp-navy, #0b2437);
    font-size: 20px;
    font-weight: 570;
    letter-spacing: -.015em;
    line-height: 1.3;
}

.fp-category-directory__groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 28px;
}

.fp-category-directory__group {
    min-width: 0;
}

.fp-category-directory__group h3 {
    margin: 0 0 9px;
    color: var(--fp-muted, #68808d);
    font-size: 10px;
    font-weight: 670;
    line-height: 1.35;
}

.fp-category-directory__links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}

.fp-category-directory__links a {
    display: grid;
    min-width: 0;
    min-height: 38px;
    padding: 8px 10px;
    color: var(--fp-ink-2, #234253);
    background: #f8fbfa;
    border: 1px solid #e2ebe9;
    border-radius: 9px;
    grid-template-columns: minmax(0, 1fr) 13px;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    font-weight: 580;
    line-height: 1.3;
    transition: color .16s ease, border-color .16s ease, background .16s ease;
}

.fp-category-directory__links a:hover {
    color: var(--fp-accent-dark, #087b6a);
    background: #fff;
    border-color: #b7ddd6;
}

.fp-category-directory__links a span {
    overflow: hidden;
    text-overflow: ellipsis;
}

.fp-category-directory__links svg {
    color: #8da1a9;
}

@media (max-width: 1100px) {
    .fp-category-directory__links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .fp-popular-nav__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 721px) and (max-width: 960px) {
    .fp-filter-more,
    .fp-filter-card form > .fp-btn {
        grid-column: 1 / -1;
    }

    .fp-filter-card form > .fp-btn {
        width: auto;
        min-width: 240px;
        justify-self: start;
    }
}

@media (max-width: 720px) {
    .fp-inner-hero--catalog {
        padding-bottom: 25px;
    }

    .fp-popular-nav {
        overflow: hidden;
        margin-inline: -15px;
        padding-inline: 15px;
    }

    .fp-popular-nav__grid {
        display: flex;
        overflow-x: auto;
        padding-bottom: 4px;
        gap: 7px;
        scrollbar-width: none;
    }

    .fp-popular-nav__grid::-webkit-scrollbar {
        display: none;
    }

    .fp-popular-nav__item {
        flex: 0 0 188px;
        min-height: 48px;
    }

    .fp-filter-more,
    .fp-filter-card form > .fp-btn {
        grid-column: 1 / -1;
    }

    .fp-category-directory {
        padding: 18px;
    }

    .fp-category-directory > h2 {
        margin-bottom: 15px;
        font-size: 18px;
    }

    .fp-category-directory__groups {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .fp-category-directory__links {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .fp-popular-nav__item {
        flex-basis: 174px;
    }

    .fp-filter-card {
        padding: 15px;
    }

    .fp-category-directory__links {
        grid-template-columns: 1fr;
    }
}

/* FinPortal 0.3.1: collapsed directory groups below SEO content */
.fp-category-directory__group {
    overflow: hidden;
    background: #fbfdfc;
    border: 1px solid var(--fp-line, #dce7e5);
    border-radius: 11px;
}

.fp-category-directory__group > summary {
    display: flex;
    min-height: 44px;
    padding: 11px 13px;
    color: var(--fp-ink, #102838);
    cursor: pointer;
    font-size: 11px;
    font-weight: 630;
    line-height: 1.3;
    list-style: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.fp-category-directory__group > summary::-webkit-details-marker {
    display: none;
}

.fp-category-directory__group > summary::after {
    width: 7px;
    height: 7px;
    border-right: 1.5px solid var(--fp-accent-dark, #087b6a);
    border-bottom: 1.5px solid var(--fp-accent-dark, #087b6a);
    content: "";
    flex: 0 0 auto;
    transform: rotate(45deg) translateY(-2px);
    transition: transform .16s ease;
}

.fp-category-directory__group[open] > summary::after {
    transform: rotate(225deg) translate(-2px, -2px);
}

.fp-category-directory__group .fp-category-directory__links {
    padding: 0 10px 10px;
}

/* FinPortal 0.4.0 — Kazakhstan bank directory */
.fp-bank-directory__hero { padding-bottom: 34px; }
.fp-bank-directory__summary { min-width: 188px; padding: 17px 19px; border:1px solid var(--fp-border); border-radius:16px; background:rgba(255,255,255,.76); display:grid; gap:2px; }
.fp-bank-directory__summary strong { color:var(--fp-accent-dark); font-size:30px; line-height:1; }
.fp-bank-directory__summary span { color:var(--fp-ink); font-weight:700; }
.fp-bank-directory__summary small { color:var(--fp-muted); font-size:12px; }
.fp-bank-search { margin:28px 0 16px; min-height:56px; padding:7px 8px 7px 18px; border:1px solid var(--fp-border); border-radius:16px; background:#fff; display:flex; align-items:center; gap:12px; }
.fp-bank-search svg { width:21px; height:21px; fill:none; stroke:var(--fp-muted); stroke-width:1.8; }
.fp-bank-search input { min-width:0; flex:1; border:0; outline:0; background:transparent; color:var(--fp-ink); font:inherit; }
.fp-bank-search button { min-height:42px; padding:0 23px; border:0; border-radius:11px; background:var(--fp-accent); color:#fff; font-weight:700; cursor:pointer; }
.fp-bank-search>a { padding:0 10px; color:var(--fp-muted); font-size:13px; }
.fp-bank-directory__note { margin:0 0 22px; padding:13px 16px; border:1px solid var(--fp-border); border-radius:14px; background:rgba(255,255,255,.58); display:flex; align-items:flex-start; gap:10px; color:var(--fp-muted); }
.fp-bank-directory__note>span { width:22px; height:22px; flex:0 0 22px; border-radius:7px; background:var(--fp-accent-soft); color:var(--fp-accent-dark); display:grid; place-items:center; font-weight:700; }
.fp-bank-directory__note p { margin:1px 0 0; font-size:13px; line-height:1.55; }
.fp-bank-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:14px; padding-bottom:48px; }
.fp-bank-card { min-width:0; padding:20px; border:1px solid var(--fp-border); border-radius:18px; background:#fff; display:flex; flex-direction:column; gap:16px; transition:border-color .2s ease, transform .2s ease; }
.fp-bank-card:hover { border-color:#a9d8d0; transform:translateY(-2px); }
.fp-bank-card__head { display:grid; grid-template-columns:58px minmax(0,1fr); align-items:center; gap:13px; }
.fp-bank-card__logo { width:58px; height:58px; border:1px solid var(--fp-border); border-radius:16px; overflow:hidden; background:#f7fbfa; display:grid; place-items:center; }
.fp-bank-card__logo img { width:100%; height:100%; object-fit:cover; }
.fp-bank-card__head h2 { margin:0 0 5px; font-size:17px; line-height:1.25; }
.fp-bank-card__head h2 a { color:var(--fp-ink); text-decoration:none; }
.fp-bank-card__head p { margin:0; color:var(--fp-muted); font-size:12px; line-height:1.45; }
.fp-bank-card__facts { margin:0; padding:12px 0; border-top:1px solid var(--fp-border); border-bottom:1px solid var(--fp-border); display:grid; grid-template-columns:1.2fr .8fr 1.25fr; gap:10px; }
.fp-bank-card__facts div { min-width:0; }
.fp-bank-card__facts dt { margin-bottom:4px; color:var(--fp-muted); font-size:10px; }
.fp-bank-card__facts dd { margin:0; color:var(--fp-ink); font-size:12px; font-weight:700; overflow-wrap:anywhere; }
.fp-bank-card__facts code,.fp-bank-requisites code { padding:0; background:transparent; color:inherit; font-family:inherit; font-size:inherit; }
.fp-bank-card__footer { margin-top:auto; display:flex; align-items:center; justify-content:space-between; gap:12px; }
.fp-bank-card__footer>span { padding:6px 9px; border-radius:999px; font-size:10px; font-weight:700; }
.fp-bank-card__footer .is-positive { background:#e7f7f2; color:#087a67; }
.fp-bank-card__footer .is-neutral { background:#f3f1ea; color:#77653a; }
.fp-bank-card__footer a { color:var(--fp-accent-dark); font-size:12px; font-weight:700; text-decoration:none; }
.fp-bank-profile__hero { margin:26px 0 22px; padding:24px; border:1px solid var(--fp-border); border-radius:20px; background:#fff; display:grid; grid-template-columns:78px minmax(0,1fr) auto; align-items:center; gap:18px; }
.fp-bank-profile__logo { width:78px; height:78px; border:1px solid var(--fp-border); border-radius:20px; overflow:hidden; background:#f7fbfa; display:grid; place-items:center; }
.fp-bank-profile__logo img { width:100%; height:100%; object-fit:cover; }
.fp-bank-profile__title h1 { margin:7px 0 6px; font-size:clamp(28px,4vw,44px); }
.fp-bank-profile__title>p { margin:0; color:var(--fp-muted); max-width:760px; }
.fp-bank-profile__badges { display:flex; flex-wrap:wrap; gap:7px; }
.fp-bank-profile__badges span { padding:5px 9px; border-radius:999px; background:#f0f5f4; color:var(--fp-muted); font-size:10px; font-weight:700; }
.fp-bank-profile__badges .is-verified { background:#e7f7f2; color:#087a67; }
.fp-bank-info-layout { display:grid; grid-template-columns:minmax(0,1fr) 330px; align-items:start; gap:18px; padding-bottom:24px; }
.fp-bank-info-layout__main { display:grid; gap:18px; }
.fp-bank-legal-name { margin:-3px 0 18px; color:var(--fp-muted); font-size:13px; }
.fp-bank-requisites,.fp-bank-contacts dl { margin:0; display:grid; gap:0; }
.fp-bank-requisites>div,.fp-bank-contacts dl>div { padding:12px 0; border-bottom:1px solid var(--fp-border); display:grid; grid-template-columns:180px minmax(0,1fr); gap:18px; }
.fp-bank-requisites>div:last-child,.fp-bank-contacts dl>div:last-child { border-bottom:0; }
.fp-bank-requisites dt,.fp-bank-contacts dt { color:var(--fp-muted); font-size:12px; }
.fp-bank-requisites dd,.fp-bank-contacts dd { margin:0; color:var(--fp-ink); font-size:13px; line-height:1.55; overflow-wrap:anywhere; }
.fp-bank-deposit-status__row { display:flex; align-items:flex-start; gap:14px; }
.fp-bank-deposit-status__row>span { flex:0 0 auto; padding:7px 10px; border-radius:999px; font-size:11px; font-weight:700; }
.fp-bank-deposit-status__row .is-positive { background:#e7f7f2; color:#087a67; }
.fp-bank-deposit-status__row .is-neutral { background:#f3f1ea; color:#77653a; }
.fp-bank-deposit-status__row p { margin:2px 0 0; color:var(--fp-muted); font-size:13px; line-height:1.6; }
.fp-bank-contacts { position:sticky; top:90px; }
.fp-bank-sources { margin-top:20px; padding-top:18px; border-top:1px solid var(--fp-border); display:grid; gap:8px; }
.fp-bank-sources h3 { margin:0 0 4px; font-size:14px; }
.fp-bank-sources a { padding:10px 12px; border:1px solid var(--fp-border); border-radius:10px; color:var(--fp-ink); text-decoration:none; font-size:12px; display:flex; justify-content:space-between; gap:8px; }
.fp-bank-products-pending { margin:0 0 48px; padding:18px 20px; border:1px solid var(--fp-border); border-radius:16px; background:#fff; display:flex; align-items:center; justify-content:space-between; gap:20px; }
.fp-bank-products-pending strong { display:block; margin-bottom:4px; }
.fp-bank-products-pending p { margin:0; color:var(--fp-muted); font-size:13px; }
.fp-bank-products-pending>a { color:var(--fp-accent-dark); font-weight:700; text-decoration:none; white-space:nowrap; }
@media (max-width:1050px) { .fp-bank-grid{grid-template-columns:repeat(2,minmax(0,1fr));}.fp-bank-info-layout{grid-template-columns:1fr}.fp-bank-contacts{position:static}.fp-bank-profile__hero{grid-template-columns:72px minmax(0,1fr)}.fp-bank-profile__hero>.fp-button{grid-column:1/-1;justify-self:start}.fp-bank-profile__logo{width:72px;height:72px} }
@media (max-width:700px) { .fp-bank-directory__summary{display:none}.fp-bank-search{padding:7px 8px 7px 13px;flex-wrap:wrap}.fp-bank-search input{min-width:calc(100% - 42px)}.fp-bank-search button{flex:1}.fp-bank-grid{grid-template-columns:1fr}.fp-bank-card{padding:17px}.fp-bank-card__facts{grid-template-columns:1fr 1fr}.fp-bank-card__facts>div:last-child{grid-column:1/-1}.fp-bank-profile__hero{padding:18px;grid-template-columns:62px minmax(0,1fr);gap:13px}.fp-bank-profile__logo{width:62px;height:62px;border-radius:16px}.fp-bank-profile__title h1{font-size:28px}.fp-bank-profile__title>p{font-size:13px}.fp-bank-requisites>div,.fp-bank-contacts dl>div{grid-template-columns:1fr;gap:5px}.fp-bank-deposit-status__row{display:grid}.fp-bank-products-pending{align-items:flex-start;flex-direction:column}.fp-bank-products-pending>a{white-space:normal} }


/* FinPortal 0.5.0 — provider transparency */
.fp-provider-badges{display:flex;flex-wrap:wrap;gap:7px;margin:0 0 12px}.fp-provider-badge{display:inline-flex;align-items:center;min-height:25px;padding:4px 9px;border:1px solid #cbdedb;border-radius:999px;background:#f5faf9;color:#315669;font-size:11px;font-weight:650;line-height:1.2}.fp-provider--mfo{border-color:#a9ddd2;background:#eefaf7;color:#087862}.fp-provider--pawnshop{border-color:#d9cbaa;background:#faf7ef;color:#735d2d}.fp-provider--broker,.fp-provider--credit_service{border-color:#c8d7e9;background:#f2f6fb;color:#315e89}.fp-provider--affiliate{border-color:#d5dbe2;background:#f7f8fa;color:#5d6874}.fp-provider--subscription{border-color:#e4c79f;background:#fff7eb;color:#855b1f}.fp-provider-note{margin:0 0 13px;padding-left:11px;border-left:2px solid #c9dedb;color:#597181;font-size:12px;line-height:1.55}.fp-provider-note--detail{margin:4px 0 18px;max-width:850px;font-size:14px}.fp-btn--disabled{display:inline-flex;align-items:center;justify-content:center;background:#e9eef0!important;border-color:#dbe3e6!important;color:#71808a!important;cursor:not-allowed;pointer-events:none}.fp-catalog-disclosure,.fp-provider-alert{margin:0 0 18px;padding:14px 17px;border:1px solid #cfe0dd;border-radius:14px;background:#f7fbfa;color:#345467}.fp-catalog-disclosure strong,.fp-provider-alert strong{display:block;margin-bottom:4px;color:#0b2b3e;font-size:13px}.fp-catalog-disclosure p,.fp-provider-alert p{margin:0;font-size:13px;line-height:1.55}.fp-provider-alert--warning{border-color:#ead1a5;background:#fff8ec;color:#72511e}.fp-product-card__actions .fp-btn--disabled{flex:1}.fp-product-hero-card__badges .fp-provider-badge{vertical-align:middle}.fp-source-list dd{overflow-wrap:anywhere}
@media(max-width:760px){.fp-provider-badges{gap:5px}.fp-provider-badge{font-size:10px}.fp-catalog-disclosure{padding:12px 14px}.fp-product-card__actions .fp-btn--disabled{width:100%}}

/* FinPortal 0.5.1 — compact product cards */
.fp-product-card {
    padding: 16px 17px;
    background: #fff;
    border-color: #d8e5e2;
    border-radius: 15px;
    box-shadow: 0 7px 24px rgba(16, 40, 56, .025);
}

.fp-product-card:hover {
    border-color: #a9d5ce;
    box-shadow: 0 14px 36px rgba(16, 40, 56, .06);
}

.fp-catalog-results .fp-product-card {
    padding: 16px 18px;
}

.fp-product-card__top {
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    align-items: center;
    gap: 16px;
}

.fp-org-mark {
    width: 118px;
    height: 52px;
    background: #f8fbfa;
    border-color: #dce8e6;
    border-radius: 12px;
}

.fp-org-mark img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
}

.fp-org-mark > span {
    font-size: 20px;
    border-radius: inherit;
}

.fp-product-card__heading {
    min-width: 0;
}

.fp-product-card__org {
    margin: 0 0 2px;
    color: #728894;
    font-size: 10px;
    font-weight: 600;
}

.fp-product-card__title-row {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: 10px;
}

.fp-product-card__title-row h3 {
    min-width: 0;
    flex: 0 1 auto;
}

.fp-product-card h3 {
    font-size: 18px;
    font-weight: 620;
    line-height: 1.24;
}

.fp-product-card__title-row > .fp-chip {
    flex: 0 0 auto;
}

.fp-product-card .fp-provider-badges {
    margin: 6px 0 0;
    gap: 5px;
}

.fp-product-card .fp-provider-badge {
    min-height: 21px;
    padding: 3px 7px;
    font-size: 9px;
    font-weight: 650;
}

.fp-product-card__short {
    display: -webkit-box;
    min-height: 0;
    margin: 6px 0 0;
    overflow: hidden;
    color: #617985;
    font-size: 12px;
    line-height: 1.48;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.fp-product-card__tags {
    margin: 10px 0 0;
    gap: 5px;
}

.fp-product-card__tags span {
    min-height: 21px;
    padding: 3px 7px;
    background: #f7faf9;
    border-color: #e0e9e7;
    font-size: 8.5px;
}

.fp-provider-note--card {
    margin: 10px 0 0;
    padding: 8px 10px;
    color: #536b78;
    background: #f8faf9;
    border: 1px solid #e0e9e7;
    border-left: 3px solid #b8d9d3;
    border-radius: 9px;
    font-size: 10.5px;
    line-height: 1.42;
}

.fp-product-card__bottom {
    display: grid;
    margin-top: 11px;
    padding-top: 11px;
    border-top: 1px solid #e2ebe9;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 10px;
}

.fp-catalog-results .fp-product-card__bottom {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 16px;
}

.fp-product-card__specs {
    display: grid;
    padding: 0;
    border: 0;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
}

.fp-product-card__specs > div,
.fp-product-card__specs > div:first-child,
.fp-product-card__specs > div:last-child {
    min-width: 0;
    min-height: 52px;
    padding: 8px 10px;
    background: #f7faf9;
    border: 1px solid #e1ebe9;
    border-radius: 10px;
}

.fp-product-card__specs > div {
    border-right: 1px solid #e1ebe9;
}

.fp-product-card__specs span {
    margin: 0 0 4px;
    color: #718792;
    font-size: 8.5px;
}

.fp-product-card__specs strong {
    overflow: visible;
    color: #102838;
    font-size: 11.5px;
    font-weight: 680;
    line-height: 1.3;
    text-overflow: clip;
    white-space: normal;
}

.fp-product-card__actions {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 7px;
}

.fp-product-card__actions .fp-btn {
    min-height: 38px;
    padding: 8px 14px;
    flex: 0 0 auto;
    font-size: 11px;
}

.fp-product-card__actions .fp-btn--primary {
    min-width: 146px;
}

.fp-product-card__actions .fp-btn--ghost {
    min-width: 96px;
}

.fp-product-card__actions .fp-btn--disabled {
    max-width: 220px;
    min-width: 180px;
}

.fp-product-card__actions .fp-icon-btn,
.fp-product-card__actions .fp-icon-btn:hover {
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 9px;
}

.fp-product-card__actions .fp-icon-btn svg {
    width: 17px;
}

.fp-product-grid .fp-product-card__top {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 13px;
}

.fp-product-grid .fp-org-mark {
    width: 100px;
    height: 46px;
}

.fp-product-grid .fp-product-card__bottom {
    grid-template-columns: 1fr;
}

.fp-product-grid .fp-product-card__actions {
    justify-content: stretch;
}

.fp-product-grid .fp-product-card__actions .fp-btn {
    min-width: 0;
    flex: 1 1 0;
}

@media (max-width: 1080px) {
    .fp-catalog-results .fp-product-card__bottom {
        grid-template-columns: 1fr;
    }

    .fp-catalog-results .fp-product-card__actions {
        justify-content: flex-start;
    }
}

@media (max-width: 760px) {
    .fp-product-card,
    .fp-catalog-results .fp-product-card {
        padding: 14px;
        border-radius: 14px;
    }

    .fp-product-card__top,
    .fp-product-grid .fp-product-card__top {
        grid-template-columns: 92px minmax(0, 1fr);
        align-items: start;
        gap: 11px;
    }

    .fp-org-mark,
    .fp-product-grid .fp-org-mark {
        width: 92px;
        height: 42px;
        border-radius: 10px;
    }

    .fp-product-card h3 {
        font-size: 16px;
        line-height: 1.25;
    }

    .fp-product-card__title-row {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 5px 8px;
    }

    .fp-product-card__title-row > .fp-chip {
        min-height: 20px;
        padding: 3px 7px;
        font-size: 8.5px;
    }

    .fp-product-card .fp-provider-badges {
        margin-top: 5px;
    }

    .fp-product-card .fp-provider-badge {
        min-height: 20px;
        padding: 3px 6px;
        font-size: 8.5px;
    }

    .fp-product-card__short {
        margin-top: 5px;
        font-size: 11px;
        line-height: 1.4;
    }

    .fp-product-card__tags {
        overflow-x: auto;
        margin-top: 9px;
        padding-bottom: 1px;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }

    .fp-product-card__tags::-webkit-scrollbar {
        display: none;
    }

    .fp-product-card__tags span {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .fp-provider-note--card {
        margin-top: 9px;
        padding: 7px 9px;
        font-size: 10px;
    }

    .fp-product-card__bottom,
    .fp-catalog-results .fp-product-card__bottom {
        margin-top: 9px;
        padding-top: 9px;
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .fp-product-card__specs {
        gap: 5px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .fp-product-card__specs > div,
    .fp-product-card__specs > div:first-child,
    .fp-product-card__specs > div:last-child {
        display: block;
        min-height: 50px;
        padding: 7px 7px;
    }

    .fp-product-card__specs span,
    .fp-product-card__specs strong {
        display: block;
        margin: 0;
        text-align: left;
    }

    .fp-product-card__specs span {
        margin-bottom: 4px;
        font-size: 8px;
    }

    .fp-product-card__specs strong {
        font-size: 10px;
        line-height: 1.27;
    }

    .fp-product-card__actions,
    .fp-catalog-results .fp-product-card__actions,
    .fp-product-grid .fp-product-card__actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(82px, auto) 38px;
        justify-content: stretch;
        gap: 6px;
    }

    .fp-product-card__actions .fp-btn,
    .fp-product-grid .fp-product-card__actions .fp-btn {
        min-width: 0;
        min-height: 38px;
        padding: 8px 9px;
        font-size: 10.5px;
    }

    .fp-product-card__actions .fp-btn--disabled {
        max-width: none;
        grid-column: 1 / 3;
    }
}

@media (max-width: 430px) {
    .fp-product-card__top,
    .fp-product-grid .fp-product-card__top {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 10px;
    }

    .fp-org-mark,
    .fp-product-grid .fp-org-mark {
        width: 82px;
        height: 38px;
    }

    .fp-product-card h3 {
        font-size: 15px;
    }

    .fp-product-card__specs strong {
        font-size: 9.5px;
    }

    .fp-product-card__actions,
    .fp-catalog-results .fp-product-card__actions,
    .fp-product-grid .fp-product-card__actions {
        grid-template-columns: minmax(0, 1fr) 78px 36px;
    }

    .fp-product-card__actions .fp-icon-btn,
    .fp-product-card__actions .fp-icon-btn:hover {
        width: 36px;
        height: 38px;
        flex-basis: 36px;
    }
}

/* FinPortal 0.5.2 — resilient brand icons and route-safe pagination */
.fp-logo-fallback[hidden],
img[data-fp-logo][hidden] {
    display: none !important;
}

.fp-org-mark,
.fp-product-logo,
.fp-organization-profile__logo,
.fp-bank-card__logo,
.fp-bank-profile__logo,
.fp-org-pill {
    overflow: hidden;
}

.fp-org-mark img,
.fp-product-logo img,
.fp-organization-profile__logo img,
.fp-bank-card__logo img,
.fp-bank-profile__logo img,
.fp-org-pill img {
    background: #fff;
    object-fit: contain;
}

.fp-pagination__ellipsis > span {
    color: #93a5ae !important;
    background: transparent !important;
    border-color: transparent !important;
}


/* FinPortal 0.6.0: bank product data quality and structured conditions */
.fp-provider--partial{background:#fff7e8;border-color:#efd7a5;color:#7a5215}
.fp-condition-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:0;border:1px solid var(--fp-border);border-radius:16px;overflow:hidden;margin:0}
.fp-condition-list>div{display:grid;grid-template-columns:minmax(130px,.7fr) minmax(0,1.3fr);gap:16px;padding:15px 17px;border-bottom:1px solid var(--fp-border);background:#fff}
.fp-condition-list>div:nth-last-child(-n+2){border-bottom:0}
.fp-condition-list>div:nth-child(odd){border-right:1px solid var(--fp-border)}
.fp-condition-list dt{font-size:12px;color:var(--fp-muted);font-weight:600}
.fp-condition-list dd{margin:0;font-size:14px;line-height:1.5;color:var(--fp-ink)}
.fp-data-note{margin:14px 0 0;padding:12px 14px;border-radius:12px;background:#fff8e8;border:1px solid #efd8a7;color:#735019;font-size:13px;line-height:1.5}
@media(max-width:760px){.fp-condition-list{grid-template-columns:1fr}.fp-condition-list>div{grid-template-columns:1fr;gap:5px;border-right:0!important;border-bottom:1px solid var(--fp-border)!important}.fp-condition-list>div:last-child{border-bottom:0!important}}

/* FinPortal 0.7.0 — bank card catalogue */
.fp-product-card--card .fp-provider--bank {
    color: #315669;
    background: #f3f7f7;
    border-color: #d8e4e2;
}

.fp-product-card--card .fp-product-card__short {
    max-width: 920px;
}

.fp-product-card--card .fp-product-card__specs > div {
    background: #f8fbfa;
}

.fp-product-card--card .fp-product-card__tags span {
    color: #315667;
    background: #f4f8f7;
}

.fp-card-tariff-note {
    margin: 13px 0 0;
    padding: 12px 14px;
    color: #45616f;
    background: #f7faf9;
    border: 1px solid #dfe9e7;
    border-radius: 12px;
    font-size: 12.5px;
    line-height: 1.55;
}

.fp-card-tariff-note strong {
    color: #153444;
}

.fp-condition-list--card > div {
    min-height: 68px;
    align-content: center;
}

.fp-card-conditions .fp-data-note {
    margin-top: 13px;
}

.fp-compare-table td .fp-btn {
    margin-bottom: 10px;
}

.fp-compare-table td .fp-text-link {
    display: block;
}

.fp-catalog--cards .fp-filter-card {
    align-self: start;
}

@media (max-width: 760px) {
    .fp-card-tariff-note {
        padding: 11px 12px;
        font-size: 11.5px;
    }

    .fp-condition-list--card > div {
        min-height: 0;
    }
}


/* FinPortal 0.8.0: bank deposit catalogue */
.fp-product-card--deposit .fp-provider--bank{background:#eef8f5;border-color:#b9ded4;color:#176756}
.fp-product-card--deposit .fp-product-card__tags span{background:#f2f8f6;border-color:#d4e8e2;color:#365f56}
.fp-deposit-note{margin:14px 0 0;padding:12px 14px;border:1px solid var(--fp-border);border-radius:12px;background:#f7faf9;color:var(--fp-muted);font-size:13px;line-height:1.55}
.fp-deposit-note strong{color:var(--fp-ink)}
.fp-deposit-rate-table{overflow-x:auto}
.fp-deposit-rate-table table,.fp-richtext table{width:100%;border-collapse:collapse;margin:14px 0 4px;font-size:14px}
.fp-deposit-rate-table th,.fp-deposit-rate-table td,.fp-richtext table th,.fp-richtext table td{padding:11px 12px;border:1px solid var(--fp-border);text-align:left;vertical-align:top}
.fp-deposit-rate-table th,.fp-richtext table th{background:#f2f7f6;color:var(--fp-ink);font-weight:700}
.fp-condition-list--deposit>div{min-height:58px}
@media(max-width:760px){.fp-deposit-note{padding:11px 12px}.fp-deposit-rate-table table,.fp-richtext table{min-width:560px}}

/* FinPortal 0.9.2 — stable logo sizing in product cards */
.fp-org-mark,
.fp-product-logo,
.fp-organization-card__logo,
.fp-organization-profile__logo,
.fp-bank-card__logo,
.fp-bank-profile__logo,
.fp-org-pill {
    box-sizing: border-box;
    padding: 6px;
    background: #fff;
    align-items: center;
    justify-content: center;
    place-items: center;
}

.fp-org-mark img[data-fp-logo],
.fp-product-logo img[data-fp-logo],
.fp-organization-card__logo img[data-fp-logo],
.fp-organization-profile__logo img[data-fp-logo],
.fp-bank-card__logo img[data-fp-logo],
.fp-bank-profile__logo img[data-fp-logo],
.fp-org-pill img[data-fp-logo] {
    display: block !important;
    width: auto !important;
    height: auto !important;
    min-width: 0 !important;
    min-height: 0 !important;
    max-width: 100% !important;
    max-height: 100% !important;
    margin: auto !important;
    padding: 0 !important;
    background: transparent !important;
    object-fit: contain !important;
    object-position: center !important;
    transform: none !important;
}

.fp-org-mark {
    padding: 5px 7px;
}

.fp-product-logo {
    padding: 7px;
}

.fp-bank-card__logo,
.fp-bank-profile__logo,
.fp-organization-profile__logo {
    padding: 7px;
}

@media (max-width: 760px) {
    .fp-org-mark {
        padding: 4px 6px;
    }
}

