:root {
    --fb-primary: #453a87;
    --fb-primary-dark: #332b66;
    --fb-primary-strong: #2f275f;
    --fb-primary-soft: #eeeaf7;
    --fb-heading: #3b3273;
    --fb-accent: #ee6c9b;
    --fb-accent-dark: #c44760;
    --fb-accent-soft: #fbe8ee;
    --fb-dove-blue: #9fbfd4;
    --fb-dove-light: #d9e7f0;
    --fb-wing-purple: #a08cc8;
    --fb-cream: #f9efdc;
    --fb-bg: #f6f3f8;
    --fb-surface: #ffffff;
    --fb-surface-alt: #faf9fc;
    --fb-text: #373344;
    --fb-text-muted: #726d7e;
    --fb-border: #e7e2ef;
    --fb-success: #2f9e57;
    --fb-danger: #d84c61;
    --fb-radius-sm: .5rem;
    --fb-radius-md: .75rem;
    --fb-radius-lg: 1rem;
    --fb-radius-xl: 1.35rem;
    --fb-radius-shell: 1.4rem;
    --fb-shadow-sm: 0 3px 12px rgba(69, 58, 135, .07);
    --fb-shadow-card: 0 8px 28px rgba(69, 58, 135, .09);
    --fb-shadow-hover: 0 16px 38px rgba(69, 58, 135, .15);
    --fb-shadow-shell: 0 24px 70px rgba(51, 43, 102, .13);
    --fb-font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --fb-font-heading: "Avenir Next", "Nunito Sans", Inter, ui-sans-serif, system-ui, sans-serif;
    --fb-hero-image: url("../images/hero-default.webp");
    --fb-topbar-height: 38px;
    --fb-header-height: 72px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: calc(var(--fb-header-height) + 1.25rem);
}

body {
    min-width: 320px;
    margin: 0;
    color: var(--fb-text);
    background:
        radial-gradient(circle at 50% -10%, rgba(238, 108, 155, .08), transparent 30rem),
        var(--fb-bg);
    font-family: var(--fb-font-body);
    font-size: 1rem;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
}

svg {
    display: block;
}

button,
input,
select,
textarea {
    font: inherit;
}

a {
    color: var(--fb-primary);
    text-decoration-thickness: .08em;
    text-underline-offset: .18em;
}

a:hover {
    color: var(--fb-primary-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    color: var(--fb-heading);
    font-family: var(--fb-font-heading);
    font-weight: 800;
    line-height: 1.16;
    letter-spacing: -.018em;
}

h1 {
    font-size: clamp(2.1rem, 3.8vw, 3.35rem);
}

h2 {
    font-size: clamp(1.65rem, 2.7vw, 2.25rem);
}

h3 {
    font-size: clamp(1.1rem, 1.6vw, 1.3rem);
}

p:last-child {
    margin-bottom: 0;
}

:focus-visible {
    outline: 3px solid rgba(238, 108, 155, .7);
    outline-offset: 3px;
}

.container-xxl {
    --bs-gutter-x: 2rem;
}

.fb-skip-link {
    position: fixed;
    top: .75rem;
    left: .75rem;
    z-index: 10000;
    transform: translateY(-180%);
    border-radius: var(--fb-radius-sm);
    background: var(--fb-surface);
    box-shadow: var(--fb-shadow-card);
    padding: .8rem 1rem;
    font-weight: 700;
}

.fb-skip-link:focus {
    transform: translateY(0);
}

.fb-site-shell {
    min-height: 100vh;
    background: var(--fb-surface);
}

.has-site-shell .fb-site-shell {
    width: min(calc(100% - 2rem), 1500px);
    margin: 1rem auto;
    overflow: clip;
    border-radius: var(--fb-radius-shell);
    box-shadow: var(--fb-shadow-shell);
}

.fb-topbar {
    position: relative;
    z-index: 1060;
    min-height: var(--fb-topbar-height);
    color: #fff;
    background: linear-gradient(90deg, var(--fb-primary-dark), var(--fb-primary), #3c306e);
    font-size: .78rem;
}

.fb-topbar a {
    color: inherit;
    text-decoration: none;
}

.fb-topbar__inner {
    display: flex;
    min-height: var(--fb-topbar-height);
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.fb-topbar__left,
.fb-topbar__right,
.fb-topbar__right .mod-custom {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.fb-topbar__claim {
    overflow: hidden;
    max-width: 60vw;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fb-topbar-button {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    gap: .4rem;
    border: 1px solid transparent;
    border-radius: .4rem;
    padding: .32rem .85rem;
    font-size: .76rem;
    font-weight: 750;
    line-height: 1;
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease;
}

.fb-topbar-button:hover {
    transform: translateY(-1px);
    color: #fff;
}

.fb-topbar-button--donate {
    background: linear-gradient(135deg, var(--fb-accent), #e98699);
    box-shadow: 0 4px 12px rgba(196, 71, 96, .26);
}

.fb-topbar-button--light {
    color: var(--fb-primary-dark) !important;
    background: #fff;
    border-color: rgba(255, 255, 255, .6);
}

.fb-topbar-button--light:hover {
    color: var(--fb-primary-dark) !important;
    background: #f8f6fb;
}

.fb-icon {
    width: 1rem;
    height: 1rem;
    flex: 0 0 1rem;
}

.fb-header {
    position: relative;
    z-index: 1050;
    min-height: var(--fb-header-height);
    border-bottom: 1px solid rgba(69, 58, 135, .07);
    background: rgba(255, 255, 255, .98);
    transition: box-shadow .2s ease, background-color .2s ease;
}

.fb-header.is-sticky-enabled {
    position: sticky;
    top: 0;
}

.fb-header.is-scrolled {
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 10px 28px rgba(51, 43, 102, .11);
    backdrop-filter: blur(14px);
}

.fb-header__inner {
    position: relative;
    display: flex;
    min-height: var(--fb-header-height);
    align-items: center;
    gap: 1.25rem;
    padding-left: 5.75rem;
}

.fb-header.has-overlap-brand .fb-header__inner {
    padding-left: 8.35rem;
}

.fb-brand {
    position: absolute;
    top: .3rem;
    left: calc(var(--bs-gutter-x, 2rem) * .5);
    z-index: 4;
    display: grid;
    width: 4.3rem;
    height: 4.3rem;
    place-items: center;
    border: 1px solid rgba(69, 58, 135, .07);
    border-radius: .9rem;
    background: #fff;
    padding: .35rem;
    box-shadow: var(--fb-shadow-sm);
}

.fb-header.has-overlap-brand .fb-brand {
    top: 0;
    width: 7.35rem;
    height: 7.35rem;
    border-top: 0;
    border-radius: 0 0 .9rem .9rem;
    padding: .65rem;
    box-shadow: 0 10px 22px rgba(51, 43, 102, .08);
}

.fb-brand img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fb-desktop-nav {
    min-width: 0;
    flex: 1 1 auto;
    align-items: center;
    justify-content: flex-end;
}

.fb-menu {
    display: flex;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: .05rem;
    list-style: none;
}

.fb-menu > .nav-item {
    position: relative;
}

.fb-menu__item {
    display: flex;
    align-items: center;
}

.fb-menu a,
.fb-menu .nav-header,
.fb-menu .separator {
    position: relative;
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    border-radius: .5rem;
    padding: .62rem .62rem;
    color: #171421;
    font-size: .89rem;
    font-weight: 650;
    line-height: 1.15;
    text-decoration: none;
    white-space: nowrap;
    transition: color .18s ease, background-color .18s ease;
}

.fb-menu > .active > .fb-menu__item > a,
.fb-menu > .current > .fb-menu__item > a,
.fb-menu a:hover,
.fb-menu a:focus-visible {
    color: var(--fb-primary);
    background: var(--fb-primary-soft);
}

.fb-menu > .active > .fb-menu__item > a::after,
.fb-menu > .current > .fb-menu__item > a::after {
    position: absolute;
    right: .65rem;
    bottom: .25rem;
    left: .65rem;
    height: 2px;
    border-radius: 999px;
    background: var(--fb-accent);
    content: "";
}

.fb-submenu-toggle {
    display: inline-grid;
    width: 1.9rem;
    height: 1.9rem;
    margin-left: -.35rem;
    place-items: center;
    border: 0;
    border-radius: .42rem;
    color: var(--fb-primary);
    background: transparent;
}

.fb-submenu-toggle:hover,
.fb-submenu-toggle:focus-visible {
    background: var(--fb-primary-soft);
}

.fb-submenu-toggle svg {
    width: 1rem;
    height: 1rem;
    transition: transform .18s ease;
}

.is-submenu-open > .fb-menu__item .fb-submenu-toggle svg {
    transform: rotate(180deg);
}

.fb-menu .mod-menu__sub {
    position: absolute;
    top: calc(100% + .35rem);
    left: 0;
    z-index: 1080;
    display: none;
    min-width: 14rem;
    margin: 0;
    border: 1px solid var(--fb-border);
    border-radius: var(--fb-radius-md);
    background: #fff;
    box-shadow: var(--fb-shadow-card);
    padding: .5rem;
    list-style: none;
}

.fb-menu .parent:hover > .mod-menu__sub,
.fb-menu .parent:focus-within > .mod-menu__sub,
.fb-menu .parent.is-submenu-open > .mod-menu__sub {
    display: block;
}

.fb-menu .mod-menu__sub a,
.fb-menu .mod-menu__sub .nav-header,
.fb-menu .mod-menu__sub .separator {
    width: 100%;
    min-height: 40px;
    padding: .6rem .7rem;
    font-size: .88rem;
    white-space: normal;
}

.fb-menu .mod-menu__sub .mod-menu__sub {
    top: 0;
    left: calc(100% + .5rem);
}

.fb-header-tools {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: .65rem;
}

.fb-search .form-control,
.fb-search input[type="search"] {
    width: 11rem;
    min-height: 40px;
    border-color: var(--fb-border);
    border-radius: 999px;
    padding-left: 1rem;
}

.fb-menu-toggle {
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--fb-border);
    border-radius: .65rem;
    color: var(--fb-primary);
    background: #fff;
}

.fb-menu-toggle svg {
    width: 1.5rem;
    height: 1.5rem;
}

.fb-menu-toggle:hover {
    background: var(--fb-primary-soft);
}

.fb-hero {
    position: relative;
    min-height: clamp(500px, 46vw, 610px);
    overflow: hidden;
    background:
        linear-gradient(100deg, rgba(255, 255, 255, .995) 0%, rgba(255, 255, 255, .975) 26%, rgba(250, 248, 252, .86) 45%, rgba(255, 255, 255, .28) 69%, rgba(255, 255, 255, 0) 100%),
        var(--fb-hero-image) 62% center / cover no-repeat;
}

.fb-hero::before {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 76% 24%, rgba(160, 140, 200, .11), transparent 32%),
        linear-gradient(180deg, transparent 72%, rgba(51, 43, 102, .07) 100%);
    content: "";
    pointer-events: none;
}

.fb-hero__inner {
    position: relative;
    z-index: 1;
    display: flex;
    min-height: inherit;
    align-items: center;
    padding-top: 4.75rem;
    padding-bottom: 7.6rem;
}

.fb-hero__inner > .moduletable,
.fb-hero__inner > .mod-custom,
.fb-hero-copy {
    width: min(100%, 35rem);
}

.fb-hero-kicker,
.fb-section-kicker {
    margin: 0 0 .55rem;
    color: var(--fb-accent-dark);
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.fb-hero h1,
.fb-hero .fb-hero-title {
    max-width: 13ch;
    margin: 0 0 1rem;
    color: var(--fb-heading);
    font-size: clamp(2.45rem, 4.2vw, 3.85rem);
    line-height: 1.04;
    letter-spacing: -.042em;
    text-wrap: balance;
}

.fb-hero p,
.fb-hero-lead {
    max-width: 49ch;
    margin-bottom: 1.35rem;
    color: #292533;
    font-size: clamp(.98rem, 1.25vw, 1.08rem);
    line-height: 1.58;
}

.fb-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 1.1rem;
}

.fb-hero-actions .btn {
    margin: 0;
}

.fb-button-icon {
    width: 1.05rem;
    height: 1.05rem;
    flex: 0 0 1.05rem;
}

.fb-feature-top {
    position: relative;
    z-index: 3;
    padding: 2rem 0 1.5rem;
    background: #fff;
}

.fb-feature-top.has-hero-overlap {
    margin-top: -4.5rem;
    padding-top: 0;
}

.fb-feature-card,
.fb-module-card,
.fb-news-card,
.fb-cta-card {
    border: 1px solid rgba(69, 58, 135, .09);
    border-radius: var(--fb-radius-lg);
    background: #fff;
    box-shadow: var(--fb-shadow-card);
}

.fb-feature-card {
    height: 100%;
    padding: 1.35rem 1.45rem;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.fb-feature-card--default {
    display: grid;
    grid-template-columns: 3.15rem minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.fb-feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(69, 58, 135, .17);
    box-shadow: var(--fb-shadow-hover);
}

.fb-feature-card__icon {
    display: grid;
    width: 3.15rem;
    height: 3.15rem;
    place-items: center;
    border-radius: .85rem;
    color: var(--fb-primary);
    background: linear-gradient(135deg, var(--fb-primary-soft), #f7f4fb);
}

.fb-feature-card__svg {
    width: 2rem;
    height: 2rem;
}

.fb-feature-card__body {
    min-width: 0;
}

.fb-feature-card__title {
    margin: .1rem 0 .45rem;
    font-size: 1rem;
    line-height: 1.25;
}

.fb-feature-card__content,
.fb-feature-card p {
    margin: 0;
    color: #4a4653;
    font-size: .86rem;
    line-height: 1.48;
}

.fb-main {
    background: #fff;
}

.fb-message-area:empty,
.fb-message-area .joomla-alert--hidden {
    display: none;
}

.fb-message-area .alert-wrapper {
    padding-top: 1rem;
}

.fb-breadcrumbs {
    border-top: 1px solid var(--fb-border);
    border-bottom: 1px solid var(--fb-border);
    background: var(--fb-surface-alt);
    padding: .72rem 0;
}

.fb-breadcrumbs .breadcrumb {
    margin: 0;
    font-size: .88rem;
}

.fb-component-area {
    padding-top: 3.75rem;
    padding-bottom: 4rem;
}

.fb-component-area--home {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.fb-component {
    min-width: 0;
}

.fb-component > :first-child {
    margin-top: 0;
}

.fb-component .page-header,
.fb-component .fb-page-header {
    margin-bottom: 1.5rem;
}

.fb-component .page-header h1,
.fb-component .fb-page-header h1,
.fb-component h1:first-child {
    margin-bottom: .65rem;
    font-size: clamp(2rem, 3vw, 2.75rem);
}

.fb-section {
    padding: 4.25rem 0;
}

.fb-main-top {
    background: var(--fb-surface-alt);
}

.fb-main-bottom,
.fb-default-news {
    background: #fff;
}

.fb-default-news {
    padding-top: 2.5rem;
}

.fb-section-module + .fb-section-module {
    margin-top: 2.5rem;
}

.fb-section-title {
    margin: 0 0 1.4rem;
}

.fb-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.45rem;
}

.fb-section-heading h2 {
    margin: 0;
    font-size: clamp(1.6rem, 2.5vw, 2rem);
}

.fb-section-link {
    display: inline-flex;
    min-height: 42px;
    flex: 0 0 auto;
    align-items: center;
    gap: .35rem;
    border-radius: .55rem;
    padding: .55rem .75rem;
    font-size: .86rem;
    font-weight: 700;
    text-decoration: none;
}

.fb-section-link:hover {
    background: var(--fb-primary-soft);
}

.fb-section-link__icon {
    width: 1rem;
    height: 1rem;
}

.fb-module-card {
    margin-bottom: 1.35rem;
    padding: 1.35rem;
}

.fb-module-title {
    margin: 0 0 .9rem;
    font-size: 1.08rem;
}

.fb-sidebar .fb-module-card:last-child {
    margin-bottom: 0;
}

.fb-news-grid,
.blog-items,
.com-content-category-blog .blog-items {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.fb-news-card,
.blog-item {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(69, 58, 135, .09);
    border-radius: var(--fb-radius-lg);
    background: #fff;
    box-shadow: var(--fb-shadow-card);
    transition: transform .22s ease, box-shadow .22s ease;
}

.fb-news-card:hover,
.blog-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--fb-shadow-hover);
}

.fb-news-card__media,
.blog-item .item-image {
    display: block;
    aspect-ratio: 16 / 6.5;
    overflow: hidden;
    background: var(--fb-dove-light);
}

.fb-news-card__media img,
.blog-item .item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.fb-news-card:hover .fb-news-card__media img,
.blog-item:hover .item-image img {
    transform: scale(1.035);
}

.fb-news-card__body,
.blog-item .item-content {
    padding: 1.05rem 1.1rem 1.2rem;
}

.fb-news-card__date,
.article-info dd,
.article-info-term {
    color: var(--fb-text-muted);
    font-size: .75rem;
}

.fb-news-card__title {
    margin: .3rem 0 .45rem;
    font-size: 1rem;
    line-height: 1.3;
}

.fb-news-card__title a {
    color: var(--fb-heading);
    text-decoration: none;
}

.fb-news-card__intro {
    display: -webkit-box;
    overflow: hidden;
    margin: 0;
    color: var(--fb-text);
    font-size: .84rem;
    line-height: 1.48;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.item-page .item-image {
    overflow: hidden;
    margin-bottom: 1.5rem;
    border-radius: var(--fb-radius-lg);
}

.item-page .item-image img {
    width: 100%;
}

.tags,
.com-tags-tag__category {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
}

.tags .tag,
.tags a {
    border-radius: 999px;
    background: var(--fb-primary-soft);
    padding: .3rem .65rem;
    color: var(--fb-primary);
    font-size: .82rem;
    text-decoration: none;
}

.fb-benefits {
    border-top: 1px solid var(--fb-border);
    border-bottom: 1px solid var(--fb-border);
    background: linear-gradient(180deg, #fff, var(--fb-surface-alt));
    padding: 2.5rem 0;
}

.fb-benefit {
    height: 100%;
}

.fb-benefit--default {
    display: grid;
    grid-template-columns: 2.7rem minmax(0, 1fr);
    gap: .75rem;
    align-items: start;
    text-align: left;
}

.fb-benefit__icon {
    display: grid;
    width: 2.7rem;
    height: 2.7rem;
    place-items: center;
    color: var(--fb-primary);
}

.fb-benefit__svg {
    width: 2.35rem;
    height: 2.35rem;
}

.fb-benefit__title {
    margin: 0 0 .22rem;
    font-size: .86rem;
    line-height: 1.25;
}

.fb-benefit__content {
    margin: 0;
    color: var(--fb-text-muted);
    font-size: .74rem;
    line-height: 1.38;
}

.fb-benefit__content svg,
.fb-benefit__content .icon {
    width: 2.4rem;
    height: 2.4rem;
    color: var(--fb-primary);
}

.fb-cta-section {
    background: #fff;
}

.fb-cta-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    padding: 1.55rem 1.7rem;
}

.fb-cta-card--light {
    border-color: rgba(238, 108, 155, .4);
    background: linear-gradient(135deg, #fff, var(--fb-accent-soft));
}

.fb-cta-card--dark {
    color: #fff;
    border-color: transparent;
    background: linear-gradient(120deg, var(--fb-primary), #5b4a9e);
}

.fb-cta-card__title {
    margin: 0 0 .6rem;
    font-size: 1.2rem;
}

.fb-cta-card--dark .fb-cta-card__title,
.fb-cta-card--dark h2,
.fb-cta-card--dark h3,
.fb-cta-card--dark a {
    color: #fff;
}

.fb-default-cta {
    display: grid;
    grid-template-columns: 4.3rem minmax(0, 1fr) auto;
    gap: 1.35rem;
    align-items: center;
    border: 1px solid rgba(238, 108, 155, .36);
    border-radius: var(--fb-radius-xl);
    background:
        radial-gradient(circle at 90% 10%, rgba(238, 108, 155, .16), transparent 18rem),
        linear-gradient(135deg, #fff, #fbf6fa);
    box-shadow: var(--fb-shadow-card);
    padding: 1.65rem 1.8rem;
}

.fb-default-cta__icon {
    display: grid;
    width: 4.3rem;
    height: 4.3rem;
    place-items: center;
    border-radius: 1rem;
    color: var(--fb-accent-dark);
    background: var(--fb-accent-soft);
}

.fb-default-cta__svg {
    width: 2.4rem;
    height: 2.4rem;
}

.fb-default-cta__copy h2 {
    margin: 0 0 .4rem;
    font-size: clamp(1.4rem, 2.2vw, 1.85rem);
}

.fb-default-cta__copy p:last-child {
    color: var(--fb-text-muted);
}

.fb-footer {
    position: relative;
    overflow: hidden;
    color: rgba(255, 255, 255, .84);
    background:
        radial-gradient(circle at 90% 0%, rgba(160, 140, 200, .18), transparent 22rem),
        linear-gradient(135deg, var(--fb-primary-dark), #241d48);
    padding: 3.5rem 0 1.3rem;
}

.fb-footer a {
    color: #fff;
}

.fb-footer__grid,
.fb-default-footer {
    position: relative;
    z-index: 1;
}

.fb-footer-module__title {
    margin: 0 0 .9rem;
    color: #fff;
    font-size: 1rem;
}

.fb-footer-module ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.fb-footer-module li + li {
    margin-top: .45rem;
}

.fb-footer-module a {
    text-decoration: none;
}

.fb-footer-module a:hover {
    text-decoration: underline;
}

.fb-default-footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
}

.fb-default-footer__brand {
    display: flex;
    max-width: 43rem;
    align-items: center;
    gap: 1rem;
}

.fb-default-footer__brand img {
    width: 5.25rem;
    height: 5.25rem;
    flex: 0 0 5.25rem;
    border-radius: 50%;
    background: #fff;
    padding: .25rem;
}

.fb-default-footer__brand h2 {
    margin: 0 0 .35rem;
    color: #fff;
    font-size: 1.2rem;
}

.fb-default-footer__brand p {
    color: rgba(255, 255, 255, .75);
    font-size: .88rem;
}

.fb-default-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: .45rem 1rem;
}

.fb-default-footer__nav a {
    font-size: .86rem;
    font-weight: 650;
    text-decoration: none;
}

.fb-footer__bottom {
    position: relative;
    display: flex;
    min-height: 4.5rem;
    margin-top: 2.4rem;
    align-items: flex-end;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .14);
    padding-top: 1rem;
    font-size: .8rem;
}

.fb-footer__bottom p {
    margin: 0;
}

.fb-footer__watermark {
    position: absolute;
    right: 0;
    bottom: -1.2rem;
    width: 7.5rem;
    opacity: .11;
    filter: grayscale(1) brightness(4);
    pointer-events: none;
}

.fb-offcanvas {
    color: #fff;
    background: linear-gradient(180deg, var(--fb-primary), var(--fb-primary-dark));
}

.fb-offcanvas .offcanvas-header {
    border-bottom: 1px solid rgba(255, 255, 255, .15);
}

.fb-offcanvas__brand {
    display: flex;
    min-width: 0;
    align-items: center;
    gap: .75rem;
    color: #fff;
    font-weight: 800;
}

.fb-offcanvas__brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fb-offcanvas__brand img {
    width: 3.5rem;
    height: 3.5rem;
    flex: 0 0 3.5rem;
    border-radius: 50%;
    background: #fff;
    padding: .2rem;
}

.fb-offcanvas .fb-menu {
    display: block;
}

.fb-offcanvas .fb-menu > .nav-item,
.fb-offcanvas .fb-menu .nav-item {
    width: 100%;
}

.fb-offcanvas .fb-menu__item {
    width: 100%;
}

.fb-offcanvas .fb-menu a,
.fb-offcanvas .fb-menu .nav-header,
.fb-offcanvas .fb-menu .separator {
    width: 100%;
    color: #fff;
    white-space: normal;
}

.fb-offcanvas .fb-menu a:hover,
.fb-offcanvas .fb-menu a:focus-visible,
.fb-offcanvas .fb-menu .active > .fb-menu__item > a,
.fb-offcanvas .fb-menu .current > .fb-menu__item > a {
    color: #fff;
    background: rgba(255, 255, 255, .12);
}

.fb-offcanvas .fb-submenu-toggle {
    flex: 0 0 2.4rem;
    margin-left: auto;
    color: #fff;
}

.fb-offcanvas .fb-menu .mod-menu__sub {
    position: static;
    display: none;
    width: 100%;
    min-width: 0;
    margin: .15rem 0 .5rem;
    border: 0;
    border-left: 2px solid rgba(255, 255, 255, .2);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0 0 0 .75rem;
}

.fb-offcanvas .fb-menu .parent.is-submenu-open > .mod-menu__sub {
    display: block;
}

.fb-offcanvas .fb-menu .parent:hover > .mod-menu__sub:not(:focus-within) {
    display: none;
}

.fb-back-to-top {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1030;
    display: grid;
    width: 3rem;
    height: 3rem;
    place-items: center;
    border: 0;
    border-radius: 50%;
    color: #fff;
    background: var(--fb-primary);
    box-shadow: var(--fb-shadow-card);
}

.fb-back-to-top svg {
    width: 1.35rem;
    height: 1.35rem;
}

.fb-back-to-top:hover {
    background: var(--fb-primary-dark);
}

.btn {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: .55rem;
    border-radius: .58rem;
    padding: .65rem 1.25rem;
    font-size: .9rem;
    font-weight: 750;
    line-height: 1.2;
}

.btn svg,
button svg,
a.btn svg {
    width: 1.1rem;
    height: 1.1rem;
    max-width: 1.1rem;
    max-height: 1.1rem;
    flex: 0 0 1.1rem;
}

.btn-primary {
    --bs-btn-bg: var(--fb-primary);
    --bs-btn-border-color: var(--fb-primary);
    --bs-btn-hover-bg: var(--fb-primary-dark);
    --bs-btn-hover-border-color: var(--fb-primary-dark);
    --bs-btn-active-bg: var(--fb-primary-dark);
    --bs-btn-active-border-color: var(--fb-primary-dark);
    color: #fff;
    background: var(--fb-primary);
    border-color: var(--fb-primary);
}

.btn-primary:hover,
.btn-primary:focus-visible,
.btn-primary:active {
    color: #fff;
    background: var(--fb-primary-dark);
    border-color: var(--fb-primary-dark);
}

.btn-secondary,
.btn-donate {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--fb-accent-dark);
    --bs-btn-border-color: var(--fb-accent-dark);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: #a93750;
    --bs-btn-hover-border-color: #a93750;
    color: #fff;
    background: var(--fb-accent-dark);
    border-color: var(--fb-accent-dark);
    box-shadow: 0 5px 16px rgba(196, 71, 96, .26);
}

.form-control,
.form-select,
.form-check-input,
.input-group-text {
    border-color: var(--fb-border);
}

.form-control,
.form-select {
    min-height: 44px;
    border-radius: .58rem;
}

.input-group > .form-control,
.input-group > .form-select,
.input-group > .input-group-text,
.input-group > .btn {
    border-radius: .58rem;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--fb-primary);
    box-shadow: 0 0 0 .22rem rgba(69, 58, 135, .13);
}

.alert {
    border-radius: var(--fb-radius-md);
}

.table {
    --bs-table-striped-bg: var(--fb-surface-alt);
    border-color: var(--fb-border);
}

.pagination {
    flex-wrap: wrap;
    gap: .35rem;
}

.page-link {
    min-width: 2.5rem;
    border-radius: .55rem !important;
    color: var(--fb-primary);
    text-align: center;
}

.active > .page-link,
.page-link.active {
    border-color: var(--fb-primary);
    background: var(--fb-primary);
}

.fb-pagination {
    margin-top: 2.5rem;
}

/* Joomla login modules and passkey controls must remain compact. */
.mod-login,
.mod-login__userdata,
.mod-login__form {
    width: 100%;
    max-width: 100%;
}

.mod-login .control-group,
.mod-login .mod-login__username,
.mod-login .mod-login__password,
.mod-login .mod-login__remember,
.mod-login .mod-login__submit {
    margin-bottom: .75rem;
}

.mod-login .input-group,
.mod-login .form-control,
.mod-login .btn {
    width: 100%;
    max-width: 100%;
}

.mod-login .input-group-text,
.mod-login .input-password-toggle {
    display: inline-grid;
    width: 44px;
    min-width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
}

.mod-login .btn,
.mod-login button,
.mod-login [role="button"] {
    min-height: 44px !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: row !important;
    gap: .5rem !important;
    padding: .65rem 1rem !important;
    font-size: .9rem !important;
    line-height: 1.2 !important;
}

.mod-login .btn svg,
.mod-login button svg,
.mod-login [role="button"] svg,
.mod-login svg[class*="icon"],
.mod-login [class^="icon-"] svg,
.mod-login [class*=" icon-"] svg {
    width: 1.2rem !important;
    height: 1.2rem !important;
    max-width: 1.2rem !important;
    max-height: 1.2rem !important;
    flex: 0 0 1.2rem !important;
}

.mod-login [class^="icon-"],
.mod-login [class*=" icon-"] {
    width: 1.2em !important;
    height: 1.2em !important;
    max-width: 1.2em !important;
    max-height: 1.2em !important;
    flex: 0 0 1.2em !important;
    font-size: 1.1rem !important;
    line-height: 1 !important;
}

.mod-login .btn::before,
.mod-login button::before {
    font-size: 1.1rem !important;
    line-height: 1 !important;
}

.mod-login ul,
.mod-login__options {
    margin: .75rem 0 0;
    padding: 0;
    list-style: none;
}

.mod-login li + li,
.mod-login__options > * + * {
    margin-top: .35rem;
}

.mod-login a {
    font-size: .86rem;
}

.fb-system-page {
    display: grid;
    min-height: 100vh;
    place-items: center;
    background:
        radial-gradient(circle at 15% 10%, rgba(238, 108, 155, .12), transparent 30%),
        radial-gradient(circle at 90% 20%, rgba(159, 191, 212, .2), transparent 35%),
        var(--fb-bg);
    padding: 1rem;
}

.fb-system-card {
    width: min(100%, 34rem);
    border: 1px solid var(--fb-border);
    border-radius: var(--fb-radius-xl);
    background: #fff;
    box-shadow: var(--fb-shadow-shell);
    padding: 2.3rem;
    text-align: center;
}

.fb-system-logo {
    display: inline-block;
    width: 7rem;
    height: 7rem;
    object-fit: contain;
}

.fb-system-code {
    margin: .5rem 0 -.25rem;
    color: var(--fb-accent-dark);
    font-size: 1.3rem;
    font-weight: 800;
}

.fb-offline-login {
    margin-top: 1.5rem;
    text-align: left;
}

.fb-component-only {
    padding: 1.5rem;
}

@media (max-width: 1399.98px) {
    .fb-menu a,
    .fb-menu .nav-header,
    .fb-menu .separator {
        padding-right: .5rem;
        padding-left: .5rem;
        font-size: .86rem;
    }

    .fb-header.has-overlap-brand .fb-header__inner {
        padding-left: 7.8rem;
    }

    .fb-header.has-overlap-brand .fb-brand {
        width: 6.9rem;
        height: 6.9rem;
    }
}

@media (max-width: 1199.98px) {
    :root {
        --fb-header-height: 72px;
    }

    .has-site-shell .fb-site-shell {
        width: 100%;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .fb-header__inner,
    .fb-header.has-overlap-brand .fb-header__inner {
        min-height: var(--fb-header-height);
        padding-left: 5.4rem;
    }

    .fb-brand,
    .fb-header.has-overlap-brand .fb-brand {
        top: .3rem;
        width: 4.25rem;
        height: 4.25rem;
        border: 1px solid rgba(69, 58, 135, .07);
        border-radius: .85rem;
        padding: .3rem;
        box-shadow: var(--fb-shadow-sm);
    }

    .fb-hero {
        min-height: 570px;
        background:
            linear-gradient(180deg, rgba(255, 255, 255, .99) 0%, rgba(255, 255, 255, .96) 42%, rgba(250, 248, 252, .76) 68%, rgba(255, 255, 255, .22) 100%),
            var(--fb-hero-image) 68% center / cover no-repeat;
    }

    .fb-hero__inner {
        align-items: flex-start;
        padding-top: 4.35rem;
        padding-bottom: 7rem;
    }

    .fb-hero h1,
    .fb-hero .fb-hero-title {
        max-width: 15ch;
        font-size: clamp(2.35rem, 6vw, 3.5rem);
    }

    .fb-feature-top.has-hero-overlap {
        margin-top: -3.8rem;
    }

    .fb-news-grid,
    .blog-items,
    .com-content-category-blog .blog-items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fb-sidebar--left {
        order: 2;
    }

    .fb-component {
        order: 1;
    }

    .fb-sidebar--right {
        order: 3;
    }

    .fb-default-cta {
        grid-template-columns: 3.8rem minmax(0, 1fr);
    }

    .fb-default-cta__icon {
        width: 3.8rem;
        height: 3.8rem;
    }

    .fb-default-cta__actions {
        grid-column: 2;
    }
}

@media (max-width: 767.98px) {
    .container-xxl {
        --bs-gutter-x: 1.5rem;
    }

    .fb-topbar {
        display: none;
    }

    .fb-component-area,
    .fb-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .fb-hero {
        min-height: 545px;
    }

    .fb-hero__inner {
        padding-top: 3.8rem;
        padding-bottom: 5.8rem;
    }

    .fb-hero-copy {
        width: min(100%, 31rem);
    }

    .fb-feature-top.has-hero-overlap {
        margin-top: -2.7rem;
    }

    .fb-feature-card--default {
        grid-template-columns: 2.85rem minmax(0, 1fr);
    }

    .fb-feature-card__icon {
        width: 2.85rem;
        height: 2.85rem;
    }

    .fb-news-grid,
    .blog-items,
    .com-content-category-blog .blog-items {
        grid-template-columns: 1fr;
    }

    .fb-news-card__media,
    .blog-item .item-image {
        aspect-ratio: 16 / 8;
    }

    .fb-section-heading {
        align-items: flex-start;
    }

    .fb-section-link {
        margin-top: -.3rem;
    }

    .fb-default-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fb-default-cta__icon {
        margin-inline: auto;
    }

    .fb-default-cta__actions {
        grid-column: auto;
    }

    .fb-default-footer {
        grid-template-columns: 1fr;
    }

    .fb-default-footer__nav {
        justify-content: flex-start;
    }

    .fb-footer {
        padding-top: 3rem;
    }

    .fb-footer__bottom {
        padding-right: 6.5rem;
    }
}

@media (max-width: 575.98px) {
    .fb-header__inner,
    .fb-header.has-overlap-brand .fb-header__inner {
        padding-right: .75rem;
        padding-left: 4.8rem;
    }

    .fb-brand,
    .fb-header.has-overlap-brand .fb-brand {
        left: .75rem;
        width: 3.9rem;
        height: 3.9rem;
    }

    .fb-hero {
        min-height: 525px;
    }

    .fb-hero__inner {
        padding-top: 3.3rem;
        padding-bottom: 5.2rem;
    }

    .fb-hero h1,
    .fb-hero .fb-hero-title {
        font-size: clamp(2.15rem, 11vw, 3rem);
    }

    .fb-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .fb-hero-actions .btn {
        width: 100%;
    }

    .fb-feature-card,
    .fb-module-card,
    .fb-cta-card,
    .fb-system-card {
        padding: 1.2rem;
    }

    .fb-section-heading {
        display: block;
    }

    .fb-section-link {
        margin-top: .5rem;
        padding-left: 0;
    }

    .fb-benefit--default {
        grid-template-columns: 1fr;
        gap: .35rem;
        text-align: center;
    }

    .fb-benefit__icon {
        margin-inline: auto;
    }

    .fb-default-footer__brand {
        align-items: flex-start;
    }

    .fb-default-footer__brand img {
        width: 4.3rem;
        height: 4.3rem;
        flex-basis: 4.3rem;
    }

    .fb-system-card {
        padding: 1.65rem 1.15rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

@media print {
    .fb-topbar,
    .fb-header,
    .fb-footer,
    .fb-offcanvas,
    .fb-back-to-top,
    .fb-sidebar {
        display: none !important;
    }

    .fb-component {
        width: 100% !important;
    }

    body {
        color: #000;
        background: #fff;
    }
}


/* Pure Joomla position layout: no built-in sample content. */
.fb-position-row {
    background: var(--fb-surface);
}

.fb-position-row--bottom {
    background: var(--fb-surface-alt);
}

.fb-content-top {
    margin-bottom: 2rem;
}

.fb-content-bottom {
    margin-top: 2rem;
}

.fb-footer__top {
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, .14);
}

.fb-footer__bottom-modules,
.fb-footer__copyright {
    min-width: 0;
}

.fb-component .page-header h1,
.fb-component .fb-page-header h1,
.fb-component h1:first-child {
    font-size: clamp(1.75rem, 2.4vw, 2.4rem);
}

.fb-header-tools:empty {
    margin-inline-start: auto;
}
