:root {
    --brand-blue: #628DFD;
    --brand-blue-ink: #254EBA;
    --brand-orange: #EE9542;
    --brand-orange-ink: #9B4D0F;
    --brand-green: #90BA83;
    --brand-green-ink: #315E2E;
    --brand-navy: #2D3648;
    --brand-slate: #505E7B;
    --brand-soft-blue: #A7BBE4;
    --brand-line: #B3BBCB;
    --brand-mist: #E6EAF2;
    --brand-white: #FCFDFF;
    --brand-peach: #F8AF66;
    --brand-peach-2: #F5AC5F;
    --brand-coral: #FF5678;
    --font-title: "Aleo", Georgia, "Times New Roman", serif;
    --font-body: "Work Sans", Arial, Helvetica, sans-serif;
    --font-label: "Inter", Arial, Helvetica, sans-serif;
    --font-heading: var(--font-title);
    --font-logo: "Segoe Print", "Bradley Hand", cursive;
    --section-max: 1140px;
    --section-gutter: max(15px, calc((100vw - var(--section-max)) / 2));
    --content-width: var(--section-max);
    --section-x: clamp(18px, 3vw, 32px);
    --section-pad: var(--section-x);
    --text-xs: clamp(12px, 0.78vw, 13px);
    --text-sm: clamp(13px, 0.9vw, 15px);
    --text-base: clamp(16px, 1vw, 18px);
    --text-lead: clamp(17px, 1.15vw, 20px);
    --text-card: clamp(17px, 1.25vw, 21px);
    --title-card: clamp(24px, 2vw, 32px);
    --title-section: clamp(30px, 3vw, 48px);
    --title-page: clamp(38px, 4.2vw, 68px);
    --radius-card: 22px;
    --shadow-card: 0 16px 36px rgba(45, 54, 72, 0.11);
}

html,
body {
    width: 100%;
    margin: 0;
    overflow-x: hidden;
}

.cookie-consent {
    position: fixed;
    right: clamp(14px, 3vw, 34px);
    bottom: clamp(14px, 3vw, 34px);
    left: clamp(14px, 3vw, 34px);
    z-index: 1100;
    width: min(100% - 28px, 980px);
    margin-left: auto;
    padding: clamp(16px, 2vw, 22px);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
    border: 2px solid rgba(252, 253, 255, 0.18);
    border-radius: 22px;
    background-color: rgba(45, 54, 72, 0.97);
    color: var(--brand-white);
    box-shadow: 0 20px 44px rgba(45, 54, 72, 0.28);
}

.cookie-consent[hidden] {
    display: none;
}

.cookie-consent__copy strong {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-label);
    font-size: var(--text-base);
    font-weight: 800;
}

.cookie-consent__copy p {
    max-width: 720px;
    margin: 0;
    color: rgba(252, 253, 255, 0.86);
    font-size: var(--text-sm);
    line-height: 1.45;
}

.cookie-consent__actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-consent__button {
    min-height: 42px;
    padding: 10px 18px;
    border: 2px solid var(--brand-peach);
    border-radius: 999px;
    background-color: var(--brand-peach);
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: var(--text-sm);
    font-weight: 800;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus-visible {
    border-color: var(--brand-coral);
    background-color: var(--brand-coral);
    color: var(--brand-white);
    transform: translateY(-1px);
}

.cookie-consent__button--secondary {
    border-color: rgba(252, 253, 255, 0.54);
    background-color: transparent;
    color: var(--brand-white);
}

* {
    box-sizing: border-box;
}

body.public-page {
    margin: 0;
    background-color: var(--brand-white);
    color: var(--brand-navy);
    font-family: var(--font-body);
    overflow-x: hidden;
}

#h1 {
    font-family: var(--font-title);
}

.fixed-img {
    height: 250px;          /* choose what fits your design */
    object-fit: cover;      /* prevents image stretching */
}

.public-hero {
    position: absolute;
    inset: 26px 0 auto;
    z-index: 5;
    min-height: 0;
    padding: 0 var(--section-gutter);
    background: transparent;
    overflow: visible;
}

@media (min-width: 900px) {
    .public-hero {
        position: fixed;
    }
}

.hero-nav {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: var(--section-max);
    min-height: 92px;
    margin: 0 auto;
    padding: 0 14px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 16px;
    border-radius: 22px;
    background-color: var(--brand-green);
    background: color-mix(in srgb, var(--brand-green) 88%, var(--brand-white));
    box-shadow: 0 18px 34px rgba(45, 54, 72, 0.22);
}

.hero-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--brand-white);
    overflow: hidden;
    box-shadow: 0 8px 18px rgba(45, 54, 72, 0.16);
}

.hero-logo img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

.hero-menu-toggle {
    display: none;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    border: 0;
    border-radius: 16px;
    background: var(--brand-white);
    color: var(--brand-navy);
    box-shadow: 0 8px 18px rgba(45, 54, 72, 0.16);
    cursor: pointer;
}

.hero-menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.18s ease, opacity 0.18s ease;
}

.hero-nav.is-menu-open .hero-menu-toggle span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hero-nav.is-menu-open .hero-menu-toggle span:nth-child(2) {
    opacity: 0;
}

.hero-nav.is-menu-open .hero-menu-toggle span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

.hero-links {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 6px;
    min-width: 0;
}

.hero-links a,
.hero-projects__trigger,
.hero-language,
.hero-donate {
    color: var(--brand-white);
    font-family: var(--font-label);
    font-weight: 800;
    text-decoration: none;
    text-shadow: 0 1px 1px rgba(0, 0, 0, 0.14);
}

.hero-links a,
.hero-projects__trigger {
    flex: 1 1 0;
    justify-content: flex-start;
    min-width: 0;
    max-width: 150px;
    min-height: 54px;
    border-radius: 12px;
    padding: 7px 8px;
    font-size: clamp(14px, 0.88vw, 17px);
    line-height: 1.1;
    white-space: normal;
    transition: background-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.hero-links a {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.hero-link__label {
    display: block;
    min-width: 0;
    overflow-wrap: normal;
    text-align: left;
}

.hero-link__label--single {
    white-space: nowrap;
}

.hero-partner-link .hero-link__label {
    white-space: normal;
}

.hero-link__icon {
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
    width: 1.55em;
    height: 1.55em;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    color: currentColor;
    font-size: 0.72em;
    line-height: 1;
}

.hero-links a:hover .hero-link__icon,
.hero-links a:focus-visible .hero-link__icon {
    background: rgba(240, 166, 86, 0.22);
    color: var(--brand-orange);
}

.hero-projects {
    position: relative;
}

.hero-projects::after {
    content: "";
    position: absolute;
    top: 100%;
    left: -12px;
    right: -12px;
    z-index: 19;
    height: 14px;
}

.hero-projects__trigger {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.hero-links a:hover,
.hero-links a:focus-visible,
.hero-projects__trigger:hover,
.hero-projects__trigger:focus-visible,
.hero-projects:hover .hero-projects__trigger,
.hero-projects:focus-within .hero-projects__trigger,
.hero-projects.is-open .hero-projects__trigger {
    background: var(--brand-white);
    color: var(--brand-navy);
    text-decoration: none;
    text-shadow: none;
    box-shadow: 0 8px 18px rgba(45, 54, 72, 0.14);
    transform: translateY(-1px);
}

.hero-projects__trigger::after {
    content: "";
    display: inline-block;
    width: 0.46em;
    height: 0.46em;
    margin-left: 0.42em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-0.18em) rotate(45deg);
}

.hero-projects__menu {
    position: absolute;
    top: calc(100% + 8px);
    left: calc(50% + 18px);
    z-index: 20;
    min-width: 220px;
    padding: 14px;
    display: grid;
    gap: 10px;
    border-radius: 18px;
    background-color: var(--brand-green);
    box-shadow: 0 16px 28px rgba(45, 54, 72, 0.22);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -6px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.hero-projects__menu a {
    white-space: normal;
}

.hero-projects__menu a:hover,
.hero-projects__menu a:focus-visible {
    background: var(--brand-white);
    color: var(--brand-navy);
    box-shadow: 0 8px 16px rgba(45, 54, 72, 0.12);
    transform: translateX(2px);
}

.hero-projects:hover .hero-projects__menu,
.hero-projects:focus-within .hero-projects__menu,
.hero-projects.is-open .hero-projects__menu {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.hero-donate {
    position: relative;
    align-self: stretch;
    min-width: 176px;
    min-height: 78px;
    margin: -6px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    background-color: var(--brand-peach);
    font-family: var(--font-logo);
    font-size: clamp(31px, 2.55vw, 42px);
    font-weight: 400;
    line-height: 1;
    overflow: hidden;
    box-shadow: 0 12px 22px rgba(209, 131, 59, 0.26);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hero-donate > * {
    position: relative;
    z-index: 1;
}

.hero-donate:hover,
.hero-donate:focus-visible {
    background-color: var(--brand-coral);
    color: var(--brand-white);
    text-decoration: none;
    box-shadow: 0 14px 26px rgba(255, 86, 120, 0.28);
    transform: translateY(-1px);
}

.hero-donate:hover *,
.hero-donate:focus-visible * {
    color: inherit;
    text-decoration: none;
}

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

.hero-donate::before {
    background: url("/boot/img/donate-button-overlay-white.65da3db1cfaf.svg") center / 100% 100% no-repeat;
    opacity: 0.58;
}

.hero-donate::after {
    display: none;
}

.hero-language {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-width: 70px;
    font-size: 18px;
    line-height: 1;
    border-radius: 16px;
    padding: 8px;
    transition: background-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.hero-language:hover,
.hero-language:focus-visible {
    background: var(--brand-white);
    color: var(--brand-navy);
    text-decoration: none;
    text-shadow: none;
    box-shadow: 0 8px 18px rgba(45, 54, 72, 0.14);
    transform: translateY(-1px);
}

.ro-flag {
    width: 54px;
    height: 54px;
    display: block;
    border-radius: 50%;
    background: linear-gradient(90deg, #1947a3 0 33.33%, #f6d247 33.33% 66.66%, #c83038 66.66% 100%);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
}

.en-mark {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--brand-slate);
    font-family: var(--font-label);
    font-size: 16px;
    font-weight: 800;
}

.hero-copy {
    display: none;
}

.public-hero-image {
    position: relative;
    min-height: 50vh;
    display: flex;
    align-items: center;
    padding: clamp(132px, 16vh, 176px) var(--section-gutter) 48px;
    background-image:
        linear-gradient(180deg, rgba(45, 54, 72, 0.28) 0%, rgba(45, 54, 72, 0.16) 42%, rgba(45, 54, 72, 0.52) 100%),
        linear-gradient(90deg, rgba(24, 31, 48, 0.82) 0%, rgba(45, 54, 72, 0.58) 38%, rgba(45, 54, 72, 0.18) 72%, rgba(45, 54, 72, 0.08) 100%),
        var(--hero-image, url("/boot/img/copii_animale.ba8a0f0162ad.png"));
    background-position: center;
    background-size: cover;
    color: var(--brand-white);
}

.public-hero-image .hero-copy {
    display: block;
    width: min(620px, 100%);
}

.hero-copy h1 {
    margin: 0;
    font-family: var(--font-title);
    font-size: clamp(34px, 3.8vw, 58px);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-copy p {
    max-width: 740px;
    margin: 24px 0 0;
    font-size: clamp(16px, 1.25vw, 22px);
    font-weight: 800;
    line-height: 1.28;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 22px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-family: var(--font-label);
    font-size: clamp(16px, 1.08vw, 20px);
    font-weight: 900;
    line-height: 1.05;
    text-decoration: none;
    box-shadow: 0 12px 24px rgba(45, 54, 72, 0.18);
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.hero-action:hover,
.hero-action:focus-visible {
    text-decoration: none;
    transform: translateY(-1px);
}

.hero-action--primary {
    background: var(--brand-orange);
    color: var(--brand-white);
}

.hero-action--primary:hover,
.hero-action--primary:focus-visible {
    background: var(--brand-coral);
    color: var(--brand-white);
    box-shadow: 0 14px 28px rgba(255, 86, 120, 0.26);
}

.hero-action--secondary {
    background: var(--brand-white);
    color: var(--brand-navy);
    border-color: rgba(255, 255, 255, 0.7);
}

.hero-action--secondary:hover,
.hero-action--secondary:focus-visible {
    background: var(--brand-peach);
    color: var(--brand-navy);
    border-color: var(--brand-peach);
}

.hero-accreditations {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
}

.hero-accreditations a {
    width: clamp(58px, 4.8vw, 82px);
    height: clamp(58px, 4.8vw, 82px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.hero-accreditations img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.public-content {
    position: relative;
    width: min(100% - 30px, var(--section-max));
    max-width: var(--section-max);
    margin-top: 0;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
    padding-top: 42px;
    padding-bottom: 34px;
    background-color: transparent;
}

.public-content:has(> .row.text-center > .knowledge-page:first-child),
.public-content:has(> .row.text-center > .partner-with-us-section:first-child) {
    padding-top: 0;
}

.public-content > .row.text-center > .partner-with-us-section:first-child,
.public-content > .row.text-center > .knowledge-page:first-child > section:first-child {
    margin-top: 0;
}

.public-stats {
    position: relative;
    z-index: 0;
    margin-top: 0;
    padding: 48px var(--section-gutter) 56px;
    color: var(--brand-white);
    overflow: hidden;
    background-image: var(--projects-bg-image, url("/boot/img/stats-build-trust.0fa3bf47a158.svg"));
    background-repeat: no-repeat;
    background-size: 245% 100%;
    background-position: center top;
}

.public-stats::before,
.public-stats::after {
    display: none;
}

.public-stats::before {
    display: none;
}

.public-stats::after {
    display: none;
}

.stats-grid {
    position: relative;
    z-index: 1;
    width: min(var(--section-max), 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.stat-item {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 6px;
    text-align: center;
}

.stat-item strong {
    display: block;
    width: 100%;
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: clamp(29px, 2.9vw, 46px);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: 0;
    text-align: center;
}

.stat-item span {
    display: block;
    width: 100%;
    font-family: var(--font-body);
    font-size: clamp(17px, 1.35vw, 25px);
    line-height: 1.18;
    font-weight: 700;
    letter-spacing: 0;
    text-align: center;
}

.public-content > .row.text-center {
    display: block;
    margin-left: 0;
    margin-right: 0;
    text-align: left !important;
}

.public-content .container {
    max-width: var(--section-max);
}

.public-content .divider {
    display: none;
}

.public-content .card,
.public-content .card.mb-2,
.public-content .card.m-2 {
    border: 0;
    border-radius: 22px;
    background-color: var(--brand-white);
    box-shadow: 0 18px 42px rgba(45, 54, 72, 0.12);
    overflow: hidden;
}

.public-content .container > .card,
.public-content > .row > .card {
    background-color: transparent;
    box-shadow: none;
    overflow: visible;
}

.public-content > .row > .card,
.public-content .container > .card,
.public-content .container > .row,
.public-content .container > h4.card-header {
    margin-bottom: 26px;
}

.public-content .card-header,
.public-content h4.card-header,
.public-content h4.pt-md-4.card-header {
    position: relative;
    left: 50%;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin: clamp(26px, 3vw, 40px) 0 clamp(14px, 1.8vw, 24px);
    padding: 0;
    border: 0;
    background: transparent !important;
    color: var(--brand-navy);
    font-family: var(--font-title);
    font-size: clamp(34px, 3.8vw, 62px);
    font-weight: 900;
    line-height: 1.05;
    text-align: center;
    letter-spacing: 0;
    transform: translateX(-50%);
}

.public-content .card > .card-header:first-child {
    margin-top: 0;
}

.public-content .card-header::before,
.public-content .card-header::after,
.public-content h4.card-header::before,
.public-content h4.card-header::after {
    content: "";
    flex: 1 1 120px;
    height: 11px;
    border-radius: 999px;
    background: var(--brand-navy);
}

.public-content .card-body {
    padding: 24px;
    font-size: 18px;
    line-height: 1.62;
    color: var(--brand-navy);
    font-family: var(--font-body);
}

.public-content .projects-section {
    background-color: transparent;
}

.content-card-section {
    width: 100%;
    text-align: left;
}

.content-card-section__intro {
    width: min(100%, 860px);
    margin: 0 auto clamp(24px, 3vw, 40px);
    padding: clamp(20px, 3vw, 36px) var(--section-x) 0;
    text-align: center;
}

.content-card-section__intro h3 {
    margin: 0 0 14px;
    font-size: var(--title-section);
}

.content-card-section__intro p {
    margin: 0;
    color: var(--brand-slate);
    font-size: var(--text-lead);
}

.content-card-grid {
    width: 100%;
    row-gap: clamp(20px, 3vw, 34px);
}

.content-card-grid > [class*="col-"] {
    display: flex;
}

.content-card-grid .page-card {
    width: 100%;
    min-height: 520px;
}

.content-card-grid .page-card .card-body {
    min-height: 260px;
}

.public-content .projects-section__intro-text {
    position: relative;
    z-index: 1;
    width: min(100%, var(--content-width));
    margin: 0 auto;
    padding: 0 var(--section-x);
    font-size: clamp(17px, 1.6vw, 24px);
    line-height: 1.45;
    color: var(--brand-navy);
}

.public-content .projects-section__body {
    position: relative;
    isolation: isolate;
    margin: 0 !important;
    padding-bottom: clamp(150px, 18vw, 250px);
    background-color: transparent;
    border-radius: 0 0 22px 22px;
    overflow: visible;
}

.public-content .projects-section__body::before {
    content: "";
    position: absolute;
    top: 38%;
    bottom: 0;
    left: 50%;
    width: 140vw;
    z-index: 0;
    transform: translateX(-50%);
    /*background-color: var(--brand-green);*/
    pointer-events: none;
}

.public-content .projects-section__body::after {
    content: "";
    position: absolute;
    right: auto;
    top: 38%;
    bottom: 0;
    left: 50%;
    z-index: 0;
    width: 140vw;
    transform: translateX(-50%);
    background-image: url("/boot/img/stats-build-trust.0fa3bf47a158.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 250vw 100%;
    pointer-events: none;
}

.public-content .projects-section__body > * {
    position: relative;
    z-index: 1;
}

.public-content p {
    color: var(--brand-navy);
    font-family: var(--font-body);
}

.public-content a:not(.btn):not(.hero-donate) {
    color: var(--brand-blue);
}

.public-content .card-title,
.public-content h5 {
    color: var(--brand-navy);
    font-family: var(--font-title);
    font-size: clamp(22px, 2vw, 32px);
    font-weight: 800;
    letter-spacing: 0;
}

.public-content .card-img-top,
.public-content img.card-img-top {
    min-height: 260px;
    object-fit: cover;
    border-radius: 22px 22px 0 0;
}

.public-content .btn-primary,
.public-content .btn-success {
    border: 0;
    border-radius: 999px;
    background-color: var(--brand-orange) !important;
    color: var(--brand-white) !important;
    font-family: var(--font-label);
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(209, 131, 59, 0.18);
}

.public-content .btn-primary:hover,
.public-content .btn-success:hover {
    background-color: var(--brand-peach) !important;
}

.pet-action-panel {
    margin: 0 24px 24px;
    padding: 18px;
    border-radius: 20px;
    background-color: rgba(155, 185, 139, 0.18);
    text-align: center;
}

.pet-action-panel p {
    margin: 0 0 14px;
    font-family: var(--font-label);
    font-weight: 800;
}

.pet-action-panel__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.pet-video-embed {
    width: min(100% - 32px, 920px);
    margin: 24px auto;
    overflow: hidden;
    border-radius: 18px;
    background: var(--brand-navy);
    box-shadow: 0 18px 38px rgba(45, 54, 72, 0.14);
    aspect-ratio: 16 / 9;
}

.pet-video-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.pet-media-stack {
    display: grid;
    gap: 16px;
    padding: 16px;
}

.pet-media-stack .pet-video-embed {
    width: 100%;
    margin: 0;
}

.public-content label,
.public-content input,
.public-content button,
.public-content .small {
    font-family: var(--font-label) !important;
}

.public-content .row {
    row-gap: 20px;
}

.public-content iframe {
    max-width: 100%;
    border-radius: 18px;
}

.partners-section {
    position: relative;
    isolation: isolate;
    width: 100vw;
    margin: 0 calc(50% - 50vw) clamp(28px, 4vw, 54px) !important;
    padding: clamp(22px, 3vw, 34px) max(var(--section-gutter), calc((100vw - var(--section-max)) / 2)) clamp(24px, 3vw, 38px);
    background-image: url("/boot/img/section-footer.7abc31338e40.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    overflow: hidden;
}

.partners-section > .col-md-12 {
    width: min(100%, var(--section-max));
    max-width: var(--section-max);
    margin: 0 auto;
    padding: 0;
    flex: 0 0 100%;
}

.partners-section__intro {
    width: min(100%, var(--section-max));
    margin: 0 auto clamp(10px, 1.6vh, 18px);
    display: block;
}

.partners-section__intro h4.card-header {
    margin-top: 0;
    margin-bottom: clamp(10px, 1.8vh, 18px);
}

.partners-section__intro p {
    margin: 0;
    color: var(--brand-white);
    font-family: var(--font-logo);
    font-size: clamp(20px, 2vw, 31px);
    line-height: 1;
    text-align: right;
}

.partners-section__thanks {
    margin: clamp(10px, 1.5vw, 18px) 0 0;
    color: var(--brand-white);
    font-family: var(--font-logo);
    font-size: clamp(20px, 2vw, 31px);
    line-height: 1;
    text-align: right;
}

.public-content .partners-section__body {
    padding: 0;
}

.partners-logo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    align-items: center;
    gap: clamp(18px, 3vw, 42px);
}

.partner-logo {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    opacity: 0.95;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.partner-logo:hover,
.partner-logo:focus-visible {
    opacity: 1;
    transform: translateY(-3px);
}

.partner-logo img {
    width: 100%;
    max-width: 290px;
    max-height: 62px;
    height: auto;
    object-fit: contain;
    filter: grayscale(1) brightness(0) saturate(100%) invert(18%) sepia(16%) saturate(1035%) hue-rotate(183deg) brightness(91%) contrast(90%);
}

.page-card {
    height: 100%;
}

.public-content .page-card .card-img-top {
    width: 100%;
    height: 240px;
    min-height: 240px;
    max-height: 240px;
    object-fit: cover;
}

.page-card .card-body {
    display: flex;
    flex-direction: column;
}

.page-card .card-title {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.page-card .card-text {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.page-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.patrocle-card {
    height: 100%;
    min-height: 610px;
}

.public-content .patrocle-card .card-img-top {
    width: 100%;
    height: 240px;
    min-height: 240px;
    max-height: 240px;
    object-fit: cover;
}

.patrocle-card .card-body {
    display: flex;
    flex-direction: column;
    min-height: 370px;
}

.patrocle-card .card-title {
    min-height: 78px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.patrocle-card .card-text,
.patrocle-card .card-body > p:not(.card-text) {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.patrocle-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.patrocle-animal-section {
    display: block;
    width: 100%;
    margin-top: 0;
    margin-bottom: clamp(28px, 4vw, 48px);
    text-align: left;
}

.patrocle-animal-section > .col-md-12 {
    padding-right: 0;
    padding-left: 0;
}

.patrocle-page-section {
    width: 100%;
    margin: 0 auto clamp(22px, 3.2vw, 42px);
    padding: 0;
    text-align: left;
}

.patrocle-page-section .card-header {
    margin-top: clamp(20px, 2.4vw, 34px);
    margin-bottom: clamp(12px, 1.7vw, 22px);
}

.patrocle-section-copy {
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.patrocle-section-copy p {
    width: 100%;
    margin: 0 auto 12px;
    color: var(--brand-navy);
    font-size: var(--text-base);
    line-height: 1.58;
}

.patrocle-about-section {
    margin-bottom: clamp(24px, 3.5vw, 42px);
}

.patrocle-projects-section {
    margin-top: clamp(12px, 2.5vw, 28px);
}

.patrocle-projects-section .projects-section__intro-text {
    padding-right: 0;
    padding-left: 0;
}

.patrocle-project-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 30px);
    width: 100%;
    margin: clamp(18px, 3vw, 34px) 0 0;
}

.patrocle-project-grid__item {
    min-width: 0;
    display: flex;
}

.patrocle-project-grid__item .patrocle-card {
    width: 100%;
    margin-bottom: 0 !important;
}

.lizuca-about-section {
    margin-bottom: clamp(24px, 3.5vw, 42px);
}

.lizuca-home-intro .patrocle-section-copy {
    width: 100%;
    margin: 0 auto;
}

.lizuca-card-section {
    margin-top: clamp(12px, 2.5vw, 28px);
}

.lizuca-card-section .projects-section__intro-text {
    padding-right: 0;
    padding-left: 0;
}

.lizuca-card-grid {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 30px);
    width: 100%;
    margin: clamp(18px, 3vw, 34px) 0 0 !important;
    padding-top: clamp(8px, 1.5vw, 18px);
}

.lizuca-card-grid__item {
    min-width: 0;
    display: flex;
}

.lizuca-card-grid__item .lizuca-card {
    width: 100%;
    min-height: 520px;
    margin-bottom: 0 !important;
}

.lizuca-card-grid__item .lizuca-card .card-body {
    min-height: 260px;
}

@media (min-width: 992px) {
    .lizuca-activities-section .lizuca-card-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: clamp(18px, 2vw, 26px);
        padding-top: clamp(6px, 1vw, 12px);
    }

    .lizuca-activities-section .lizuca-card-grid__item {
        width: 100%;
    }

    .lizuca-activities-section .lizuca-card {
        display: grid;
        grid-template-columns: minmax(280px, 42%) minmax(0, 1fr);
        align-items: stretch;
        height: clamp(300px, 22vw, 340px);
        min-height: clamp(300px, 22vw, 340px) !important;
    }

    .lizuca-activities-section .lizuca-card-grid__item:nth-child(even) .lizuca-card {
        grid-template-columns: minmax(0, 1fr) minmax(280px, 42%);
    }

    .lizuca-activities-section .lizuca-card-grid__item:nth-child(even) .card-img-top {
        grid-column: 2;
    }

    .lizuca-activities-section .lizuca-card-grid__item:nth-child(even) .card-body {
        grid-column: 1;
        grid-row: 1;
    }

    .public-page .lizuca-activities-section .lizuca-card-grid__item:nth-child(even) .lizuca-card {
        background: var(--brand-green);
    }

    .public-page .lizuca-activities-section .lizuca-card-grid__item:nth-child(even) .card-body {
        background: var(--brand-green);
    }

    .public-page .lizuca-activities-section .lizuca-card-grid__item:nth-child(even) .card-title {
        color: var(--brand-white) !important;
    }

    .public-page .lizuca-activities-section .lizuca-card .card-img-top {
        width: 100%;
        height: 100% !important;
        min-height: 100%;
        max-height: none !important;
        aspect-ratio: auto;
        object-fit: cover;
    }

    .public-page .lizuca-activities-section .lizuca-card .card-body {
        justify-content: center;
        min-height: 0;
        overflow: hidden;
        padding: clamp(24px, 3vw, 42px);
    }

    .public-page .lizuca-activities-section .lizuca-card .card-title,
    .public-page .lizuca-activities-section .lizuca-card .card-text {
        max-width: 720px;
    }

    .public-page .lizuca-activities-section .lizuca-card .card-text {
        -webkit-line-clamp: 4;
    }
}

.lizuca-help-section {
    width: 100%;
    margin-top: clamp(24px, 4vw, 54px);
}

.lizuca-help-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    gap: clamp(18px, 2vw, 28px);
    margin: clamp(20px, 3vw, 38px) 0 0;
}

.public-content .lizuca-help-card {
    width: 100%;
    max-width: none;
}

.project-tagged-content-section {
    width: 100%;
    margin-top: clamp(26px, 4vw, 58px);
}

.project-tagged-content-block {
    width: 100%;
    margin-top: clamp(20px, 3vw, 36px);
    text-align: left;
}

.project-tagged-content-block > h5 {
    margin: 0 0 clamp(14px, 2vw, 22px);
    color: var(--brand-orange);
    font-family: var(--font-heading);
    font-size: clamp(24px, 2.2vw, 36px);
    font-weight: 900;
    line-height: 1.08;
}

.project-tagged-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2vw, 28px);
    width: 100%;
}

.project-tagged-grid .home-event-card,
.project-tagged-grid .blog-card {
    width: 100%;
    min-width: 0;
}

.project-tagged-grid .home-event-card {
    max-width: none;
}

.project-tagged-grid .home-event-card__media {
    height: clamp(205px, 16vw, 255px);
}

.project-tagged-grid .home-event-card__body {
    min-height: 245px;
}

.project-donation-section {
    display: block;
    flex: 0 0 100%;
    width: 100%;
    max-width: 100%;
    margin: clamp(18px, 3.5vw, 44px) auto clamp(28px, 5vw, 64px);
    text-align: left;
}

.project-donation-section > .card-header {
    margin-right: 0;
    margin-left: 0;
}

.project-donation-section__intro {
    width: min(100%, 900px);
    margin: 0 auto clamp(18px, 3vw, 34px);
    color: var(--brand-slate);
    font-family: var(--font-body);
    font-size: var(--text-lead);
    line-height: 1.55;
    text-align: center;
}

.project-donation-section .donation-flip-card {
    width: min(100%, 980px);
    margin-right: auto;
    margin-left: auto;
}

.project-donation-section__body {
    margin-top: clamp(12px, 2vw, 22px);
}

.project-donation-section__form-text {
    margin: clamp(10px, 1.4vw, 16px) 0 0;
    color: var(--brand-slate);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.45;
}

.project-quote-section {
    width: 100vw;
    margin: clamp(26px, 4vw, 56px) calc(50% - 50vw);
    padding: clamp(54px, 6vw, 92px) var(--section-gutter);
    background: var(--brand-navy);
    color: var(--brand-white);
}

.project-quote-section__inner {
    display: grid;
    justify-items: center;
    width: min(100%, 920px);
    margin: 0 auto;
    text-align: center;
}

.project-quote-section__mark {
    margin: 0 0 clamp(18px, 2vw, 30px);
    color: var(--brand-peach);
    font-family: var(--font-title);
    font-size: clamp(44px, 4vw, 70px);
    font-weight: 900;
    line-height: 0.65;
}

.project-quote-section blockquote {
    margin: 0;
}

.project-quote-section blockquote p {
    margin: 0;
    color: var(--brand-white);
    font-family: var(--font-title);
    font-size: clamp(28px, 2.7vw, 46px);
    font-weight: 900;
    line-height: 1.22;
}

.project-quote-section cite {
    display: block;
    margin-top: clamp(22px, 2.5vw, 34px);
    color: rgba(252, 253, 255, 0.56);
    font-family: var(--font-label);
    font-size: clamp(15px, 1.1vw, 18px);
    font-style: normal;
    font-weight: 800;
}

.project-quote-section cite::before {
    content: "— ";
}

.lizuca-card-section + .project-donation-section {
    margin-top: 0;
}

@media (min-width: 992px) {
    .lizuca-card-section {
        margin-bottom: clamp(18px, 2vw, 28px);
    }

    .lizuca-card-section .projects-section__body {
        padding-bottom: 0;
    }

    .lizuca-card-section + .project-donation-section > .card-header {
        margin-top: 0;
    }
}

.home-pet-section {
    position: relative;
    display: block;
    width: 100%;
    margin: 16px 0 38px;
    text-align: left;
}

.home-pet-section > p {
    width: min(100%, var(--section-max));
    max-width: var(--section-max);
    margin: 0 auto 18px;
    color: var(--brand-slate);
    text-align: center;
    font-size: clamp(17px, 1.15vw, 20px);
    line-height: 1.55;
}

.partner-with-us-section {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: clamp(38px, 5vw, 72px) var(--section-gutter);
    background: var(--brand-navy);
    color: var(--brand-white);
}

.partner-with-us-section__inner {
    width: min(var(--section-max), 100%);
    margin: 0 auto;
}

.partner-with-us-section .card-header {
    color: var(--brand-white) !important;
}

.partner-with-us-section .card-header::before,
.partner-with-us-section .card-header::after {
    background: rgba(230, 234, 242, 0.44) !important;
}

.partner-with-us-section__intro {
    width: min(100%, 820px);
    margin: 0 auto clamp(28px, 4vw, 54px);
    color: rgba(252, 253, 255, 0.78);
    font-family: var(--font-body);
    font-size: clamp(18px, 1.35vw, 25px);
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
}

.partner-with-us-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 30px);
}

.partner-with-us-card {
    display: flex;
    min-height: clamp(330px, 24vw, 410px);
    flex-direction: column;
    align-items: flex-start;
    padding: clamp(24px, 3vw, 42px);
    border: 3px solid rgba(230, 234, 242, 0.22);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.06);
}

.partner-with-us-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    margin-bottom: clamp(28px, 4vw, 48px);
    border-radius: 16px;
    background: rgba(230, 234, 242, 0.16);
    font-size: 24px;
    line-height: 1;
}

.partner-with-us-card h5 {
    margin: 0 0 14px;
    color: var(--brand-peach);
    font-family: var(--font-heading);
    font-size: clamp(24px, 2vw, 34px);
    font-weight: 900;
    line-height: 1.08;
}

.partner-with-us-card p {
    margin: 0;
    color: rgba(252, 253, 255, 0.78);
    font-family: var(--font-body);
    font-size: clamp(16px, 1.12vw, 20px);
    font-weight: 600;
    line-height: 1.58;
}

.partner-with-us-cta {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: clamp(16px, 2vw, 28px);
    margin-top: clamp(28px, 4vw, 54px);
    padding: clamp(22px, 3vw, 34px) clamp(24px, 3.4vw, 44px);
    border: 3px solid rgba(230, 234, 242, 0.22);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.06);
}

.partner-with-us-cta p {
    margin: 0;
    color: var(--brand-white);
    font-family: var(--font-body);
    font-size: clamp(18px, 1.4vw, 24px);
    font-weight: 900;
    line-height: 1.25;
}

.partner-with-us-cta .btn {
    min-width: 190px;
    white-space: nowrap;
}

.partner-with-us-cta .btn span {
    margin-left: 8px;
}

.volunteer-section {
    display: grid;
    gap: clamp(18px, 2.4vw, 34px);
}

.volunteer-section__intro {
    width: min(100%, 900px);
    margin: 0 auto;
    color: #52617d;
    font-family: var(--font-body);
    font-size: clamp(18px, 1.35vw, 24px);
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
}

.volunteer-section__body {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.92fr);
    align-items: start;
    gap: clamp(28px, 4vw, 64px);
}

.volunteer-section__info {
    display: grid;
    gap: clamp(24px, 3vw, 42px);
    padding-top: clamp(10px, 2vw, 30px);
}

.volunteer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.volunteer-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 6px 18px;
    border-radius: 999px;
    background: rgba(148, 188, 146, 0.22);
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: clamp(14px, 0.95vw, 17px);
    font-weight: 900;
    line-height: 1.1;
}

.volunteer-quote {
    margin: 0;
    padding: clamp(20px, 2.8vw, 34px);
    border: 2px solid rgba(148, 188, 146, 0.36);
    border-radius: 20px;
    background: rgba(148, 188, 146, 0.14);
    color: var(--brand-navy);
}

.volunteer-quote p {
    margin: 0 0 14px;
    font-family: var(--font-body);
    font-size: clamp(16px, 1.1vw, 20px);
    font-style: italic;
    font-weight: 900;
    line-height: 1.55;
}

.volunteer-quote cite {
    color: var(--brand-green);
    font-family: var(--font-label);
    font-size: clamp(15px, 1vw, 18px);
    font-style: normal;
    font-weight: 900;
}

.volunteer-form-frame {
    position: relative;
    padding: 0;
    border: 0;
    border-radius: 0;
}

.volunteer-form-frame::before {
    display: none;
    content: none;
}

.volunteer-form {
    display: grid;
    gap: 10px;
    padding: clamp(20px, 2.4vw, 30px);
    border: 1px solid rgba(43, 52, 72, 0.10);
    border-radius: 20px;
    background: var(--brand-white);
    box-shadow: 0 18px 42px rgba(43, 52, 72, 0.08);
}

.volunteer-form h5 {
    margin: 0 0 2px;
    color: var(--brand-navy);
    font-family: var(--font-title);
    font-size: clamp(26px, 2vw, 36px);
    font-weight: 900;
    line-height: 1.12;
}

.volunteer-form label,
.volunteer-form legend {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: clamp(13px, 0.88vw, 15px);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.volunteer-form input[type="text"],
.volunteer-form input[type="email"],
.volunteer-form select {
    width: 100%;
    min-height: 46px;
    margin-top: 5px;
    border: 2px solid rgba(43, 52, 72, 0.14);
    border-radius: 16px;
    background: var(--brand-white);
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: clamp(15px, 1vw, 18px);
    font-weight: 800;
}

.volunteer-form input[type="text"],
.volunteer-form input[type="email"] {
    padding: 0 15px;
}

.volunteer-form select {
    padding: 0 12px;
}

.volunteer-form input::placeholder {
    color: rgba(43, 52, 72, 0.45);
}

.volunteer-form fieldset {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    border: 0;
}

.volunteer-form fieldset label {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    align-items: center;
    gap: 10px;
    min-height: 28px;
    color: var(--brand-navy);
    text-transform: uppercase;
}

.volunteer-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--brand-orange);
}

.volunteer-form .btn {
    justify-content: center;
    width: 100%;
    min-height: 48px;
    margin-top: 3px;
    border-radius: 999px !important;
    font-size: clamp(17px, 1.15vw, 21px) !important;
}

.public-contact-section {
    display: grid;
    gap: clamp(24px, 3.5vw, 48px);
    width: min(100% - 30px, var(--section-max));
    max-width: var(--section-max);
    margin: var(--section-gap) auto 0;
    padding: 0;
    color: var(--brand-navy);
}

.public-contact-section__body {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.88fr);
    align-items: start;
    gap: clamp(30px, 4.5vw, 70px);
}

.public-contact-section__info {
    display: grid;
    gap: clamp(28px, 4vw, 52px);
    padding-top: clamp(12px, 1.8vw, 26px);
}

.public-contact-section__list {
    display: grid;
    gap: 14px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.public-contact-section__list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: clamp(17px, 1.25vw, 22px);
    font-weight: 600;
    line-height: 1.25;
}

.public-contact-section__list .fa {
    width: 22px;
    color: var(--brand-navy);
    font-size: 18px;
    text-align: center;
}

.public-contact-section__list a {
    color: #6385f7;
    font-weight: 900;
    text-decoration: underline;
}

.public-contact-section__newsletter {
    display: grid;
    gap: 18px;
    max-width: 680px;
    padding: clamp(20px, 2.5vw, 34px);
    border: 2px solid rgba(148, 188, 146, 0.36);
    border-radius: 22px;
    background: rgba(148, 188, 146, 0.12);
}

.public-contact-section__newsletter h5 {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: clamp(17px, 1.2vw, 21px);
    font-weight: 900;
    line-height: 1.2;
}

.public-contact-section__newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.public-contact-section__newsletter-form input,
.public-contact-section__form input[type="text"],
.public-contact-section__form input[type="email"],
.public-contact-section__form textarea {
    width: 100%;
    border: 2px solid rgba(43, 52, 72, 0.14);
    border-radius: 18px;
    background: var(--brand-white);
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: clamp(15px, 1vw, 18px);
    font-weight: 800;
    outline: none;
}

.public-contact-section__newsletter-form input,
.public-contact-section__form input[type="text"],
.public-contact-section__form input[type="email"] {
    min-height: 58px;
    padding: 0 20px;
}

.public-contact-section__form textarea {
    min-height: 112px;
    padding: 18px 20px;
    resize: vertical;
}

.public-contact-section__newsletter-form input::placeholder,
.public-contact-section__form input::placeholder,
.public-contact-section__form textarea::placeholder {
    color: rgba(43, 52, 72, 0.42);
}

.public-contact-section__newsletter-form input:focus,
.public-contact-section__form input:focus,
.public-contact-section__form textarea:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 4px rgba(240, 166, 86, 0.16);
}

.public-contact-section__newsletter-form button {
    min-height: 58px;
    border: 0;
    border-radius: 999px;
    padding: 12px 28px;
    background: var(--brand-orange);
    color: var(--brand-white);
    font-family: var(--font-label);
    font-size: clamp(15px, 1vw, 18px);
    font-weight: 900;
    white-space: nowrap;
    box-shadow: 0 12px 24px rgba(238, 149, 66, 0.22);
}

.public-contact-section__form-card {
    display: grid;
    gap: 18px;
    padding: clamp(26px, 3.2vw, 46px);
    border: 1px solid rgba(43, 52, 72, 0.10);
    border-radius: 24px;
    background: var(--brand-white);
    box-shadow: 0 18px 44px rgba(43, 52, 72, 0.08);
}

.public-contact-section__form-card h5 {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-title);
    font-size: clamp(28px, 2.4vw, 42px);
    font-weight: 900;
    line-height: 1.1;
}

.public-contact-section__form {
    display: grid;
    gap: 18px;
}

.public-contact-section__form label {
    display: grid;
    gap: 8px;
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: clamp(13px, 0.88vw, 15px);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.public-contact-section__consent {
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 10px !important;
    color: #52617d !important;
    font-size: clamp(12px, 0.84vw, 14px) !important;
    line-height: 1.35;
    text-transform: none !important;
}

.public-contact-section__consent input {
    width: 17px;
    height: 17px;
    margin-top: 1px;
    accent-color: var(--brand-orange);
}

.public-contact-section__form .btn {
    justify-content: center;
    width: 100%;
    min-height: 60px;
    border-radius: 999px !important;
    font-size: clamp(17px, 1.2vw, 22px) !important;
}

.home-team-section {
    display: block;
    width: 100%;
    margin: 16px 0 24px;
}

.home-involvement-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    width: 100%;
}

.home-involvement-section > * {
    min-width: 0;
}

.home-involvement-grid {
    align-items: stretch;
    gap: 18px;
}

.public-content .home-involvement-card {
    display: flex;
    flex-direction: column;
    max-width: min(100%, 31rem);
    margin: 0 !important;
}

.public-content .home-involvement-card .card-img-top {
    width: 100%;
    height: 260px;
    min-height: 260px;
    object-fit: cover;
}

.public-content .home-involvement-card .card-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    align-items: flex-start;
}

.public-content .home-involvement-card .card-text {
    flex: 1 1 auto;
}

.public-content .home-involvement-card .btn {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
}

.home-events-section {
    position: relative;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    min-height: clamp(620px, 48vw, 760px);
    padding: clamp(68px, 6vw, 96px) max(var(--section-gutter), calc((100vw - var(--section-max)) / 2));
    overflow: hidden;
    background: var(--brand-navy);
    color: var(--brand-white);
    text-align: left;
}

.home-events-section::before {
    content: "";
    position: absolute;
    right: max(28px, calc((100vw - var(--section-max)) / 2 + 58px));
    bottom: -10px;
    width: min(34vw, 470px);
    height: min(62%, 470px);
    background-image: url("/boot/img/events-illustration.576c69fe0cff.svg");
    background-repeat: no-repeat;
    background-position: left bottom;
    background-size: contain;
    opacity: 0.92;
    pointer-events: none;
}

.home-fundraisers-section {
    min-height: 0;
    background: var(--brand-green);
}

.home-fundraisers-section::before {
    display: none;
}

.home-fundraisers-section .home-events-section__heading {
    position: relative;
    top: auto;
    right: auto;
    width: 100vw;
    margin: 0 calc(50% - 50vw) clamp(16px, 2vw, 26px);
    align-items: center;
    justify-content: center;
    gap: 22px;
    text-align: center;
}

.home-fundraisers-section .home-events-section__heading::before,
.home-fundraisers-section .home-events-section__heading::after {
    content: "";
    flex: 1 1 120px;
    height: 11px;
    border-radius: 999px;
    background: var(--brand-navy);
}

.home-fundraisers-section .home-events-section__heading h4 {
    color: var(--brand-navy) !important;
    font-size: var(--type-section-title) !important;
}

.home-fundraisers-section .home-events-carousel {
    width: min(100%, var(--section-max));
    margin: 0 auto;
    padding: 8px 4px 34px;
    scroll-padding-left: 4px;
}

.home-fundraisers-section .home-event-card {
    flex: 0 0 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
}

.home-fundraisers-section .home-event-card__media {
    height: clamp(210px, 16vw, 260px);
}

.home-fundraisers-section .home-event-card__body {
    min-height: 240px;
}

.home-fundraisers-section .pet-carousel-controls {
    top: calc(50% + 28px);
    left: 50%;
    right: auto;
    width: min(calc(100vw - 32px), var(--section-max));
    transform: translate(-50%, -50%);
}

.home-events-section__heading {
    position: absolute;
    top: clamp(54px, 5vw, 86px);
    right: max(var(--section-gutter), calc((100vw - var(--section-max)) / 2));
    z-index: 1;
    width: min(40vw, 540px);
    display: flex;
    align-items: end;
    justify-content: center;
    gap: 18px;
    margin: 0;
    text-align: center;
}

.home-events-section__heading h4 {
    margin: 0;
    color: var(--brand-white) !important;
    font-family: var(--font-title);
    font-size: var(--title-section);
    font-weight: 900;
    line-height: 1.05;
}

.home-events-section__heading a {
    color: var(--brand-peach) !important;
    font-family: var(--font-label);
    font-size: var(--text-sm);
    font-weight: 900;
    text-decoration: none !important;
}

.home-events-carousel {
    position: relative;
    z-index: 1;
    display: flex;
    gap: 24px;
    width: min(100%, var(--section-max));
    margin: clamp(52px, 5vw, 78px) auto 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    scrollbar-width: none;
}

.home-events-section:not(.home-fundraisers-section) .home-events-carousel {
    width: min(100%, 430px);
    margin-right: auto;
    margin-left: 0;
}

.home-events-section:not(.home-fundraisers-section) .home-event-card {
    flex-basis: 100%;
    max-width: 100%;
}

@media (min-width: 761px) {
    .home-events-section:not(.home-fundraisers-section):not(.project-tagged-content-section) .home-events-section__heading {
        top: clamp(118px, 10vw, 158px);
        width: min(38vw, 500px);
        align-items: flex-start;
        justify-content: flex-start;
        text-align: left;
    }
}

.home-events-carousel::-webkit-scrollbar {
    display: none;
}

.home-event-card {
    flex: 0 0 min(100%, 430px);
    max-width: min(100%, 430px);
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
    border: 2px solid rgba(80, 94, 123, 0.14);
    border-radius: var(--radius-card);
    background: var(--brand-white);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
    scroll-snap-align: start;
}

.home-event-card__media {
    height: 270px;
    min-height: 0;
    overflow: hidden;
    background: var(--brand-mist);
}

.home-event-card__media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-event-card__body {
    min-width: 0;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    min-height: 190px;
    padding: 24px;
}

.home-event-card__link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    text-decoration: none !important;
}

.home-event-card h5 {
    margin: 0 0 10px;
    color: var(--brand-orange);
    font-family: var(--font-title);
    font-size: clamp(28px, 2.4vw, 36px);
    font-weight: 900;
    line-height: 1.06;
}

.home-event-card time {
    margin-bottom: 20px;
    color: var(--brand-slate);
    font-family: var(--font-label);
    font-size: clamp(14px, 1vw, 16px);
    font-weight: 900;
    line-height: 1.35;
    text-transform: uppercase;
}

.home-event-card p {
    max-width: 100%;
    margin: 0 0 26px;
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: var(--text-lead);
    font-weight: 600;
    line-height: 1.45;
}

.home-event-card__explore {
    position: relative;
    z-index: 2;
    margin-top: auto;
    min-height: 52px;
    padding: 14px 28px !important;
    font-size: clamp(16px, 1.2vw, 19px) !important;
}

.home-fundraiser-card__meter {
    display: grid;
    gap: 8px;
    width: 100%;
    margin-bottom: 20px;
}

.home-fundraiser-card__meter p {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: var(--text-sm);
    font-weight: 900;
    line-height: 1.35;
}

.home-events-section .pet-carousel-controls {
    position: absolute;
    top: 50%;
    right: auto;
    left: 50%;
    z-index: 3;
    width: min(calc(100vw - 32px), calc(var(--section-max) + 160px));
    padding: 0;
    transform: translate(-50%, -50%);
}

.home-events-section .pet-carousel-controls__button {
    background: var(--brand-white);
    color: var(--brand-navy);
}

.home-events-section .pet-carousel-controls__button:hover {
    background: var(--brand-white);
    color: var(--brand-orange);
}

.home-events-section:not(.home-fundraisers-section) .pet-carousel-controls {
    left: calc(max(var(--section-gutter), calc((100vw - var(--section-max)) / 2)) + 260px);
    width: min(calc(100vw - 32px), 680px);
    transform: translate(-50%, -50%);
}

.home-fundraisers-section .pet-carousel-controls {
    top: calc(50% + 28px);
    right: auto;
    left: 50%;
    width: min(calc(100vw - 32px), calc(var(--section-max) + 160px));
    transform: translate(-50%, -50%);
}

.home-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 10px;
    padding: 12px 4px 0;
}

.home-team-member {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border: 2px solid rgba(80, 94, 123, 0.12);
    border-radius: 16px;
    background: var(--brand-white);
    color: var(--brand-navy);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
    box-shadow: 0 10px 24px rgba(45, 54, 72, 0.07);
}

.home-page-stack {
    box-sizing: border-box;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(22px, 3vw, 42px);
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}

.home-page-stack > * {
    min-width: 0;
}

.public-content .home-page-stack.container {
    width: 100%;
    max-width: 100%;
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
}

.home-page-stack > .divider,
.home-page-stack .card-body > .divider {
    display: none;
}

.home-page-stack > .card,
.home-page-stack > section:not(.home-events-section):not(.partners-section),
.home-page-stack > .row {
    margin-top: 0;
    margin-bottom: 0 !important;
}

.home-page-stack > .card {
    width: 100%;
    max-width: 100%;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
}

.home-page-stack > .card:not(.projects-section):not(#donation-support) > .card-body {
    padding: clamp(20px, 3vw, 34px);
}

.home-page-stack .projects-section {
    margin-bottom: clamp(8px, 2vw, 20px) !important;
}

.home-page-stack .projects-section__body {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: clamp(18px, 2.6vw, 30px);
    column-gap: clamp(18px, 2.4vw, 30px);
}

.home-page-stack .projects-section__body > [class*="col-"] {
    display: flex;
    width: auto;
    max-width: none;
    padding-right: 0;
    padding-left: 0;
    float: none !important;
}

.home-page-stack .projects-section__body .card {
    width: 100%;
    margin-bottom: 0 !important;
}

.home-page-stack #donation-support {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
}

.home-page-stack #donation-support .row.card-body {
    justify-content: center;
    margin: 0 !important;
    padding: clamp(18px, 3vw, 34px);
}

.home-page-stack #donation-support .col-md-12 {
    max-width: 100%;
    padding-right: 0;
    padding-left: 0;
}

.support-us-section {
    display: grid;
    gap: clamp(14px, 2vw, 24px);
}

.support-us-section > .card-header {
    left: auto;
    width: min(var(--section-max), calc(100% - (var(--section-x) * 2)));
    margin-right: auto !important;
    margin-bottom: 0 !important;
    margin-left: auto !important;
    transform: none;
}

.support-us-section__summary {
    width: min(var(--section-max), calc(100% - (var(--section-x) * 2)));
    margin: 0 auto;
    color: rgba(45, 54, 72, 0.78);
    font-family: var(--font-body);
    font-size: clamp(18px, 1.55vw, 27px);
    font-weight: 600;
    line-height: 1.28;
    text-align: center;
}

.support-us-section__summary p {
    margin: 0;
}

.support-us-section__summary strong {
    color: var(--brand-navy);
    font-weight: 900;
}

.support-us-section__body {
    display: grid;
    grid-template-columns: minmax(0, 760px);
    justify-content: center;
    gap: clamp(22px, 3.6vw, 48px);
    width: min(var(--section-max), calc(100% - (var(--section-x) * 2)));
    margin: 0 auto;
    align-items: stretch;
}

.support-us-section__body:has(.support-bank-column) {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    justify-content: stretch;
}

.support-donation-panel,
.support-bank-panel,
.support-tax-panel {
    border: 0;
    border-radius: 24px;
    box-shadow: 0 18px 42px rgba(45, 54, 72, 0.10);
}

.support-donation-panel {
    overflow: hidden;
    padding: clamp(22px, 3.4vw, 44px);
    border: 1px solid rgba(45, 54, 72, 0.14);
    background: var(--brand-white) url("/boot/img/donation-bank-card.94b931b07c2a.svg") center / cover no-repeat;
    box-shadow:
        0 20px 52px rgba(45, 54, 72, 0.16),
        0 0 0 7px rgba(255, 255, 255, 0.68);
}

.support-donation-panel h5,
.support-bank-panel .bank-card__header h5 {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-heading);
    font-size: clamp(30px, 3.3vw, 48px);
    font-weight: 900;
    line-height: 1.05;
}

.support-donation-form {
    margin-top: clamp(22px, 3vw, 34px);
}

.support-donation-form label,
.support-donation-form legend {
    font-size: var(--text-xs);
    font-weight: 800;
}

.support-donation-form__purpose {
    grid-column: 1 / -1;
}

.support-donation-form select,
.support-donation-form input[type="email"],
.support-donation-form input[type="text"],
.support-donation-form input[type="number"] {
    min-height: 46px;
    border-radius: 14px;
    padding: 0 14px;
    font-size: var(--text-sm);
    font-weight: 700;
}

.support-donation-form select {
    background-position:
        calc(100% - 22px) 50%,
        calc(100% - 14px) 50%;
    background-size: 7px 7px, 7px 7px;
}

.support-donation-form .btn {
    justify-self: stretch;
    min-height: 52px;
    border-radius: 999px;
    font-size: var(--text-base);
}

.support-donation-form .btn span {
    margin-left: 8px;
}

.support-donation-form .stripe-donation-form__radio {
    min-height: 48px;
    border-radius: 14px;
    padding: 10px 14px;
    font-size: var(--text-sm);
    font-weight: 700;
}

.support-donation-form .stripe-donation-form__radio input {
    width: 16px;
    height: 16px;
}

.stripe-donation-form.support-friend-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: clamp(18px, 2.6vw, 30px);
}

.support-friend-form__intro {
    display: grid;
    gap: 8px;
    margin-top: clamp(14px, 1.8vw, 22px);
}

.support-friend-form__intro p {
    margin: 0;
    color: rgba(45, 54, 72, 0.78);
    font-size: var(--text-base);
    font-weight: 800;
    line-height: 1.45;
}

.support-friend-form__amounts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
}

.support-friend-form__amounts button {
    min-height: 54px;
    border: 2px solid rgba(80, 94, 123, 0.24);
    border-radius: 16px;
    background: var(--brand-white);
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: var(--text-base);
    font-weight: 900;
    cursor: pointer;
    transition: transform 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease;
}

.support-friend-form__amounts button:hover,
.support-friend-form__amounts button:focus-visible {
    border-color: var(--brand-orange);
    transform: translateY(-1px);
}

.support-friend-form__amounts button.is-selected {
    border-color: var(--brand-orange);
    background: var(--brand-peach);
    color: var(--brand-white);
    box-shadow: 0 12px 24px rgba(248, 175, 102, 0.24);
}

.support-friend-form__note {
    margin: 0;
    color: rgba(45, 54, 72, 0.72);
    font-size: var(--text-sm);
    line-height: 1.45;
}

.support-friend-form .btn {
    margin-top: 4px;
    min-height: 58px;
    font-size: var(--text-base);
}

@media (max-width: 640px) {
    .support-friend-form__amounts {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.support-bank-column {
    display: grid;
    grid-template-rows: 1fr auto;
    gap: clamp(18px, 2.4vw, 28px);
    min-width: 0;
}

.support-bank-panel {
    min-height: 300px;
    overflow: hidden;
    padding: clamp(22px, 3.2vw, 40px);
    background: var(--brand-white) url("/boot/img/donation-bank-card.94b931b07c2a.svg") center / cover no-repeat;
    color: var(--brand-navy);
}

.support-bank-panel .bank-card__header {
    gap: 0;
    padding-bottom: clamp(16px, 2vw, 24px);
}

.support-bank-panel .bank-card__accounts {
    margin-top: clamp(18px, 2.5vw, 30px);
}

.support-bank-panel .bank-card__accounts p {
    font-size: clamp(15px, 1.1vw, 18px);
    font-weight: 800;
}

.support-tax-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 18px;
    padding: clamp(16px, 2.4vw, 24px);
    background: rgba(242, 247, 239, 0.92);
    box-shadow: 0 12px 30px rgba(45, 54, 72, 0.08);
}

.support-tax-panel p {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: clamp(15px, 1.15vw, 19px);
    font-weight: 800;
    line-height: 1.22;
}

.support-tax-panel .btn {
    white-space: nowrap;
}

.home-page-stack .home-pet-section,
.home-page-stack .home-team-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(16px, 2.4vw, 28px);
}

.home-page-stack .home-pet-section > *,
.home-page-stack .home-team-section > * {
    min-width: 0;
}

.home-page-stack .home-pet-section > .card-header,
.home-page-stack .home-team-section > .card-header {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.home-page-stack .home-pet-section > p {
    margin-bottom: 0;
}

.home-page-stack .home-pet-section .pet-carousel {
    width: 100%;
    max-width: var(--section-max);
    margin-right: auto !important;
    margin-left: auto !important;
}

.home-page-stack .home-involvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
    gap: clamp(18px, 2.4vw, 28px);
    margin: 0 !important;
    padding: 0 !important;
}

.home-page-stack .home-involvement-grid > .card {
    width: auto !important;
    max-width: none;
    margin: 0 !important;
}

.home-page-stack .home-involvement-grid .card-img-top,
.home-page-stack .projects-section__body .card-img-top,
.home-page-stack .home-pet-card .card-img-top {
    aspect-ratio: 4 / 3;
    height: auto;
}

@supports (content-visibility: auto) {
    .home-page-stack > section:not(.home-events-section),
    .home-page-stack > .card:not(:first-of-type):not(#donation-support) {
        content-visibility: auto;
        contain-intrinsic-size: 1px 680px;
    }
}

@media (max-width: 760px) {
    .home-page-stack {
        gap: 30px;
    }

    .home-page-stack > .card:not(.projects-section):not(#donation-support) > .card-body,
    .home-page-stack #donation-support .row.card-body {
        padding: 16px;
    }

    .support-us-section__summary,
    .support-us-section__body {
        width: min(100% - 28px, var(--section-max));
    }

    .support-us-section__body {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .support-donation-panel,
    .support-bank-panel,
    .support-tax-panel {
        border-radius: 18px;
    }

    .support-donation-panel,
    .support-bank-panel {
        padding: 22px;
    }

    .support-donation-form {
        grid-template-columns: 1fr;
        gap: 13px;
    }

    .support-donation-form fieldset {
        grid-template-columns: 1fr;
    }

    .support-tax-panel {
        grid-template-columns: 1fr;
    }

    .support-tax-panel .btn {
        justify-self: start;
    }

    .home-page-stack .projects-section__body {
        grid-template-columns: 1fr;
    }

    .home-page-stack .home-involvement-grid {
        grid-template-columns: 1fr;
    }

    .partner-with-us-section {
        padding-top: 34px;
        padding-bottom: 38px;
    }

    .partner-with-us-section__intro {
        margin-bottom: 22px;
        text-align: left;
    }

    .partner-with-us-grid,
    .partner-with-us-cta {
        grid-template-columns: 1fr;
    }

    .partner-with-us-card {
        min-height: 0;
        padding: 22px;
    }

    .partner-with-us-card__icon {
        margin-bottom: 22px;
    }

    .partner-with-us-cta {
        padding: 22px;
    }

    .partner-with-us-cta .btn {
        justify-self: start;
    }

    .volunteer-section {
        gap: 18px;
    }

    .volunteer-section__intro {
        text-align: left;
    }

    .volunteer-section__body {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .volunteer-section__info {
        gap: 18px;
        padding-top: 0;
    }

    .volunteer-tags {
        gap: 9px;
    }

    .volunteer-tags span {
        min-height: 30px;
        padding: 5px 12px;
    }

    .volunteer-quote,
    .volunteer-form {
        padding: 16px;
    }

    .volunteer-form-frame {
        padding: 0;
    }

    .volunteer-form input[type="text"],
    .volunteer-form input[type="email"],
    .volunteer-form select {
        min-height: 44px;
    }

    .public-contact-section {
        gap: 18px;
        width: min(100% - 28px, var(--section-max));
        margin-top: 30px;
    }

    .public-contact-section__body {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .public-contact-section__info {
        gap: 20px;
        padding-top: 0;
    }

    .public-contact-section__list li {
        font-size: 16px;
    }

    .public-contact-section__newsletter,
    .public-contact-section__form-card {
        padding: 18px;
        border-radius: 18px;
    }

    .public-contact-section__newsletter-form {
        grid-template-columns: 1fr;
    }

    .public-contact-section__newsletter-form button {
        justify-self: start;
    }

    .public-contact-section__form {
        gap: 14px;
    }

    .public-contact-section__newsletter-form input,
    .public-contact-section__form input[type="text"],
    .public-contact-section__form input[type="email"] {
        min-height: 50px;
    }

    .public-contact-section__form textarea {
        min-height: 100px;
    }

    .brand-footer {
        padding: 36px 0 28px;
    }

    .brand-footer__top,
    .brand-footer__bottom {
        grid-template-columns: 1fr;
    }

    .brand-footer__top {
        gap: 30px;
    }

    .brand-footer__identity {
        gap: 14px;
    }

    .brand-footer__mark {
        width: 76px;
        height: 76px;
    }

    .brand-footer__nav {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .brand-footer__nav section {
        gap: 10px;
    }

    .brand-footer__rule {
        margin: 30px 0 22px;
    }

    .brand-footer__socials {
        justify-content: start;
    }
}

/* Highest-specificity cleanup for the combined events/blog header. */
body.public-page .public-content .project-tagged-content-section .home-events-section__heading,
body.public-page .public-content .home-events-section .home-events-section__heading,
body.public-page .public-content .home-fundraisers-section .home-events-section__heading {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    text-align: center !important;
}

body.public-page .public-content .project-tagged-content-section .home-events-section__heading > h4,
body.public-page .public-content .home-events-section .home-events-section__heading > h4,
body.public-page .public-content .home-fundraisers-section .home-events-section__heading > h4 {
    left: auto !important;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    padding-right: max(16px, calc((100vw - var(--section-max)) / 2)) !important;
    padding-left: max(16px, calc((100vw - var(--section-max)) / 2)) !important;
    transform: none !important;
}

/* Final Lizuca page banding override: no white seams, with real support-section breathing room. */
.public-page:has(.lizuca-home-intro) .lizuca-card-section + .project-donation-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: clamp(28px, 3.4vw, 48px) !important;
    padding-bottom: clamp(30px, 3.8vw, 54px) !important;
}

.public-page:has(.lizuca-home-intro) .lizuca-card-section + .project-donation-section > .card-header {
    margin-top: clamp(28px, 3.4vw, 48px) !important;
}

.public-page:has(.lizuca-home-intro) .lizuca-card-section + .project-donation-section::before {
    top: 0 !important;
    bottom: 0 !important;
}

.public-page:has(.lizuca-home-intro) .project-donation-section + .project-quote-section {
    margin-top: 0 !important;
}

@media (max-width: 760px) {
    .public-page:has(.lizuca-home-intro) .lizuca-card-section + .project-donation-section {
        padding-top: 28px !important;
        padding-bottom: 32px !important;
    }

    .public-page:has(.lizuca-home-intro) .lizuca-card-section + .project-donation-section > .card-header {
        margin-top: 28px !important;
    }
}

.donation-card {
    height: 100%;
}

.donation-flip-card {
    min-height: 540px;
    height: 100%;
    perspective: 1400px;
}

.donation-flip-card__inner {
    position: relative;
    min-height: 540px;
    height: 100%;
    transform-style: preserve-3d;
    transition: transform 0.7s ease;
}

.donation-flip-card.is-flipped .donation-flip-card__inner {
    transform: rotateY(180deg);
}

.donation-flip-card__face {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border: 1px solid rgba(80, 94, 123, 0.12);
    border-radius: 24px;
    background: var(--brand-white);
    box-shadow: 0 18px 42px rgba(45, 54, 72, 0.14);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform-style: preserve-3d;
    transition: visibility 0s linear 0.35s;
}

.donation-flip-card__front {
    display: flex;
    flex-direction: column;
    z-index: 2;
    padding: clamp(22px, 3vw, 42px);
    background: var(--brand-white) url("/boot/img/donation-bank-card.94b931b07c2a.svg") center / cover no-repeat;
    color: var(--brand-navy);
    transform: rotateY(0deg);
    visibility: visible;
}

.donation-flip-card__front::before,
.donation-flip-card__front::after {
    display: none;
}

.donation-flip-card__front::after {
    display: none;
}

.donation-flip-card__back {
    display: flex;
    flex-direction: column;
    z-index: 1;
    overflow-y: auto;
    padding: clamp(18px, 2.8vw, 30px);
    background:
        radial-gradient(circle at 92% 10%, rgba(240, 166, 86, 0.22) 0 90px, transparent 91px),
        radial-gradient(circle at 6% 100%, rgba(148, 188, 146, 0.24) 0 135px, transparent 136px),
        linear-gradient(135deg, var(--brand-white) 0%, #fffaf4 54%, #f2f7ef 100%);
    transform: rotateY(180deg);
    visibility: hidden;
}

.donation-flip-card.is-flipped .donation-flip-card__front {
    visibility: hidden;
}

.donation-flip-card.is-flipped .donation-flip-card__back {
    z-index: 3;
    visibility: visible;
}

.donation-flip-card__back .card-title {
    margin-bottom: 16px;
    color: var(--brand-navy);
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 900;
}

.donation-flip-card__back-button {
    align-self: flex-start;
    margin-bottom: 10px;
    border: 2px solid rgba(80, 94, 123, 0.14);
    border-radius: 999px;
    padding: 8px 14px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 800;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.donation-flip-card__back-button:hover,
.donation-flip-card__back-button:focus-visible {
    border-color: var(--brand-orange);
    background: rgba(240, 166, 86, 0.16);
    color: var(--brand-orange);
}

.donation-card-form {
    position: relative;
    z-index: 1;
}

.donation-card-form__header {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 16px;
    margin-bottom: 18px;
}

.donation-card-form__header img {
    width: 68px;
    height: 68px;
    object-fit: contain;
    padding: 7px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 12px 24px rgba(45, 54, 72, 0.08);
}

.donation-card-form__header p {
    max-width: 560px;
    margin: 6px 0 0;
    color: rgba(45, 54, 72, 0.74);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.32;
}

.bank-card__header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 18px;
    border-bottom: 2px solid var(--brand-navy);
}

.bank-card__header h5 {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: clamp(26px, 3.1vw, 42px);
    font-weight: 800;
    line-height: 1;
}

.bank-card__icon {
    position: relative;
    flex: 0 0 38px;
    width: 38px;
    height: 32px;
    border-radius: 9px;
    background: var(--brand-orange);
}

.bank-card__icon::before,
.bank-card__icon::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    background: var(--brand-white);
    opacity: 0.9;
}

.bank-card__icon::before {
    top: 12px;
    height: 3px;
}

.bank-card__icon::after {
    right: 8px;
    left: auto;
    bottom: 9px;
    width: 10px;
    height: 3px;
    border-radius: 2px;
}

.bank-card__accounts {
    position: relative;
    z-index: 1;
    margin-top: 26px;
}

.bank-card__accounts p {
    margin: 0 0 12px;
    color: rgba(45, 54, 72, 0.76);
    font-family: var(--font-body);
    font-size: clamp(15px, 1.25vw, 21px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0;
    overflow-wrap: anywhere;
}

.bank-card__accounts strong {
    color: var(--brand-navy);
    font-weight: 900;
}

.bank-card__copy-row {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    width: 100%;
}

.bank-card__copy-row span {
    min-width: 0;
}

.bank-card__copy {
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    border: 0;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.5);
    color: rgba(45, 54, 72, 0.58);
    font-family: var(--font-label);
    font-size: 0;
    line-height: 0;
    padding: 0;
    position: relative;
    transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.bank-card__copy::before,
.bank-card__copy::after {
    content: "";
    position: absolute;
    width: 12px;
    height: 14px;
    border: 2px solid currentColor;
    border-radius: 3px;
}

.bank-card__copy::before {
    top: 6px;
    left: 7px;
    background: transparent;
}

.bank-card__copy::after {
    top: 9px;
    left: 10px;
    background: rgba(255, 255, 255, 0.72);
}

.bank-card__copy:hover,
.bank-card__copy:focus-visible {
    background: rgba(240, 166, 86, 0.18);
    color: var(--brand-orange);
    transform: translateY(-1px);
}

.bank-card__copy.is-copied {
    background: rgba(148, 188, 146, 0.24);
    color: var(--brand-green);
}

.bank-card__footer {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
}

.bank-card__brand {
    display: block;
}

.bank-card__brand img {
    display: block;
    width: clamp(70px, 8vw, 98px);
    height: auto;
}

.bank-card__donate {
    position: relative;
    min-width: 176px;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    padding: 13px 24px;
    background-color: var(--brand-orange);
    color: var(--brand-white);
    font-family: var(--font-body);
    font-size: 28px;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 16px 28px rgba(244, 157, 67, 0.34);
    transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.bank-card__donate::before {
    content: "";
    position: absolute;
    inset: -36px;
    background: url("/boot/img/donate-button-overlay.975f4eceec13.svg") center / cover no-repeat;
    opacity: 0.72;
    pointer-events: none;
    transition: opacity 0.2s ease;
}

.bank-card__donate:hover,
.bank-card__donate:focus-visible {
    background: var(--brand-coral) !important;
    background-color: var(--brand-coral) !important;
    box-shadow: 0 16px 30px rgba(255, 86, 120, 0.34);
    transform: translateY(-1px);
}

.bank-card__donate:hover::before,
.bank-card__donate:focus-visible::before {
    opacity: 0;
}

.bank-card__donate span {
    position: relative;
    display: inline-block;
    margin-left: 10px;
}

.bank-card__donate {
    isolation: isolate;
}

.stripe-donation-form {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 18px;
    text-align: left;
}

.stripe-donation-form label,
.stripe-donation-form legend {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.stripe-donation-form select,
.stripe-donation-form input[type="email"],
.stripe-donation-form input[type="text"],
.stripe-donation-form input[type="number"] {
    width: 100%;
    min-height: 54px;
    margin-top: 8px;
    border: 2px solid rgba(80, 94, 123, 0.18);
    border-radius: 18px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(45, 54, 72, 0.06);
}

.stripe-donation-form select {
    -webkit-appearance: none;
    appearance: none;
    padding-right: 44px;
    background-color: rgba(255, 255, 255, 0.9);
    background-image:
        linear-gradient(45deg, transparent 50%, var(--brand-navy) 50%),
        linear-gradient(135deg, var(--brand-navy) 50%, transparent 50%);
    background-position:
        calc(100% - 24px) 50%,
        calc(100% - 16px) 50%;
    background-repeat: no-repeat;
    background-size: 8px 8px, 8px 8px;
    line-height: 1.2;
}

.stripe-donation-form select:focus,
.stripe-donation-form input[type="email"]:focus,
.stripe-donation-form input[type="text"]:focus,
.stripe-donation-form input[type="number"]:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 4px rgba(240, 166, 86, 0.18);
    outline: none;
}

.stripe-donation-form fieldset {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    border: 0;
    padding: 0;
}

.stripe-donation-form legend {
    grid-column: 1 / -1;
}

.stripe-donation-form__radio {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 2px solid rgba(80, 94, 123, 0.14);
    border-radius: 18px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.78);
    color: var(--brand-navy);
    box-shadow: 0 10px 24px rgba(45, 54, 72, 0.06);
    text-transform: none !important;
}

.stripe-donation-form__radio input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: var(--brand-orange);
}

.stripe-donation-form__radio:has(input:checked) {
    border-color: var(--brand-orange);
    background: rgba(240, 166, 86, 0.18);
}

.stripe-donation-form .btn {
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 54px;
    padding: 14px 30px;
    font-size: 18px;
    box-shadow: 0 16px 30px rgba(240, 166, 86, 0.25);
}

.stripe-donation-form.is-embedded-checkout-ready {
    display: none;
}

.embedded-stripe-checkout {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 10px;
    border: 2px solid rgba(80, 94, 123, 0.12);
    border-radius: 18px;
    padding: clamp(12px, 2vw, 18px);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 16px 34px rgba(45, 54, 72, 0.10);
}

.embedded-stripe-checkout[hidden],
.embedded-stripe-checkout__edit[hidden],
.embedded-stripe-checkout__status[hidden] {
    display: none;
}

.embedded-stripe-checkout__status {
    grid-column: 1 / -1;
    margin: 12px 0 0;
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: var(--text-sm);
    font-weight: 800;
    line-height: 1.35;
}

.embedded-stripe-checkout__status.is-error {
    color: var(--brand-coral);
}

.embedded-stripe-checkout__edit {
    grid-column: 1 / -1;
    justify-self: start;
    min-height: 42px;
    margin: 0 0 8px;
    border: 2px solid rgba(80, 94, 123, 0.16);
    border-radius: 999px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.embedded-stripe-checkout__edit:hover,
.embedded-stripe-checkout__edit:focus-visible {
    border-color: var(--brand-orange);
    background: rgba(240, 166, 86, 0.16);
    color: var(--brand-orange);
    outline: 0;
}

.stripe-checkout-modal .modal-dialog {
    max-width: min(94vw, 980px);
}

.stripe-checkout-modal .modal-content {
    position: relative;
    overflow: hidden;
    border: 0;
    border-radius: 30px;
    background:
        radial-gradient(circle at 92% 10%, rgba(240, 166, 86, 0.2) 0 110px, transparent 112px),
        radial-gradient(circle at 0 100%, rgba(148, 188, 146, 0.22) 0 150px, transparent 152px),
        linear-gradient(135deg, var(--brand-white) 0%, #fffaf5 52%, #f5faf2 100%);
    box-shadow: 0 28px 80px rgba(45, 54, 72, 0.34);
}

.stripe-checkout-modal .modal-body {
    position: relative;
    z-index: 1;
    padding: clamp(22px, 4vw, 42px);
}

.stripe-checkout-modal__header {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
    padding-right: 48px;
}

.stripe-checkout-modal__header img {
    width: 68px;
    height: 68px;
    object-fit: contain;
}

.stripe-checkout-modal__header p {
    max-width: 640px;
    margin: 6px 0 0;
    color: rgba(45, 54, 72, 0.76);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 800;
    line-height: 1.35;
}

.stripe-checkout-modal__title {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 900;
    line-height: 1;
}

.stripe-checkout-modal__close {
    position: absolute;
    top: 20px;
    right: 22px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(80, 94, 123, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.82);
    color: var(--brand-navy);
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.stripe-checkout-modal__close:hover,
.stripe-checkout-modal__close:focus-visible {
    background: var(--brand-coral);
    color: var(--brand-white);
    outline: 0;
    transform: rotate(5deg);
}

.stripe-checkout-modal .embedded-stripe-checkout {
    min-height: 520px;
    margin-top: 0;
    background: rgba(255, 255, 255, 0.96);
}

.stripe-checkout-modal .embedded-stripe-checkout__status {
    margin: 0 0 14px;
}

.stripe-checkout-modal .embedded-stripe-checkout__edit {
    margin: 14px 0 0;
}

@media (max-width: 575.98px) {
    .stripe-checkout-modal .modal-dialog {
        max-width: calc(100vw - 20px);
        margin: 10px auto;
    }

    .stripe-checkout-modal .modal-body {
        padding: 22px 14px 16px;
    }

    .stripe-checkout-modal__header {
        grid-template-columns: 52px 1fr;
        gap: 12px;
        margin-bottom: 14px;
        padding-right: 42px;
    }

    .stripe-checkout-modal__header img {
        width: 52px;
        height: 52px;
    }

    .stripe-checkout-modal__title {
        font-size: 30px;
    }

    .stripe-checkout-modal .embedded-stripe-checkout {
        min-height: 560px;
        padding: 10px;
        border-radius: 16px;
    }
}

.donation-modal .modal-dialog {
    max-width: min(92vw, 760px);
}

.donation-modal .modal-content {
    position: relative;
    border: 0;
    border-radius: 30px;
    background:
        radial-gradient(circle at 88% 16%, rgba(240, 166, 86, 0.24) 0 92px, transparent 93px),
        radial-gradient(circle at 4% 96%, rgba(148, 188, 146, 0.24) 0 140px, transparent 141px),
        linear-gradient(135deg, var(--brand-white) 0%, #fffaf4 52%, #f2f7ef 100%);
    box-shadow: 0 26px 70px rgba(45, 54, 72, 0.3);
    overflow: hidden;
}

.donation-modal .modal-content::before {
    content: "";
    position: absolute;
    right: -70px;
    bottom: -90px;
    width: 310px;
    height: 220px;
    background: url("/boot/img/donate-button-overlay.975f4eceec13.svg") center / cover no-repeat;
    opacity: 0.22;
    pointer-events: none;
    transform: rotate(-8deg);
}

.donation-modal .modal-content::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 190px;
    height: 130px;
    border-bottom-left-radius: 120px;
    background: rgba(148, 188, 146, 0.32);
    pointer-events: none;
}

.donation-modal .modal-body {
    position: relative;
    z-index: 1;
    padding: clamp(28px, 4vw, 46px);
}

.donation-modal__header {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 18px;
    align-items: center;
    margin-bottom: 24px;
    padding-right: 44px;
}

.donation-modal__header img {
    width: 78px;
    height: 78px;
    object-fit: contain;
    padding: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.76);
    box-shadow: 0 14px 30px rgba(45, 54, 72, 0.09);
}

.donation-modal__header p {
    max-width: 520px;
    margin: 8px 0 0;
    color: rgba(45, 54, 72, 0.76);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.35;
}

.donation-modal .card-title {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 900;
    line-height: 0.98;
}

.donation-modal__close {
    position: absolute;
    top: 22px;
    right: 24px;
    z-index: 2;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(80, 94, 123, 0.14);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.76);
    color: var(--brand-navy);
    font-size: 32px;
    line-height: 1;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}

.donation-modal__close:hover,
.donation-modal__close:focus-visible {
    background: var(--brand-coral);
    color: var(--brand-white);
    transform: rotate(5deg);
}

.pet-table-filters {
    margin: 24px 0 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr)) auto auto;
    gap: 14px;
    align-items: end;
}

.pet-table-filters label {
    margin: 0;
    display: grid;
    gap: 6px;
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.pet-table-filters select {
    min-height: 44px;
    border: 2px solid rgba(80, 94, 123, 0.32);
    border-radius: 12px;
    padding: 0 14px;
    background: var(--brand-white);
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
}

.pet-filter-reset {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    color: var(--brand-blue) !important;
    font-family: var(--font-label);
    font-weight: 800;
    text-decoration: none;
}

.pet-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
}

.patrocle-animal-results {
    transition: opacity 0.18s ease;
}

.patrocle-animal-results.is-loading {
    opacity: 0.52;
    pointer-events: none;
}

.pet-filter-card {
    display: flex;
    flex-direction: column;
    min-height: 470px;
    overflow: hidden;
    border: 2px solid rgba(80, 94, 123, 0.14);
    border-radius: 18px;
    background: var(--brand-white);
    box-shadow: 0 14px 34px rgba(45, 54, 72, 0.08);
    cursor: pointer;
    text-align: left;
}

.pet-filter-card:focus-visible {
    outline: 3px solid var(--brand-orange);
    outline-offset: 4px;
}

.pet-filter-card__media {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 250px;
    height: 250px;
    min-height: 250px;
    max-height: 250px;
    overflow: hidden;
    background: var(--brand-mist);
    color: var(--brand-green);
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 900;
}

.pet-filter-card__media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
}

.pet-filter-card__badges {
    position: absolute;
    top: 14px;
    right: 14px;
    left: 14px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 7px;
}

.pet-filter-card__badge {
    padding: 6px 12px;
    border-radius: 999px;
    background: var(--brand-orange);
    color: var(--brand-white);
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.pet-filter-card__badge--dumbrava {
    background: var(--brand-navy);
}

.pet-filter-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 14px;
    padding: 20px;
}

.pet-filter-card__heading {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
    align-items: start;
}

.pet-filter-card__type {
    grid-column: 1 / -1;
    margin: 0 0 5px;
    color: var(--brand-green);
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.pet-filter-card h5 {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 900;
    line-height: 1.1;
}

.pet-filter-card__gender {
    display: inline-flex;
    width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-navy);
    color: var(--brand-white);
    font-size: 17px;
}

.pet-filter-card__facts {
    display: grid;
    gap: 9px;
    margin: 0;
}

.pet-filter-card__facts div {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(80, 94, 123, 0.12);
}

.pet-filter-card__facts dt,
.pet-filter-card__facts dd {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: 15px;
    line-height: 1.25;
}

.pet-filter-card__facts dt {
    color: var(--brand-slate);
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.pet-filter-card__facts dd {
    max-width: 62%;
    font-weight: 700;
    text-align: right;
}

.pet-filter-card__excerpt {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.pet-card-traits {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

.pet-card-traits__item {
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(148, 188, 146, 0.22);
    color: var(--brand-navy);
    font-size: 15px;
}

.pet-card-traits__icon {
    width: 19px;
    height: 19px;
    display: block;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.pet-card-traits__item:nth-child(even) {
    background: rgba(240, 166, 86, 0.2);
}

.pet-card-tooltip {
    position: relative;
}

.pet-card-tooltip::after {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    z-index: 25;
    width: max-content;
    max-width: 180px;
    padding: 6px 9px;
    border-radius: 8px;
    background: var(--brand-navy);
    color: var(--brand-white);
    content: attr(data-tooltip);
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.15;
    opacity: 0;
    pointer-events: none;
    text-align: center;
    transform: translate(-50%, 4px);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.pet-card-tooltip:hover::after,
.pet-card-tooltip:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.pet-filter-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.pet-filter-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.pet-filter-card__actions .btn {
    margin-top: 0;
}

.pet-filter-card__sponsor {
    background: var(--brand-navy) !important;
    border-color: var(--brand-navy) !important;
}

.pet-filter-card__sponsor:hover,
.pet-filter-card__sponsor:focus-visible {
    background: var(--brand-pink) !important;
    border-color: var(--brand-pink) !important;
}

.pet-card-grid__empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 24px;
    border: 2px solid rgba(80, 94, 123, 0.14);
    border-radius: 18px;
    background: var(--brand-white);
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    text-align: center;
}

.pet-group-list {
    display: grid;
    gap: clamp(28px, 4vw, 52px);
}

.pet-group-section {
    display: grid;
    gap: clamp(16px, 2vw, 24px);
}

.pet-group-section__header {
    max-width: 840px;
    text-align: left;
}

.pet-group-section__header h5 {
    margin: 0 0 8px;
    color: var(--brand-orange);
    font-family: var(--font-heading);
    font-size: clamp(28px, 2.7vw, 44px);
    font-weight: 900;
    line-height: 1.06;
}

.pet-group-section__header p {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: clamp(15px, 1vw, 18px);
    line-height: 1.45;
}

.pet-table-wrap {
    width: 100%;
    overflow-x: auto;
    border: 2px solid rgba(80, 94, 123, 0.14);
    border-radius: 18px;
    background: var(--brand-white);
}

.pet-table {
    width: 100%;
    min-width: 760px;
    border-collapse: collapse;
}

.pet-table th,
.pet-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(80, 94, 123, 0.14);
    color: var(--brand-navy);
    vertical-align: middle;
    text-align: left;
}

.pet-table th {
    background: var(--brand-mist);
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.pet-table td {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
}

.pet-table tr:last-child td {
    border-bottom: 0;
}

.pet-table img {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    object-fit: cover;
}

.pet-table .btn {
    white-space: nowrap;
}

.pet-pagination {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 14px;
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-weight: 800;
}

.pet-pagination a {
    padding: 9px 16px;
    border-radius: 999px;
    background: var(--brand-orange);
    color: var(--brand-white) !important;
    text-decoration: none;
}

.pet-preview-modal .modal-content {
    position: relative;
    border: 0;
    border-radius: var(--radius-card);
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(148, 188, 146, 0.16), rgba(252, 253, 255, 0) 34%),
        var(--brand-white);
    box-shadow: 0 26px 70px rgba(45, 54, 72, 0.28);
}

.pet-preview-modal .modal-body {
    padding: 0;
}

.pet-preview-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    background: var(--brand-white);
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: 28px;
    line-height: 1;
    box-shadow: 0 8px 18px rgba(45, 54, 72, 0.18);
}

.pet-preview-modal__close:hover,
.pet-preview-modal__close:focus-visible {
    background: var(--brand-coral);
    color: var(--brand-white);
}

.pet-preview-modal__loading {
    padding: 56px;
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-weight: 800;
    text-align: center;
}

.pet-preview {
    --pet-preview-pad: clamp(32px, 4vw, 58px);
    display: grid;
    grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
    align-items: start;
    min-height: 0;
    background: var(--brand-white);
    text-align: left;
}

.pet-detail-page {
    flex: 0 0 calc(100% + 30px);
    width: calc(100% + 30px);
    max-width: var(--section-max);
    margin: clamp(28px, 5vw, 70px) -15px clamp(44px, 7vw, 88px);
    padding: 0;
    text-align: left;
}

.pet-detail-page .pet-preview {
    width: 100%;
    overflow: hidden;
    box-shadow: 0 24px 58px rgba(45, 54, 72, 0.16);
}

.pet-detail-page__actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 18px;
}

.pet-detail-page__back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    padding: 10px 20px;
    background: var(--brand-orange);
    color: var(--brand-white) !important;
    font-family: var(--font-label);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none !important;
    box-shadow: 0 12px 24px rgba(242, 155, 63, 0.28);
    transition: background-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.pet-detail-page__back::before {
    content: "<";
    margin-right: 10px;
    font-family: var(--font-label);
    font-weight: 900;
}

.pet-detail-page__back:hover,
.pet-detail-page__back:focus-visible {
    background: var(--brand-coral);
    color: var(--brand-white) !important;
    box-shadow: 0 14px 28px rgba(232, 113, 126, 0.28);
    transform: translateY(-1px);
}

.pet-preview__visual {
    position: sticky;
    top: var(--pet-preview-pad);
    margin: var(--pet-preview-pad) 0 var(--pet-preview-pad) var(--pet-preview-pad);
    display: grid;
    gap: 18px;
    align-self: start;
}

.pet-preview__media {
    height: clamp(340px, 48vh, 520px);
    min-height: 0;
    overflow: hidden;
    border-radius: 22px;
    background: var(--brand-green);
    box-shadow: 0 14px 32px rgba(45, 54, 72, 0.12);
}

.pet-preview__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
}

.pet-preview__video {
    width: 100%;
    margin: 0;
    border-radius: 18px;
}

.pet-preview__body {
    display: flex;
    flex-direction: column;
    padding: var(--pet-preview-pad);
}

.pet-preview__heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin: 0 52px 10px 0;
}

.pet-preview__body h2 {
    margin: 0;
    color: var(--brand-orange);
    font-family: var(--font-heading);
    font-size: clamp(34px, 4vw, 58px);
    font-weight: 900;
    line-height: 1.04;
}

.pet-preview__gender {
    position: relative;
    display: inline-flex;
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    align-items: center;
    justify-content: center;
    color: var(--brand-navy);
    font-size: 24px;
}

.pet-preview__traits {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin: 0 0 22px;
}

.pet-preview__trait {
    position: relative;
    display: inline-flex;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    color: var(--brand-navy);
    font-size: 23px;
}

.pet-preview__trait.is-muted {
    opacity: 0.34;
}

.pet-preview__trait .pet-card-traits__icon {
    width: 26px;
    height: 26px;
}

.pet-preview__gender::after,
.pet-preview__trait::after {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    z-index: 15;
    width: max-content;
    max-width: 190px;
    padding: 6px 9px;
    border-radius: 8px;
    background: var(--brand-navy);
    color: var(--brand-white);
    content: attr(data-tooltip);
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.15;
    opacity: 0;
    pointer-events: none;
    text-align: center;
    transform: translate(-50%, 4px);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.pet-preview__gender:hover::after,
.pet-preview__gender:focus-visible::after,
.pet-preview__trait:hover::after,
.pet-preview__trait:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.pet-preview__description {
    max-height: 210px;
    margin-bottom: 24px;
    overflow: auto;
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: 1.55;
}

.pet-preview__facts {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 28px;
}

.pet-preview__facts div {
    padding: 14px 16px;
    border: 1px solid rgba(80, 94, 123, 0.12);
    border-radius: 14px;
    background: rgba(230, 234, 242, 0.62);
}

.pet-preview__facts dt {
    margin-bottom: 4px;
    color: var(--brand-slate);
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.pet-preview__facts dd {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
}

.pet-preview__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: -4px 0 28px;
}

.pet-preview__actions .btn,
.pet-preview__support .btn {
    border: 0;
    border-radius: 999px;
    background: var(--brand-orange) !important;
    color: var(--brand-white) !important;
    font-family: var(--font-label);
    font-size: var(--text-sm);
    font-weight: 800;
    line-height: 1.2;
    padding: 10px 18px;
    text-decoration: none !important;
    box-shadow: 0 10px 20px rgba(238, 149, 66, 0.22);
}

.pet-preview__actions .pet-preview__cta {
    min-height: 52px;
    padding: 14px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    letter-spacing: 0;
}

.pet-preview__actions .pet-preview__cta--primary {
    background: var(--brand-coral) !important;
    box-shadow: 0 16px 30px rgba(255, 86, 120, 0.3);
}

.pet-preview__actions .pet-preview__cta--secondary {
    border: 2px solid var(--brand-navy);
    background: var(--brand-white) !important;
    color: var(--brand-navy) !important;
    box-shadow: none;
}

.pet-preview__actions .btn:hover,
.pet-preview__actions .btn:focus-visible,
.pet-preview__support .btn:hover,
.pet-preview__support .btn:focus-visible {
    background: var(--brand-coral) !important;
    color: var(--brand-white) !important;
}

.pet-preview__actions .pet-preview__cta:hover,
.pet-preview__actions .pet-preview__cta:focus-visible {
    transform: translateY(-1px);
}

.pet-preview__actions .pet-preview__cta--primary:hover,
.pet-preview__actions .pet-preview__cta--primary:focus-visible,
.pet-preview__actions .pet-preview__cta--secondary:hover,
.pet-preview__actions .pet-preview__cta--secondary:focus-visible {
    border-color: var(--brand-orange);
    background: var(--brand-orange) !important;
    color: var(--brand-white) !important;
    box-shadow: 0 16px 30px rgba(238, 149, 66, 0.3);
}

.pet-preview__support {
    display: grid;
    gap: 14px;
    margin: 0 0 24px;
    padding: clamp(16px, 2vw, 22px);
    border: 2px solid rgba(148, 188, 146, 0.34);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(248, 175, 102, 0.14), rgba(252, 253, 255, 0) 46%),
        rgba(148, 188, 146, 0.16);
}

.pet-preview__support h3 {
    margin: 0;
    color: var(--brand-orange);
    font-family: var(--font-heading);
    font-size: clamp(24px, 2vw, 32px);
    font-weight: 900;
    line-height: 1.06;
}

.pet-preview__support p {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: 1.45;
}

.pet-preview__support .stripe-donation-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.pet-preview__support .stripe-donation-form label {
    display: grid;
    gap: 5px;
    color: var(--brand-slate);
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.pet-preview__support .stripe-donation-form select,
.pet-preview__support .stripe-donation-form input[type="email"],
.pet-preview__support .stripe-donation-form input[type="text"],
.pet-preview__support .stripe-donation-form input[type="number"] {
    min-height: 40px;
    width: 100%;
    border: 2px solid rgba(80, 94, 123, 0.2);
    border-radius: 12px;
    background: var(--brand-white);
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: 14px;
    padding: 8px 10px;
}

.pet-preview__support .stripe-donation-form button {
    grid-column: 1 / -1;
    justify-self: start;
}

.special-support-section {
    width: 100%;
    padding: 40px 0 52px;
    background: var(--brand-white);
}

.special-support-section__title {
    width: min(100% - 32px, 1760px);
    margin: 0 auto;
    text-align: center;
}

.special-support-section__header {
    line-height: 1.04;
}

.special-support-section__inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 24px);
    width: min(100% - 32px, 1760px);
    margin: 0 auto;
}

.special-support-section__heading h4,
.special-support-section__adoption h4,
.special-support-section__foster h4,
.special-support-section__volunteer h4 {
    margin: 0 0 10px;
    color: var(--brand-navy);
    font-family: var(--font-title);
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 900;
    line-height: 1;
}

.special-support-section__heading p,
.special-support-section__adoption p,
.special-support-section__foster p,
.special-support-section__volunteer p {
    margin: 0 0 16px;
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.45;
}

.special-support-section__animals,
.special-support-section__adoption,
.special-support-section__foster,
.special-support-section__volunteer {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    padding: clamp(24px, 3vw, 36px);
    border-radius: 22px;
}

.special-support-section__heading {
    display: flex;
    height: 100%;
    flex-direction: column;
}

.special-support-section__heading .btn {
    align-self: flex-start;
    margin-top: auto;
}

.special-support-section__animals {
    background: rgba(155, 185, 139, 0.16);
}

.special-support-section__adoption {
    background: var(--brand-mist);
}

.special-support-section__foster {
    background: var(--brand-green);
}

.special-support-section__volunteer {
    background: rgba(248, 175, 102, 0.18);
}

.special-support-section__adoption .btn,
.special-support-section__foster .btn,
.special-support-section__volunteer .btn {
    align-self: flex-start;
    margin-top: auto;
}

.public-content .pet-carousel {
    --pet-carousel-gap: 34px;
    position: relative;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: var(--pet-carousel-gap);
    width: min(100%, 1120px);
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 20px 0 34px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
    -webkit-overflow-scrolling: touch;
}

.public-content .pet-carousel::-webkit-scrollbar {
    height: 10px;
}

.public-content .pet-carousel::-webkit-scrollbar-track {
    border-radius: 999px;
    background: var(--brand-mist);
}

.public-content .pet-carousel::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: var(--brand-green);
}

.public-content .pet-carousel > [class*="col-"] {
    flex: 0 0 calc((100% - 68px) / 3);
    max-width: calc((100% - 68px) / 3);
    padding-right: 0;
    padding-left: 0;
    scroll-snap-align: start;
}

.public-content .pet-carousel .card {
    position: relative;
    height: 100%;
    min-height: 540px;
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(45, 54, 72, 0.13);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.public-content .pet-carousel .card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 52px rgba(45, 54, 72, 0.18);
}

.public-content .pet-carousel .card-img-top,
.public-content .pet-carousel img.card-img-top {
    display: block;
    width: 100% !important;
    height: 380px !important;
    min-height: 380px;
    max-height: 380px !important;
    object-fit: cover !important;
    border-radius: 22px 22px 0 0;
}

.public-content .pet-carousel .card-body {
    display: flex;
    flex-direction: column;
    min-height: 200px;
    padding: 24px 24px 28px;
    text-align: left;
}

.public-content .pet-carousel .card-title {
    margin-bottom: 16px;
    color: var(--brand-orange);
    font-size: clamp(34px, 3vw, 44px);
    line-height: 1;
}

.public-content .pet-carousel .card-text {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: clamp(20px, 1.65vw, 28px);
    font-weight: 500;
    line-height: 1.18;
}

.home-pet-card__link {
    position: absolute;
    inset: 0;
    z-index: 2;
    border-radius: inherit;
}

.pet-carousel-controls {
    position: absolute;
    top: 58%;
    left: 50%;
    z-index: 3;
    width: min(calc(100vw - 32px), calc(var(--section-max) + 160px));
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: space-between;
    gap: 0;
    pointer-events: none;
    transform: translate(-50%, -50%);
}

.pet-carousel-controls__button {
    width: 58px;
    height: 58px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-navy);
    color: var(--brand-white);
    font-family: var(--font-label);
    font-size: 42px;
    font-weight: 800;
    line-height: 1;
    box-shadow: 0 12px 28px rgba(45, 54, 72, 0.18);
    pointer-events: auto;
}

.pet-carousel-controls__button::before {
    display: block;
    line-height: 0.8;
}

.pet-carousel-controls__button:first-child::before {
    content: "\2039";
    transform: translateY(-1px);
}

.pet-carousel-controls__button:last-child::before {
    content: "\203A";
    transform: translateY(-1px);
}

.pet-carousel-controls__button:hover {
    background: var(--brand-coral);
}

.cms-rich-text {
    width: 100%;
    margin: 0 auto 34px;
    text-align: left;
}

.cms-rich-text img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.cms-rich-text h1,
.cms-rich-text h2,
.cms-rich-text h3 {
    color: var(--brand-navy);
    font-family: var(--font-title);
    font-weight: 900;
}

.cms-rich-text p,
.cms-rich-text li {
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: clamp(17px, 1.15vw, 20px);
    line-height: 1.65;
}

.blog-section {
    width: 100%;
    text-align: left;
}

.blog-heading {
    width: min(100%, var(--section-max));
    max-width: var(--section-max);
    margin: 0 auto 42px;
    text-align: center;
}

.blog-heading h2,
.blog-detail h2 {
    margin: 0 0 14px;
    color: var(--brand-navy);
    font-family: var(--font-title);
    font-size: clamp(40px, 4.6vw, 74px);
    font-weight: 900;
    line-height: 1.02;
}

.blog-heading p,
.blog-empty,
.blog-detail__excerpt {
    color: var(--brand-slate);
    font-family: var(--font-body);
    font-size: clamp(18px, 1.35vw, 22px);
    line-height: 1.55;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: clamp(22px, 3vw, 38px);
}

.home-blog-section__all {
    justify-content: center;
    width: fit-content;
    margin: clamp(16px, 2vw, 26px) auto 0;
}

.blog-filters {
    margin: -18px 0 34px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.blog-filter,
.blog-card__tags a {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    font-family: var(--font-label);
    font-weight: 800;
    text-decoration: none;
}

.blog-filter {
    padding: 10px 18px;
    border: 2px solid rgba(80, 94, 123, 0.18);
    background: var(--brand-white);
    color: var(--brand-navy) !important;
}

.blog-filter:hover,
.blog-filter.is-active {
    border-color: var(--brand-orange);
    background: var(--brand-orange);
    color: var(--brand-white) !important;
}

.blog-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid rgba(80, 94, 123, 0.16);
    border-radius: 22px;
    background: var(--brand-white);
    box-shadow: 0 18px 38px rgba(45, 54, 72, 0.12);
}

.blog-card__image {
    display: block;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.blog-card__image img,
.blog-detail__image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.blog-card__body {
    flex: 1;
    padding: clamp(24px, 2.4vw, 34px);
}

.blog-card time,
.blog-detail time {
    color: var(--brand-orange);
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-card__tags {
    margin-top: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.blog-card__tags a {
    padding: 6px 11px;
    background: var(--brand-mist);
    color: var(--brand-slate) !important;
    font-size: 13px;
}

.blog-card__tags a:hover {
    background: var(--brand-green);
    color: var(--brand-white) !important;
}

.blog-card h3 {
    margin: 10px 0 14px;
    font-family: var(--font-title);
    font-size: clamp(26px, 2.4vw, 38px);
    font-weight: 900;
    line-height: 1.08;
}

.blog-card h3 a {
    color: var(--brand-navy) !important;
    text-decoration: none;
}

.blog-card p {
    color: var(--brand-slate);
    font-size: 18px;
    line-height: 1.55;
}

.blog-card__link,
.blog-back {
    display: inline-flex;
    margin-top: 12px;
    color: var(--brand-blue) !important;
    font-family: var(--font-label);
    font-weight: 800;
    text-decoration: none;
}

.blog-detail {
    width: min(100%, var(--section-max));
    max-width: var(--section-max);
    margin: 0 auto;
    text-align: left;
}

.special-case-posts-section {
    margin-top: 36px;
    padding-bottom: 28px;
}

.special-case-posts-section .blog-heading {
    margin-bottom: 16px;
}

.special-case-posts-carousel .blog-card {
    height: 100%;
    min-height: 500px;
}

.special-case-posts-carousel .blog-card__image {
    flex: 0 0 240px;
    height: 240px;
}

.special-case-posts-carousel .blog-card__body {
    display: flex;
    min-height: 260px;
    flex-direction: column;
}

.special-case-posts-carousel .blog-card p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.special-case-posts-carousel .blog-card__link {
    margin-top: auto;
}

.blog-detail__image {
    max-height: 520px;
    margin: 22px 0 34px;
    border-radius: 24px;
}

.blog-detail__video {
    position: relative;
    width: 100%;
    margin: 22px 0 34px;
    overflow: hidden;
    border-radius: 18px;
    background: var(--brand-navy);
    box-shadow: 0 16px 34px rgba(45, 54, 72, 0.14);
    aspect-ratio: 16 / 9;
}

.blog-detail__video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.blog-detail__excerpt {
    margin-bottom: 32px;
    color: var(--brand-navy);
    font-weight: 700;
}

.events-section {
    width: 100%;
    text-align: left;
}

.events-grid {
    display: grid;
    gap: clamp(26px, 3.5vw, 42px);
}

.event-card {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    height: 420px;
    overflow: hidden;
    border: 2px solid rgba(80, 94, 123, 0.14);
    border-radius: 24px;
    background: var(--brand-white);
    box-shadow: 0 18px 38px rgba(45, 54, 72, 0.12);
}

.event-card--text-only {
    grid-template-columns: 1fr;
    height: 360px;
}

.event-card__image {
    height: 100%;
    background: var(--brand-mist);
}

.event-card__image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.event-card__body {
    min-width: 0;
    padding: clamp(28px, 3.2vw, 46px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.event-card time {
    color: var(--brand-orange);
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    text-transform: uppercase;
}

.event-card h3 {
    margin: 14px 0 16px;
    color: var(--brand-navy);
    font-family: var(--font-title);
    font-size: clamp(26px, 2.2vw, 36px);
    font-weight: 900;
    line-height: 1.08;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.event-card__excerpt {
    margin: 0 0 18px;
    color: var(--brand-slate);
    font-size: clamp(17px, 1.2vw, 20px);
    font-weight: 700;
    line-height: 1.55;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.event-card__description,
.event-card__description p,
.event-card__description li {
    color: var(--brand-navy);
    font-size: clamp(16px, 1.05vw, 18px);
    line-height: 1.62;
}

.event-card__description {
    overflow: hidden;
}

.event-card__description p {
    margin-bottom: 12px;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.event-card .blog-card__link {
    margin-top: auto;
}

.events-page-section .event-card {
    height: auto;
    min-height: 420px;
}

.events-page-section .event-card__body {
    overflow: visible;
}

.event-fundraiser-progress {
    display: grid;
    gap: 12px;
    width: 100%;
    margin-top: 18px;
    padding: 14px;
    border: 2px solid rgba(80, 94, 123, 0.12);
    border-radius: 18px;
    background: rgba(148, 188, 146, 0.14);
}

.event-fundraiser-progress__item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: end;
}

.event-fundraiser-progress .fundraiser-meter {
    min-width: 0;
}

.event-fundraiser-progress .fundraiser-meter__bar {
    height: 12px;
}

.event-fundraiser-progress .fundraiser-meter p {
    margin-top: 8px;
    font-size: var(--text-sm);
    line-height: 1.35;
}

.event-fundraiser-progress .btn {
    align-self: center;
    min-height: 44px;
    padding: 10px 20px !important;
    white-space: nowrap;
}

.past-events-section {
    margin-top: clamp(42px, 6vw, 86px);
}

.past-events-expand {
    margin-top: clamp(20px, 3vw, 34px);
}

.past-events-expand summary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 22px;
    border: 0;
    border-radius: 999px;
    background: var(--brand-orange);
    color: var(--brand-white);
    font-family: var(--font-label);
    font-weight: 800;
    line-height: 1.2;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(239, 157, 74, 0.22);
    list-style: none;
}

.past-events-expand summary::-webkit-details-marker {
    display: none;
}

.past-events-expand summary:hover,
.past-events-expand summary:focus-visible {
    background: var(--brand-pink);
    color: var(--brand-white);
    outline: none;
}

.past-events-expand[open] summary {
    margin-bottom: clamp(20px, 3vw, 34px);
}

.brand-footer {
    position: relative;
    width: 100%;
    margin: 0 !important;
    padding: clamp(54px, 5vw, 78px) 0 clamp(24px, 2.4vw, 36px);
    border-radius: 0;
    background-color: var(--brand-navy) !important;
    color: var(--brand-white);
    overflow: hidden;
}

.brand-footer::after {
    display: none;
}

.brand-footer__inner {
    position: relative;
    z-index: 1;
    width: min(100% - 30px, var(--section-max));
    max-width: var(--section-max);
    margin: 0 auto;
}

.brand-footer__top {
    display: grid;
    grid-template-columns: minmax(250px, 1.15fr) minmax(0, 2.35fr);
    gap: clamp(36px, 6vw, 88px);
    align-items: start;
}

.brand-footer__identity {
    display: grid;
    justify-items: start;
    gap: clamp(16px, 2vw, 24px);
}

.brand-footer__mark {
    display: block;
    width: clamp(76px, 7vw, 104px);
    height: clamp(76px, 7vw, 104px);
    border-radius: 50%;
    object-fit: contain;
}

.brand-footer__tagline {
    margin: 0;
    color: var(--brand-white);
    font-family: var(--font-logo);
    font-size: clamp(20px, 1.7vw, 28px);
    line-height: 1.18;
}

.brand-footer__description,
.brand-footer__cif {
    max-width: 520px;
    margin: 0;
    color: rgba(252, 253, 255, 0.68);
    font-family: var(--font-body);
    font-size: clamp(15px, 1vw, 18px);
    font-weight: 700;
    line-height: 1.55;
}

.brand-footer__cif {
    font-family: var(--font-label);
    font-weight: 900;
}

.brand-footer__bank {
    display: grid;
    gap: 6px;
    width: 100%;
    max-width: 520px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
}

.brand-footer__bank h2 {
    margin: 0 0 4px;
}

.brand-footer__bank-name {
    margin: 0 0 2px;
    color: var(--brand-white);
    font-family: var(--font-label);
    font-size: clamp(11px, 0.78vw, 13px);
    font-weight: 900;
    line-height: 1.25;
}

.brand-footer__bank .bank-card__copy-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 6px;
    margin: 0;
    color: rgba(252, 253, 255, 0.74);
    font-family: var(--font-label);
    font-size: clamp(10px, 0.72vw, 12px);
    font-weight: 800;
    line-height: 1.25;
}

.brand-footer__bank .bank-card__copy-row span {
    min-width: 0;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.brand-footer__bank .bank-card__copy-row strong {
    color: var(--brand-white);
}

.brand-footer__bank .bank-card__copy {
    width: 26px;
    height: 26px;
    min-width: 26px;
    border-color: rgba(252, 253, 255, 0.28);
    color: var(--brand-white);
}

.brand-footer__bank .bank-card__copy:hover,
.brand-footer__bank .bank-card__copy:focus-visible {
    border-color: var(--brand-orange);
    background: var(--brand-orange);
}

.brand-footer__nav {
    display: grid;
    grid-template-columns: repeat(3, minmax(150px, 1fr));
    gap: clamp(28px, 4.5vw, 70px);
}

.brand-footer__nav section {
    display: grid;
    align-content: start;
    gap: 12px;
}

.brand-footer h2 {
    margin: 0 0 6px;
    color: var(--brand-white);
    font-family: var(--font-label);
    font-weight: 900;
    font-size: clamp(15px, 1.05vw, 18px);
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand-footer__nav a {
    color: rgba(252, 253, 255, 0.64);
    font-family: var(--font-label);
    font-size: clamp(15px, 1.02vw, 18px);
    font-weight: 900;
    line-height: 1.22;
    text-decoration: none;
    transition: color 0.18s ease;
}

.brand-footer__nav a:hover,
.brand-footer__nav a:focus-visible {
    color: var(--brand-white);
    text-decoration: none;
}

.brand-footer__form-card {
    width: 100%;
    max-width: 470px;
    justify-self: end;
    padding: clamp(16px, 1.7vw, 24px);
    border-radius: 18px;
    background-color: var(--brand-white);
    color: var(--brand-navy);
}

.brand-footer__form-card h2 {
    margin-bottom: 14px;
    color: var(--brand-navy);
    line-height: 1.15;
}

.brand-footer__form {
    display: grid;
    gap: 11px;
}

.brand-footer__feedback {
    margin: 0 0 12px;
    border-radius: 12px;
    padding: 9px 12px;
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
}

.brand-footer__feedback--success {
    background: rgba(148, 188, 146, 0.24);
    color: var(--brand-navy);
}

.brand-footer__feedback--error {
    background: rgba(255, 86, 120, 0.14);
    color: var(--brand-navy);
}

.brand-footer__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.brand-footer__form input[type="text"],
.brand-footer__form input[type="email"],
.brand-footer__form textarea {
    width: 100%;
    border: 2px solid var(--brand-navy);
    border-radius: 10px;
    padding: 9px 12px;
    background-color: var(--brand-white);
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: clamp(12px, 0.78vw, 14px);
    font-weight: 700;
    outline: none;
}

.brand-footer__form textarea {
    min-height: 70px;
    resize: vertical;
}

.brand-footer__form input::placeholder,
.brand-footer__form textarea::placeholder {
    color: rgba(45, 54, 72, 0.42);
}

.brand-footer__consent {
    display: grid;
    grid-template-columns: 15px 1fr;
    gap: 8px;
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
}

.brand-footer__consent input {
    width: 15px;
    height: 15px;
    margin-top: 2px;
    accent-color: var(--brand-orange);
}

.brand-footer__form button {
    justify-self: end;
    min-width: 120px;
    padding: 7px 18px;
    border: 2px solid var(--brand-navy);
    border-radius: 999px;
    background-color: var(--brand-white);
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: 13px;
    font-weight: 800;
}

.brand-footer__rule {
    height: 2px;
    margin: clamp(42px, 5vw, 72px) 0 clamp(22px, 2.5vw, 34px);
    border-radius: 999px;
    background-color: rgba(252, 253, 255, 0.10);
}

.brand-footer__newsletter {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
    gap: 20px;
    align-items: center;
    border-radius: 18px;
    padding: clamp(16px, 1.8vw, 24px);
    background:
        radial-gradient(circle at 96% 0%, rgba(240, 166, 86, 0.22) 0 70px, transparent 71px),
        linear-gradient(135deg, var(--brand-white) 0%, #fffaf4 56%, #f2f7ef 100%);
    color: var(--brand-navy);
    box-shadow: 0 18px 38px rgba(12, 19, 34, 0.16);
}

.brand-footer__newsletter h2 {
    margin-bottom: 6px;
    color: var(--brand-orange);
    font-family: var(--font-heading);
    font-size: clamp(24px, 2.2vw, 34px);
    font-weight: 900;
    line-height: 1;
}

.brand-footer__newsletter p {
    max-width: 560px;
    margin: 0;
    color: rgba(45, 54, 72, 0.76);
    font-family: var(--font-body);
    font-size: clamp(13px, 0.9vw, 16px);
    font-weight: 700;
    line-height: 1.35;
}

.brand-footer__newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: end;
}

.brand-footer__newsletter-form input {
    width: 100%;
    min-height: 48px;
    border: 2px solid rgba(80, 94, 123, 0.18);
    border-radius: 999px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 800;
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.42), 0 10px 22px rgba(45, 54, 72, 0.06);
}

.brand-footer__newsletter-form input::placeholder {
    color: rgba(45, 54, 72, 0.45);
}

.brand-footer__newsletter-form input:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 4px rgba(240, 166, 86, 0.16), 0 10px 22px rgba(45, 54, 72, 0.06);
}

.brand-footer__newsletter-form button {
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    padding: 10px 22px;
    background: var(--brand-orange);
    color: var(--brand-white);
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(238, 149, 66, 0.22);
    transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.brand-footer__newsletter-form button:hover,
.brand-footer__newsletter-form button:focus-visible {
    background: var(--brand-coral);
    box-shadow: 0 14px 28px rgba(255, 86, 120, 0.24);
    transform: translateY(-1px);
}

.brand-footer__bottom {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(14px, 2.2vw, 24px);
    align-items: center;
}

.brand-footer__bottom p {
    margin: 0;
    color: rgba(252, 253, 255, 0.68);
    font-family: var(--font-label);
    font-size: clamp(13px, 0.92vw, 16px);
    font-weight: 900;
    white-space: normal;
}

.brand-footer__socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: end;
    gap: clamp(10px, 1vw, 16px);
}

.brand-footer__socials a {
    width: clamp(40px, 3.2vw, 54px);
    height: clamp(40px, 3.2vw, 54px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(252, 253, 255, 0.10);
    color: var(--brand-white);
    font-family: var(--font-label);
    font-weight: 900;
    text-decoration: none;
    font-size: clamp(15px, 1.15vw, 20px);
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

.brand-footer__socials a:hover,
.brand-footer__socials a:focus-visible {
    background-color: var(--brand-orange);
    color: var(--brand-white);
    text-decoration: none;
    transform: translateY(-1px);
}

.public-page {
    font-size: var(--text-base);
    line-height: 1.55;
}

.public-content,
.public-content .card,
.public-content .card-body,
.public-content .card-text,
.public-content p,
.public-content li,
.public-content td,
.public-content dd {
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.58;
}

.public-content p,
.public-content ul,
.public-content ol {
    margin-bottom: 1rem;
}

.public-content h1,
.public-content h2,
.public-content h3,
.public-content h4,
.public-content h5,
.public-content h6,
.public-content .card-title {
    color: var(--brand-navy);
    font-family: var(--font-title);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: 0;
}

.public-content h1,
.public-content .blog-heading h2,
.public-content .blog-detail h2 {
    font-size: var(--title-page);
}

.public-content h2,
.public-content h3 {
    font-size: var(--title-section);
}

.public-content .card-header,
.public-content h4.card-header,
.public-content h4.pt-md-4.card-header {
    color: var(--brand-navy);
    font-family: var(--font-title);
    font-size: var(--title-section);
}

.public-content .card-title,
.public-content h5,
.pet-filter-card h5,
.event-card h3,
.blog-card h3 {
    font-size: var(--title-card);
}

.public-content .card,
.blog-card,
.event-card,
.pet-filter-card,
.public-content .pet-carousel .card {
    border: 2px solid rgba(80, 94, 123, 0.14);
    border-radius: var(--radius-card);
    background-color: var(--brand-white);
    color: var(--brand-navy);
    box-shadow: var(--shadow-card);
}

.public-content > .row > .card,
.public-content .container > .card,
.public-content .projects-section {
    border: 0;
    background-color: transparent;
    box-shadow: none;
}

.public-content .card-body,
.blog-card__body,
.event-card__body,
.pet-filter-card__body {
    padding: clamp(18px, 2.2vw, 28px);
}

.public-content .card-text,
.page-card .card-text,
.patrocle-card .card-text,
.blog-card p,
.event-card__excerpt,
.pet-filter-card__facts dt,
.pet-filter-card__facts dd,
.pet-preview__description,
.cms-rich-text p,
.cms-rich-text li {
    font-family: var(--font-body);
    font-size: var(--text-card);
}

.public-content .lead,
.home-pet-section > p,
.blog-heading p,
.blog-empty,
.blog-detail__excerpt,
.projects-section__intro-text {
    color: var(--brand-slate);
    font-family: var(--font-body);
    font-size: var(--text-lead);
    line-height: 1.55;
}

.public-content .btn,
.public-content button,
.public-content label,
.public-content input,
.public-content select,
.public-content textarea,
.public-content time,
.blog-filter,
.blog-card__link,
.blog-back,
.pet-filter-reset,
.pet-filter-card__type,
.pet-filter-card__badge {
    font-family: var(--font-label);
}

.public-content .btn-primary,
.public-content .btn-success,
.blog-card__link,
.blog-back,
.pet-pagination a {
    font-size: var(--text-sm);
    font-weight: 800;
}

.public-content .btn-primary,
.public-content .btn-success {
    padding: 10px 18px;
    background-color: var(--brand-orange) !important;
    color: var(--brand-white) !important;
    text-decoration: none;
}

.public-content .btn-primary:hover,
.public-content .btn-primary:focus-visible,
.public-content .btn-success:hover,
.public-content .btn-success:focus-visible {
    background-color: var(--brand-coral) !important;
    color: var(--brand-white) !important;
}

.public-content a:not(.btn):not(.hero-donate):not(.partner-logo):not(.home-pet-card__link) {
    color: var(--brand-blue);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.16em;
}

.public-content img {
    max-width: 100%;
}

.public-content .page-card .card-title,
.public-content .patrocle-card .card-title {
    color: var(--brand-orange);
}

.public-content .pet-carousel .card-title {
    font-size: var(--title-card);
}

.public-content .pet-carousel .card-text {
    font-size: var(--text-card);
    line-height: 1.35;
}

.partners-section__intro h4 {
    font-family: var(--font-title);
}

@media (max-width: 1180px) {
    .public-hero {
        inset: 22px 0 auto;
    }

    .hero-nav {
        min-height: 84px;
        grid-template-columns: auto 1fr auto;
        gap: 14px;
        padding: 8px 12px;
    }

    .hero-links {
        justify-content: flex-start;
        gap: 6px;
    }

    .hero-links a,
    .hero-projects__trigger {
        max-width: 132px;
        padding-right: 6px;
        padding-left: 6px;
        font-size: 14px;
    }

    .hero-donate {
        grid-column: 2;
        grid-row: 2;
        justify-self: center;
        min-width: 180px;
        min-height: 62px;
        margin: 0;
        font-size: 34px;
    }

    .hero-language {
        grid-column: 3;
        grid-row: 1 / span 2;
    }

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

    .public-stats {
        padding-top: 96px;
    }

    .brand-footer {
        width: 100%;
        padding: 38px 0 30px;
    }

    .brand-footer__inner {
        width: min(100% - 30px, var(--section-max));
        max-width: var(--section-max);
    }

    .brand-footer__main {
        grid-template-columns: 1fr;
    }

    .brand-footer__form-card {
        justify-self: stretch;
        max-width: none;
    }

    .brand-footer__bottom {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) and (min-width: 761px) {
    .pet-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

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

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

    .brand-footer__inner {
        width: min(100% - 30px, var(--section-max));
        max-width: var(--section-max);
    }

    .home-fundraisers-section .home-event-card {
        flex-basis: calc((100% - 24px) / 2);
        max-width: calc((100% - 24px) / 2);
    }
}

@media (max-width: 760px) {
    .cookie-consent {
        grid-template-columns: 1fr;
        align-items: stretch;
        padding: 16px;
        border-radius: 18px;
    }

    .cookie-consent__actions {
        justify-content: stretch;
    }

    .cookie-consent__button {
        flex: 1 1 150px;
    }

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

    .patrocle-page-section {
        margin-bottom: 34px;
    }

    .patrocle-project-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .lizuca-card-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .lizuca-help-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .project-tagged-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .project-tagged-grid .home-event-card__body {
        min-height: 205px;
    }

    .home-events-section {
        min-height: 0;
        padding-top: 38px;
        padding-bottom: 44px;
    }

    .home-events-section::before {
        display: none;
    }

    .home-events-section::after {
        content: "";
        position: relative;
        z-index: 1;
        display: block;
        width: min(56vw, 240px);
        height: 190px;
        margin: 18px 0 0 auto;
        background-image: url("/boot/img/events-illustration.576c69fe0cff.svg");
        background-repeat: no-repeat;
        background-position: left bottom;
        background-size: contain;
        opacity: 0.9;
        pointer-events: none;
    }

    .home-events-section__heading {
        position: relative;
        top: auto;
        right: auto;
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        justify-content: flex-start;
        margin-bottom: 24px;
        text-align: left;
    }

    .home-events-section__heading h4 {
        font-size: clamp(38px, 12vw, 56px);
    }

    .home-events-carousel {
        width: calc(100% - 96px);
        margin: 0 auto;
    }

    .home-fundraisers-section .home-events-carousel {
        width: calc(100% - 96px);
        padding: 0 0 12px;
        margin: 0 auto;
    }

    .home-fundraisers-section {
        padding-top: 26px;
        padding-bottom: 26px;
    }

    .home-fundraisers-section .home-events-section__heading {
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin-bottom: 6px;
        gap: 10px;
        text-align: center;
    }

    .home-fundraisers-section .home-events-section__heading::before,
    .home-fundraisers-section .home-events-section__heading::after {
        height: 7px;
    }

    .home-fundraisers-section .home-event-card__body {
        min-height: 190px;
    }

    .home-fundraisers-section::after {
        display: none;
    }

    .home-fundraisers-section .home-event-card {
        flex-basis: 100%;
        max-width: 100%;
    }

    .home-event-card {
        flex-basis: 100%;
    }

    .home-event-card__media {
        height: 300px;
    }

    .home-event-card__body {
        min-height: 190px;
        padding: 22px;
    }

    .home-event-card p {
        font-size: 20px;
    }

    .home-events-section .pet-carousel-controls {
        position: relative;
        top: 300px;
        right: auto;
        left: auto;
        justify-content: space-between;
        gap: 0;
        width: 100%;
        height: 0;
        margin: 0;
        transform: none;
    }

    .home-events-section:not(.home-fundraisers-section) .pet-carousel-controls {
        left: auto;
        width: 100%;
        transform: none;
    }

    .home-events-section:not(.home-fundraisers-section) .home-events-carousel {
        width: calc(100% - 96px);
        margin-right: auto;
        margin-left: auto;
    }

    .home-fundraisers-section .pet-carousel-controls {
        position: relative;
        top: 234px;
        right: auto;
        left: auto;
        width: 100%;
        height: 0;
        margin: 0;
        transform: none;
    }

    .home-events-section .pet-carousel-controls__button {
        box-shadow: 0 10px 24px rgba(45, 54, 72, 0.2);
    }

    .pet-table-filters {
        grid-template-columns: 1fr;
    }

    .stripe-donation-form fieldset {
        grid-template-columns: 1fr;
    }

    .stripe-donation-form {
        grid-template-columns: 1fr;
    }

    .donation-modal__header {
        grid-template-columns: 1fr;
        gap: 12px;
        padding-right: 40px;
    }

    .donation-modal__header img {
        width: 62px;
        height: 62px;
    }

    .donation-flip-card,
    .donation-flip-card__inner {
        width: 100%;
        min-height: 500px;
    }

    #donation-support > .card-body,
    #donation-support .row.card-body {
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding-right: 0;
        padding-left: 0;
    }

    #donation-support .col-md-12 {
        padding-right: 0;
        padding-left: 0;
    }

    .donation-flip-card__front {
        padding: 20px;
    }

    .bank-card__header {
        gap: 10px;
        padding-bottom: 12px;
    }

    .bank-card__header h5 {
        font-size: 26px;
    }

    .bank-card__icon {
        flex-basis: 32px;
        width: 32px;
        height: 28px;
        border-radius: 8px;
    }

    .bank-card__accounts {
        margin-top: 16px;
    }

    .bank-card__accounts p {
        margin-bottom: 8px;
        font-size: 14px;
        line-height: 1.18;
    }

    .bank-card__copy {
        width: 24px;
        height: 24px;
    }

    .bank-card__copy::before,
    .bank-card__copy::after {
        width: 10px;
        height: 12px;
    }

    .bank-card__copy::before {
        top: 5px;
        left: 6px;
    }

    .bank-card__copy::after {
        top: 8px;
        left: 9px;
    }

    .bank-card__footer {
        align-items: flex-end;
        flex-direction: row;
        gap: 12px;
    }

    .bank-card__brand img {
        width: 68px;
    }

    .bank-card__donate {
        width: auto;
        min-width: 150px;
        padding: 12px 20px;
        font-size: 24px;
    }

    .pet-filter-reset {
        justify-content: center;
    }

    .pet-preview-modal .modal-dialog {
        margin: 12px;
    }

    .pet-detail-page {
        width: min(100% - 28px, var(--section-max));
        margin: 24px auto 42px;
    }

    .pet-detail-page__actions {
        margin-bottom: 14px;
    }

    .pet-preview {
        --pet-preview-pad: 20px;
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .pet-preview__visual {
        position: relative;
        top: auto;
        margin: var(--pet-preview-pad) var(--pet-preview-pad) 0;
    }

    .pet-preview__media,
    .pet-preview__media img {
        min-height: 0;
        height: 320px;
    }

    .pet-preview__media {
        border-radius: 18px;
    }

    .pet-preview__body {
        padding: 28px var(--pet-preview-pad);
    }

    .pet-preview__heading {
        margin-right: 46px;
    }

    .pet-preview__body h2 {
        font-size: 34px;
    }

    .pet-preview__facts {
        grid-template-columns: 1fr;
    }

    .special-support-section {
        padding: 30px 0 38px;
    }

    .special-support-section__inner {
        grid-template-columns: 1fr;
    }

    .public-hero {
        inset: 12px 0 auto;
        padding: 0 var(--section-gutter);
    }

    .hero-nav {
        width: 100%;
        min-height: 0;
        grid-template-columns: 58px 1fr 54px;
        gap: 10px;
        padding: 10px;
        border-radius: 18px;
    }

    .hero-logo {
        width: 56px;
        height: 56px;
    }

    .hero-menu-toggle {
        display: inline-flex;
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    .hero-links {
        display: none;
        grid-column: 1 / -1;
        grid-row: 2;
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
        flex-wrap: nowrap;
        padding: 6px 0 0;
    }

    .hero-nav.is-menu-open .hero-links {
        display: flex;
    }

    .hero-projects,
    .hero-links > a {
        width: 100%;
    }

    .hero-links a,
    .hero-projects__trigger {
        flex: none;
        max-width: none;
        width: 100%;
        min-height: 38px;
        display: inline-flex;
        align-items: center;
        gap: 4px;
        border-radius: 12px;
        padding: 7px 10px;
        background: rgba(255, 255, 255, 0.12);
        font-size: 18px;
        line-height: 1.15;
        white-space: normal;
    }

    .hero-link__icon {
        width: 1.7em;
        height: 1.7em;
        font-size: 0.78em;
    }

    .hero-projects__trigger {
        width: 100%;
        justify-content: flex-start;
    }

    .hero-projects__menu {
        position: static;
        min-width: 0;
        padding: 8px 0 0 8px;
        gap: 8px;
        background: transparent;
        box-shadow: none;
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .hero-projects__menu a {
        min-height: 36px;
        padding: 6px 10px;
        font-size: 16px;
        background: rgba(255, 255, 255, 0.1);
    }

    .hero-projects__menu a:hover,
    .hero-projects__menu a:focus-visible {
        transform: none;
    }

    .hero-donate {
        display: none;
        grid-column: 1 / -1;
        grid-row: 3;
        width: min(260px, 100%);
        min-width: 0;
        min-height: 60px;
        justify-self: center;
        font-size: 31px;
    }

    .hero-nav.is-menu-open .hero-donate {
        display: inline-flex;
    }

    .hero-language {
        grid-column: 3;
        grid-row: 1;
        min-width: 52px;
        min-height: 52px;
        font-size: 14px;
    }

    .ro-flag,
    .en-mark {
        width: 34px;
        height: 34px;
    }

    .en-mark {
        font-size: 11px;
    }

    .public-hero-image {
        min-height: 50vh;
        aspect-ratio: auto;
        align-items: flex-start;
        padding: 132px var(--section-gutter) 24px;
        background-position: center;
    }

    .hero-copy h1 {
        font-size: clamp(28px, 9vw, 38px);
        line-height: 1.08;
    }

    .hero-copy p {
        margin-top: 14px;
        font-size: clamp(13px, 4vw, 16px);
        line-height: 1.22;
    }

    .hero-actions {
        gap: 10px;
        margin-top: 18px;
    }

    .hero-action {
        min-height: 46px;
        padding: 11px 16px;
        font-size: 16px;
    }

    .public-hero-image + .public-stats {
        margin-top: 0;
    }

    .hero-accreditations {
        gap: 10px;
        margin-top: 16px;
    }

    .hero-accreditations a {
        width: 52px;
        height: 52px;
        border-radius: 0;
    }

    .public-stats {
        padding: 30px 10px 36px;
        background-position: center top;
        background-size: 360vw 100%;
        background-color: var(--brand-green);
    }

    .stats-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 6px;
        width: 100%;
    }

    .stat-item {
        min-width: 0;
        gap: 4px;
        text-align: center;
    }

    .stat-item strong {
        font-size: clamp(22px, 6vw, 46px);
        white-space: nowrap;
    }

    .stat-item span {
        font-size: clamp(9px, 2.7vw, 18px);
        line-height: 1.12;
        white-space: nowrap;
    }

    .public-content {
        padding-top: 28px;
        padding-bottom: 28px;
    }

    .public-content .card-header,
    .public-content h4.card-header,
    .public-content h4.pt-md-4.card-header {
        gap: 12px;
        margin: 32px 0 24px;
        font-size: 28px;
    }

    .public-content .card-header::before,
    .public-content .card-header::after,
    .public-content h4.card-header::before,
    .public-content h4.card-header::after {
        height: 7px;
        flex-basis: 42px;
    }

    .public-content .card-body {
        padding: 18px;
    }

    .public-content .projects-section__body {
        padding-bottom: 0;
    }

    .public-content .projects-section__body::before,
    .public-content .projects-section__body::after {
        top: auto;
        bottom: 0;
        height: min(52vw, 260px);
    }

    .public-content .projects-section__body::after {
        background-size: 260vw 100%;
        background-position: center bottom;
    }

    .public-content .card-img-top,
    .public-content img.card-img-top {
        min-height: 210px;
    }

    .partners-section {
        width: 100vw;
        margin: 0 calc(50% - 50vw) 30px !important;
        padding: 22px 0 34px;
        background-size: cover;
        background-position: center center;
        background-color: transparent;
    }

    .partners-section__intro {
        display: block;
        padding: 0 18px;
    }

    .partners-logo-grid {
        display: flex;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: space-between;
        gap: 8px;
        padding: 0 18px;
    }

    .partner-logo {
        flex: 1 1 0;
        min-width: 0;
        min-height: 62px;
        padding: 4px;
    }

    .partner-logo img {
        max-width: 100%;
        max-height: 62px;
        height: auto;
    }

    .partners-section__thanks {
        margin-top: 8px;
        padding: 0 18px;
        font-size: clamp(14px, 4.2vw, 18px);
        text-align: right;
        white-space: nowrap;
    }

    .public-content .pet-carousel {
        width: 100vw;
        margin-left: calc(50% - 50vw) !important;
        margin-right: 0 !important;
        gap: 18px;
        padding-right: 60px;
        padding-left: 60px;
        scroll-padding-left: 60px;
    }

    .public-content .pet-carousel > [class*="col-"] {
        flex-basis: min(78vw, 330px);
        max-width: min(78vw, 330px);
    }

    .public-content #home-pets.pet-carousel {
        width: calc(100% - 96px);
        margin-right: auto !important;
        margin-left: auto !important;
        gap: 16px;
        padding-right: 0;
        padding-left: 0;
        scroll-padding-left: 0;
    }

    .public-content #home-pets.pet-carousel > [class*="col-"] {
        flex-basis: 100%;
        max-width: 100%;
    }

    .public-content .pet-carousel .card {
        min-height: 460px;
    }

    .public-content .pet-carousel .card-img-top,
    .public-content .pet-carousel img.card-img-top {
        height: 270px !important;
        min-height: 270px;
        max-height: 270px !important;
    }

    .public-content .pet-carousel .card-body {
        min-height: 176px;
        padding: 20px 18px 22px;
    }

    .public-content .pet-carousel .card-title {
        font-size: 32px;
    }

    .public-content .pet-carousel .card-text {
        font-size: 20px;
    }

    .pet-carousel-controls {
        top: 60%;
        padding: 0 14px;
    }

    .pet-carousel-controls__button {
        width: 48px;
        height: 48px;
        font-size: 34px;
    }

    .patrocle-card {
        min-height: 0;
    }

    .public-content .patrocle-card .card-img-top {
        height: 220px;
        min-height: 220px;
        max-height: 220px;
    }

    .patrocle-card .card-body {
        min-height: 0;
    }

    .patrocle-card .card-title {
        min-height: 0;
    }

    .event-card {
        grid-template-columns: 1fr;
        height: auto;
    }

    .event-fundraiser-progress__item {
        grid-template-columns: 1fr;
    }

    .event-fundraiser-progress .btn {
        justify-self: start;
    }

    .event-card__image img {
        height: 240px;
    }

    .event-card--text-only {
        height: auto;
    }

    .brand-footer {
        width: 100%;
        padding: 30px 0 24px;
        border-radius: 0;
    }

    .brand-footer::after {
        right: -190px;
        bottom: -130px;
        width: 760px;
        height: 360px;
        opacity: 0.46;
    }

    .brand-footer__inner {
        width: min(100% - 30px, var(--section-max));
        max-width: var(--section-max);
    }

    .brand-footer__main,
    .brand-footer__bottom,
    .brand-footer__newsletter {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .brand-footer__newsletter-form {
        grid-template-columns: 1fr;
    }

    .brand-footer__newsletter-form button {
        justify-self: start;
    }

    .brand-footer__tagline {
        margin-bottom: 16px;
    }

    .brand-footer__list li {
        font-size: 13px;
    }

    .brand-footer__list .fa {
        width: 18px;
        font-size: 17px;
    }
}

.adoptable-preview {
    max-width: 100%;
    overflow: hidden;
    width: 100%;
    padding: 14px clamp(4px, 0.8vw, 12px) 4px;
}

.adoptable-preview__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(10px, 1.1vw, 16px);
    width: 100%;
    max-width: 100%;
}

.adoptable-preview-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 425px;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid rgba(80, 94, 123, 0.12);
    border-radius: 18px;
    background: var(--brand-white);
    box-shadow: 0 14px 32px rgba(45, 54, 72, 0.09);
    cursor: pointer;
    text-align: left;
}

.adoptable-preview-card:focus-visible {
    outline: 3px solid var(--brand-orange);
    outline-offset: 4px;
}

.adoptable-preview-card__media {
    position: relative;
    display: grid;
    place-items: center;
    flex: 0 0 205px;
    height: 205px;
    min-height: 205px;
    overflow: hidden;
    background: var(--brand-mist);
    color: var(--brand-green);
    font-family: var(--font-heading);
    font-size: 54px;
    font-weight: 900;
}

.adoptable-preview-card__media img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100% !important;
    height: 100% !important;
    min-width: 100%;
    min-height: 100%;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
}

.adoptable-preview-card__body {
    position: relative;
    z-index: 1;
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    padding: 16px;
    background: var(--brand-white);
}

.adoptable-preview-card__heading {
    position: static;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
}

.adoptable-preview-card h5 {
    position: static;
    margin: 0;
    color: var(--brand-orange);
    font-family: var(--font-heading);
    min-width: 0;
    font-size: clamp(20px, 1.35vw, 27px);
    font-weight: 900;
    line-height: 1.05;
}

.adoptable-preview-card__gender {
    width: 34px;
    height: 34px;
    display: inline-flex;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-navy);
    color: var(--brand-white);
    font-size: 17px;
}

.adoptable-preview-card p {
    position: static;
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-body);
    display: -webkit-box;
    overflow: hidden;
    font-size: clamp(13px, 0.86vw, 15px);
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}

.adoptable-preview-card .adoptable-preview-card__meta {
    color: var(--brand-slate);
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    -webkit-line-clamp: 2;
}

.adoptable-preview-card .pet-card-traits {
    gap: 7px;
}

.adoptable-preview-card .pet-card-traits__item {
    width: 28px;
    height: 28px;
    font-size: 13px;
}

.adoptable-preview-card .pet-card-traits__icon {
    width: 17px;
    height: 17px;
}

.adoptable-preview-card .btn {
    position: static;
    align-self: flex-start;
    margin-top: auto;
}

.adoptable-preview__all-link {
    width: fit-content;
    margin: 18px auto 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-blue) !important;
    font-family: var(--font-label);
    font-size: 15px;
    font-weight: 800;
    text-decoration: none !important;
}

.adoptable-preview__all-link:hover,
.adoptable-preview__all-link:focus-visible {
    color: var(--brand-coral) !important;
}

.adoptable-listing-page {
    padding-top: 48px;
}

.spay-neuter-section {
    width: 100vw;
    box-sizing: border-box;
    margin: 0 calc(50% - 50vw) clamp(18px, 2.6vw, 36px);
    padding: 0 max(var(--section-gutter), calc((100vw - var(--section-max)) / 2));
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 24px);
    align-items: stretch;
    background-color: var(--brand-green);
    text-align: left;
}

.spay-neuter-section--donation-only {
    grid-template-columns: minmax(0, 1fr);
    justify-items: center;
    padding-top: clamp(20px, 3vw, 38px);
    padding-bottom: clamp(22px, 3.2vw, 42px);
}

.spay-neuter-section--donation-only > .card-header {
    width: 100vw;
    margin-bottom: clamp(12px, 1.8vw, 22px);
}

.spay-neuter-section__content {
    display: flex;
    min-width: 0;
    flex-direction: column;
    overflow: hidden;
    border: 2px solid rgba(80, 94, 123, 0.12);
    border-radius: 18px;
    background: var(--brand-white);
    box-shadow: 0 14px 32px rgba(45, 54, 72, 0.09);
}

.spay-neuter-section__media {
    height: 210px;
    min-height: 210px;
    background: var(--brand-mist);
}

.spay-neuter-section__media img {
    width: 100%;
    height: 100%;
    min-height: 210px;
    display: block;
    object-fit: cover;
}

.spay-neuter-section__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    gap: 12px;
    padding: clamp(18px, 2vw, 26px);
}

.spay-neuter-section h4 {
    margin: 0;
    color: var(--brand-orange);
    font-family: var(--font-heading);
    font-size: clamp(28px, 2.5vw, 42px);
    font-weight: 900;
    line-height: 1.05;
}

.spay-neuter-section p {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: clamp(14px, 0.95vw, 17px);
    line-height: 1.4;
}

.spay-neuter-section .btn {
    align-self: flex-start;
    margin-top: auto;
}

.spay-donation-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: clamp(18px, 2vw, 26px);
    border: 3px solid rgba(248, 175, 102, 0.56);
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(248, 175, 102, 0.16), rgba(252, 253, 255, 0) 42%),
        var(--brand-white);
    box-shadow: 0 18px 42px rgba(45, 54, 72, 0.16), 0 0 0 7px rgba(248, 175, 102, 0.1);
    color: var(--brand-navy);
}

.spay-donation-card__heading {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: start;
    margin-bottom: 14px;
}

.spay-donation-card__heading > .fa {
    color: var(--brand-orange);
    font-size: 34px;
    line-height: 1;
}

.spay-donation-card h5 {
    margin: 0 0 8px;
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: clamp(20px, 1.45vw, 26px);
    font-weight: 800;
    line-height: 1.08;
}

.spay-donation-card p {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.35;
}

.spay-donation-card__impact {
    display: grid;
    gap: 12px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
}

.spay-donation-card__impact li {
    display: grid;
    grid-template-columns: 34px auto 1fr;
    gap: 10px;
    align-items: center;
}

.spay-donation-card__impact .fa {
    color: var(--brand-slate);
    font-size: 22px;
    text-align: center;
}

.spay-donation-card__impact strong {
    color: var(--brand-orange);
    font-family: var(--font-label);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.spay-donation-card__impact span {
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.25;
}

.spay-donation-card__amounts {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}

.spay-donation-card__amounts button,
.spay-donation-card__amounts label {
    min-height: 42px;
    border: 2px solid rgba(80, 94, 123, 0.3);
    border-radius: 10px;
    background: var(--brand-white);
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 800;
}

.spay-donation-card__amounts button {
    cursor: pointer;
}

.spay-donation-card__amounts button.is-selected {
    border-color: var(--brand-orange);
    background: var(--brand-peach);
    color: var(--brand-white);
    box-shadow: 0 10px 18px rgba(248, 175, 102, 0.22);
}

.spay-donation-card__amounts label {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.spay-donation-card__amounts label span {
    padding: 0 8px;
}

.spay-donation-card__amounts input {
    width: 100%;
    min-width: 0;
    height: 100%;
    border: 0;
    padding: 0 8px;
    color: var(--brand-navy);
    font: inherit;
    text-align: center;
    outline: none;
}

.spay-donation-card__footer {
    display: grid;
    grid-template-columns: minmax(130px, auto) minmax(180px, 1fr);
    gap: 12px;
    align-items: center;
    margin-top: auto;
}

.spay-donation-card__monthly {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: 14px;
    font-weight: 700;
}

.spay-donation-card__monthly input {
    width: 20px;
    height: 20px;
    accent-color: var(--brand-orange);
}

.spay-donation-card__submit {
    min-height: 48px;
    border: 0;
    border-radius: 999px;
    background: var(--brand-orange);
    color: var(--brand-white);
    font-family: var(--font-label);
    font-size: 16px;
    font-weight: 800;
    box-shadow: 0 14px 26px rgba(248, 175, 102, 0.34);
    transition: background-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}

.spay-donation-card__submit:hover,
.spay-donation-card__submit:focus-visible {
    background: var(--brand-coral) !important;
    box-shadow: 0 16px 28px rgba(241, 135, 169, 0.34);
    transform: translateY(-1px);
}

.spay-campaign-page {
    width: 100%;
    margin: 0 auto clamp(34px, 5vw, 72px);
}

.spay-campaign-intro {
    width: 100%;
    margin: 0 auto clamp(22px, 3vw, 36px);
    text-align: center;
}

.spay-campaign-intro p {
    width: min(100%, var(--section-max));
    margin: 0 auto;
    color: var(--brand-slate);
    font-family: var(--font-body);
    font-size: var(--type-lead);
    line-height: 1.55;
}

.spay-campaign-impact {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 24px);
    width: min(100%, var(--section-max));
    margin: 0 auto clamp(24px, 3.5vw, 42px);
}

.spay-campaign-impact div {
    min-height: 132px;
    padding: clamp(18px, 2vw, 26px);
    border-radius: 18px;
    background: var(--brand-green);
    color: var(--brand-white);
    box-shadow: 0 14px 32px rgba(45, 54, 72, 0.12);
}

.spay-campaign-impact strong {
    display: block;
    margin-bottom: 8px;
    color: var(--brand-navy);
    font-family: var(--font-title);
    font-size: clamp(26px, 2.4vw, 38px);
    font-weight: 900;
    line-height: 1.05;
}

.spay-campaign-impact span {
    display: block;
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.4;
}

.spay-reproduction {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 30px);
    width: min(100%, var(--section-max));
    margin: 0 auto clamp(24px, 3.5vw, 42px);
}

.spay-reproduction-card {
    position: relative;
    overflow: hidden;
    min-height: 360px;
    padding: clamp(20px, 2.4vw, 30px);
    border-radius: 24px;
    background: var(--brand-white);
    box-shadow: var(--shadow-card);
}

.spay-reproduction-card::before {
    content: "";
    position: absolute;
    right: -15%;
    bottom: -24%;
    width: 62%;
    aspect-ratio: 1;
    border: 18px solid rgba(248, 175, 102, 0.32);
    border-radius: 50%;
    pointer-events: none;
}

.spay-reproduction-card--dog::before {
    border-color: rgba(154, 187, 139, 0.52);
}

.spay-reproduction-card__head {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 16px;
    align-items: start;
}

.spay-reproduction-card__icon {
    display: inline-grid;
    place-items: center;
    min-width: 72px;
    min-height: 72px;
    padding: 10px;
    border-radius: 999px;
    background: var(--brand-peach);
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-size: 16px;
    font-weight: 900;
    line-height: 1;
    text-align: center;
}

.spay-reproduction-card--dog .spay-reproduction-card__icon {
    background: var(--brand-green);
}

.spay-reproduction-card h5 {
    margin: 0 0 8px;
    color: var(--brand-orange);
    font-family: var(--font-title);
    font-size: clamp(28px, 2.6vw, 42px);
    font-weight: 900;
    line-height: 1.05;
}

.spay-reproduction-card p {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.45;
}

.spay-reproduction-graphic {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(44px, 1fr) auto;
    gap: clamp(10px, 1.5vw, 18px);
    align-items: center;
    margin: clamp(22px, 3vw, 34px) 0;
}

.spay-reproduction-node {
    display: inline-grid;
    place-items: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--brand-navy);
    color: var(--brand-white);
    font-family: var(--font-label);
    font-size: 26px;
    font-weight: 900;
    box-shadow: 0 12px 24px rgba(45, 54, 72, 0.18);
}

.spay-reproduction-timeline {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(8px, 1vw, 14px);
    align-items: end;
    min-height: 190px;
    margin: clamp(20px, 2.8vw, 32px) 0;
    padding: 18px 12px 12px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(45, 54, 72, 0.05));
}

.spay-reproduction-timeline::before {
    content: "";
    position: absolute;
    right: 12px;
    bottom: 42px;
    left: 12px;
    height: 2px;
    border-radius: 999px;
    background: rgba(45, 54, 72, 0.12);
}

.spay-reproduction-timeline div {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: calc(54px + (var(--level) * 20px));
    padding: 10px 6px;
    border-radius: 999px 999px 12px 12px;
    background: linear-gradient(180deg, var(--brand-peach), var(--brand-orange));
    color: var(--brand-white);
    text-align: center;
    box-shadow: 0 12px 22px rgba(248, 175, 102, 0.25);
}

.spay-reproduction-card--dog .spay-reproduction-timeline div {
    background: linear-gradient(180deg, #c6dcb9, var(--brand-green));
    color: var(--brand-navy);
    box-shadow: 0 12px 22px rgba(154, 187, 139, 0.28);
}

.spay-reproduction-timeline span {
    display: block;
    margin-bottom: 6px;
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 900;
    line-height: 1;
}

.spay-reproduction-timeline strong {
    display: block;
    font-family: var(--font-title);
    font-size: clamp(22px, 2.2vw, 34px);
    font-weight: 900;
    line-height: 1;
}

.spay-reproduction-branch {
    display: block;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-navy), var(--brand-orange));
}

.spay-reproduction-group {
    display: grid;
    grid-template-columns: repeat(6, 18px);
    gap: 7px;
    align-items: center;
    justify-content: end;
}

.spay-reproduction-card--dog .spay-reproduction-group {
    grid-template-columns: repeat(4, 20px);
}

.spay-reproduction-group span {
    width: 18px;
    height: 18px;
    border-radius: 999px 999px 999px 4px;
    background: var(--brand-orange);
    transform: rotate(-35deg);
}

.spay-reproduction-card--dog .spay-reproduction-group span {
    width: 20px;
    height: 20px;
    background: var(--brand-green);
}

.spay-reproduction-card dl {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
}

.spay-reproduction-card dl div {
    padding: 12px;
    border-radius: 16px;
    background: rgba(45, 54, 72, 0.06);
}

.spay-reproduction-card dt {
    margin: 0 0 4px;
    color: var(--brand-navy);
    font-family: var(--font-title);
    font-size: clamp(28px, 2.4vw, 42px);
    font-weight: 900;
    line-height: 1;
}

.spay-reproduction-card dd {
    margin: 0;
    color: var(--brand-slate);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.25;
}

.spay-campaign-donation {
    width: min(100%, 640px);
    margin: 0 auto clamp(24px, 3.5vw, 42px);
}

.spay-campaign-donation .spay-donation-card {
    width: 100%;
}

.spay-campaign-grid-title {
    margin-top: clamp(24px, 3.5vw, 44px);
    margin-bottom: clamp(16px, 2.4vw, 28px);
}

.spay-campaign-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 30px);
    width: min(100%, var(--section-max));
    margin: 0 auto;
}

.spay-campaign-card {
    display: grid;
    grid-template-rows: 260px 1fr;
    overflow: hidden;
    min-height: 560px;
    border-radius: 22px;
    background: var(--brand-white);
    box-shadow: var(--shadow-card);
}

.spay-campaign-card img {
    display: block;
    width: 100%;
    height: 260px;
    object-fit: cover;
    background: var(--brand-mist);
}

.spay-campaign-card > div {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: clamp(20px, 2.4vw, 30px);
}

.spay-campaign-card h5,
.spay-campaign-cta h5 {
    margin: 0;
    color: var(--brand-orange);
    font-family: var(--font-title);
    font-size: var(--type-card-title);
    font-weight: 900;
    line-height: 1.08;
}

.spay-campaign-card p,
.spay-campaign-cta p {
    margin: 0;
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: var(--type-card-body);
    line-height: 1.5;
}

.spay-campaign-card .btn {
    align-self: flex-start;
    margin-top: auto;
}

.spay-campaign-cta {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(18px, 3vw, 36px);
    align-items: center;
    width: min(100%, var(--section-max));
    margin: clamp(24px, 4vw, 52px) auto 0;
    padding: clamp(22px, 3vw, 34px);
    border-radius: 22px;
    background: var(--brand-navy);
    box-shadow: 0 18px 42px rgba(45, 54, 72, 0.16);
}

.spay-campaign-cta p {
    color: var(--brand-white);
}

@media (max-width: 991px) {
    .adoptable-preview__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .spay-neuter-section {
        padding-right: var(--section-gutter);
        padding-left: var(--section-gutter);
        grid-template-columns: 1fr;
    }

    .spay-neuter-section__content {
        grid-template-columns: 1fr;
    }

    .spay-campaign-impact,
    .spay-reproduction,
    .spay-campaign-grid,
    .spay-campaign-cta {
        grid-template-columns: 1fr;
    }

    .spay-campaign-cta .btn {
        justify-self: start;
    }
}

@media (max-width: 760px) {
    .adoptable-preview__grid {
        grid-template-columns: 1fr;
    }

    .adoptable-preview-card {
        min-height: 0;
    }

    .spay-neuter-section {
        width: 100vw;
        padding: 0 var(--section-gutter);
    }

    .spay-neuter-section__media,
    .spay-neuter-section__media img {
        min-height: 210px;
    }

    .spay-campaign-impact {
        gap: 12px;
    }

    .spay-reproduction-card {
        min-height: 0;
    }

    .spay-reproduction-card__head {
        grid-template-columns: 1fr;
    }

    .spay-reproduction-card__icon {
        min-width: 60px;
        min-height: 60px;
    }

    .spay-reproduction-timeline {
        grid-template-columns: repeat(5, minmax(54px, 1fr));
        overflow-x: auto;
        scroll-snap-type: x proximity;
    }

    .spay-reproduction-timeline div {
        scroll-snap-align: center;
    }

    .spay-reproduction-card dl {
        grid-template-columns: 1fr;
    }

    .spay-campaign-card {
        grid-template-rows: 220px 1fr;
        min-height: 0;
    }

    .spay-campaign-card img {
        height: 220px;
    }

    .spay-donation-card__amounts,
    .spay-donation-card__footer {
        grid-template-columns: 1fr 1fr;
    }

    .spay-donation-card__monthly {
        grid-column: 1 / -1;
    }

    .spay-donation-card__submit {
        grid-column: 1 / -1;
    }
}

@media (max-width: 760px) {
    .brand-footer__form-card {
        padding: 16px 14px;
        border-radius: 16px;
    }

    .brand-footer__fields {
        grid-template-columns: 1fr;
    }

    .brand-footer__form input[type="text"],
    .brand-footer__form input[type="email"],
    .brand-footer__form textarea {
        padding: 9px 12px;
        font-size: 12px;
    }

    .brand-footer__form button {
        justify-self: stretch;
        font-size: 13px;
    }

    .brand-footer__newsletter {
        gap: 12px;
        padding: 16px 14px;
        border-radius: 16px;
    }

    .brand-footer__newsletter-form input {
        min-height: 42px;
        padding: 8px 14px;
        font-size: 12px;
    }

    .brand-footer__newsletter-form button {
        min-height: 42px;
        padding: 8px 16px;
        font-size: 12px;
    }

    .brand-footer__bottom p {
        margin-top: 0;
        font-size: 11px;
        white-space: normal;
    }

    .brand-footer__socials {
        gap: 8px;
    }

    .brand-footer__socials a {
        width: 36px;
        height: 36px;
        font-size: 19px;
    }
}

/* Public typography consistency layer */
body.public-page {
    --type-body: clamp(15px, 0.95vw, 17px);
    --type-small: clamp(12px, 0.78vw, 14px);
    --type-button: clamp(13px, 0.88vw, 15px);
    --type-card-body: clamp(15px, 1vw, 18px);
    --type-lead: clamp(17px, 1.15vw, 20px);
    --type-card-title: clamp(24px, 1.95vw, 31px);
    --type-section-title: clamp(30px, 3vw, 48px);
    --type-page-title: clamp(38px, 4vw, 64px);
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: var(--type-body);
    line-height: 1.55;
}

.public-page .public-content,
.public-page .public-content p,
.public-page .public-content li,
.public-page .public-content td,
.public-page .public-content dd,
.public-page .public-content .card,
.public-page .public-content .card-body,
.public-page .public-content .card-text,
.public-page .cms-rich-text,
.public-page .cms-rich-text p,
.public-page .cms-rich-text li,
.public-page .blog-card p,
.public-page .event-card p,
.public-page .event-card__excerpt,
.public-page .home-event-card p,
.public-page .home-event-card time,
.public-page .home-pet-card__excerpt,
.public-page .pet-filter-card,
.public-page .pet-filter-card__description,
.public-page .pet-filter-card__facts,
.public-page .pet-preview__description,
.public-page .spay-neuter-section p,
.public-page .support-card p,
.public-page .bank-card p,
.public-page .brand-footer p {
    font-family: var(--font-body) !important;
    font-size: var(--type-card-body);
    line-height: 1.5;
}

.public-page h1,
.public-page h2,
.public-page h3,
.public-page h4,
.public-page h5,
.public-page h6,
.public-page .public-content .card-title,
.public-page .blog-card h3,
.public-page .event-card h3,
.public-page .home-event-card h5,
.public-page .pet-filter-card h5,
.public-page .pet-preview__body h2,
.public-page .adoptable-preview-card h3,
.public-page .support-card h3,
.public-page .spay-neuter-section h3,
.public-page .bank-card h5,
.public-page .donation-flip-card__back .card-title {
    font-family: var(--font-title) !important;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.12;
}

.public-page .hero-copy h1,
.public-page .public-content h1,
.public-page .blog-heading h2,
.public-page .blog-detail h2,
.public-page .events-page h1 {
    font-size: var(--type-page-title) !important;
}

.public-page .section-header h2,
.public-page .public-content h2,
.public-page .public-content h3,
.public-page .public-content .card-header,
.public-page .home-events-section__heading h4,
.public-page .partners-section__intro h4,
.public-page .special-support-section__heading h4,
.public-page .home-pet-section h4,
.public-page .projects-section__heading h2,
.public-page .stats-section__heading h2,
.public-page .team-section h2 {
    font-size: var(--type-section-title) !important;
}

.public-page .public-content h4,
.public-page .public-content h5,
.public-page .public-content h6,
.public-page .public-content .card-title,
.public-page .blog-card h3,
.public-page .event-card h3,
.public-page .home-event-card h5,
.public-page .pet-filter-card h5,
.public-page .pet-preview__body h2,
.public-page .adoptable-preview-card h3,
.public-page .support-card h3,
.public-page .spay-neuter-section h3,
.public-page .bank-card h5,
.public-page .spay-donation-card h5,
.public-page .donation-flip-card__back .card-title {
    font-size: var(--type-card-title) !important;
}

.public-page .hero-copy p,
.public-page .public-content .lead,
.public-page .blog-heading p,
.public-page .blog-detail__excerpt,
.public-page .projects-section__intro-text,
.public-page .home-pet-section > p {
    font-family: var(--font-body) !important;
    font-size: var(--type-lead) !important;
    line-height: 1.55;
}

.public-page .patrocle-section-copy,
.public-page .projects-section__intro-text,
.public-page .project-donation-section__intro,
.public-page .home-pet-section > p,
.public-page .blog-heading p,
.public-page .blog-detail__excerpt,
.public-page .content-card-section__intro p {
    width: min(100%, var(--section-max));
    max-width: var(--section-max);
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.public-page .patrocle-section-copy p {
    text-align: center;
}

.public-page a,
.public-page button,
.public-page .btn,
.public-page label,
.public-page input,
.public-page select,
.public-page textarea,
.public-page time,
.public-page .hero-links a,
.public-page .hero-projects__trigger,
.public-page .hero-language,
.public-page .blog-filter,
.public-page .pet-filter-reset,
.public-page .pet-filter-card__badge,
.public-page .pet-filter-card__type,
.public-page .brand-footer__form button,
.public-page .brand-footer__newsletter-form button {
    font-family: var(--font-label) !important;
}

.public-page .btn,
.public-page button,
.public-page .blog-card__link,
.public-page .blog-back,
.public-page .pet-pagination a,
.public-page .home-event-card__button,
.public-page .adoptable-preview-card__button,
.public-page .spay-donation-card__submit,
.public-page .brand-footer__form button,
.public-page .brand-footer__newsletter-form button {
    font-size: var(--type-button) !important;
    font-weight: 800;
}

.public-page .hero-links a,
.public-page .hero-projects__trigger {
    font-size: clamp(18px, 1.16vw, 22px) !important;
    line-height: 1.1;
}

.public-page small,
.public-page .small,
.public-page .blog-card__meta,
.public-page .event-card__date,
.public-page .home-event-card time,
.public-page .pet-filter-card__meta,
.public-page .pet-icon-tooltip,
.public-page .brand-footer__bottom p,
.public-page .cookie-consent__copy p {
    font-family: var(--font-label) !important;
    font-size: var(--type-small) !important;
}

.public-page .hero-donate,
.public-page .hero-donate *,
.public-page .brand-footer__logo,
.public-page .brand-footer__tagline,
.public-page .partners-section__thanks {
    font-family: var(--font-logo) !important;
}

.public-page .brand-footer__logo {
    font-size: clamp(34px, 3.6vw, 58px) !important;
    line-height: 1.05;
}

.public-page .brand-footer__tagline {
    font-size: clamp(24px, 2.5vw, 40px) !important;
    line-height: 1.1;
}

@media (max-width: 760px) {
    body.public-page {
        --type-body: 14px;
        --type-small: 11px;
        --type-button: 14px;
        --type-card-body: 15px;
        --type-lead: 16px;
        --type-card-title: 22px;
        --type-section-title: 28px;
        --type-page-title: 34px;
    }

    .public-page .hero-links a,
    .public-page .hero-projects__trigger {
        font-size: 18px !important;
    }

    .public-page .hero-donate {
        font-size: 28px !important;
    }
}

.fundraiser-section,
.fundraiser-related-section,
.fundraiser-detail {
    width: 100%;
    text-align: left;
}

.fundraiser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: clamp(18px, 3vw, 34px);
    width: 100%;
}

.fundraiser-related-section {
    margin-top: clamp(20px, 4vw, 42px);
}

.fundraiser-grid--related {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.event-card .fundraiser-related-section {
    margin-top: 24px;
}

.event-card .fundraiser-related-section .blog-heading h2 {
    font-size: var(--type-card-title) !important;
}

.event-card .fundraiser-card__body {
    min-height: 220px;
}

.fundraiser-card {
    overflow: hidden;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(43, 52, 72, 0.16);
}

.fundraiser-card__image {
    display: block;
    aspect-ratio: 4 / 3;
    background: #94bc92;
}

.fundraiser-card__image img,
.fundraiser-detail__media img,
.fundraiser-update img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fundraiser-card__body {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 260px;
    padding: clamp(20px, 3vw, 30px);
}

.fundraiser-card__body h3 {
    margin: 0;
    color: #e99b4d;
}

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

.fundraiser-card__date,
.fundraiser-detail__date {
    margin: 0;
    color: #2c3548;
    font-family: var(--font-label);
    font-size: var(--type-small);
    font-weight: 800;
}

.fundraiser-card__body .btn {
    align-self: flex-start;
    margin-top: auto;
}

.fundraiser-meter {
    display: grid;
    gap: 8px;
}

.fundraiser-meter__bar {
    overflow: hidden;
    height: 14px;
    border-radius: 999px;
    background: rgba(43, 52, 72, 0.12);
}

.fundraiser-meter__bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #94bc92, #f2b36d);
}

.fundraiser-meter p {
    margin: 0;
    color: #2c3548;
    font-family: var(--font-label);
    font-size: var(--type-small);
    font-weight: 800;
}

.fundraiser-detail {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(18px, 3vw, 34px);
    align-items: start;
    width: 100%;
    max-width: var(--section-max);
    margin: 0 auto;
}

.fundraiser-detail__top {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 400px);
    gap: clamp(20px, 3vw, 38px);
    align-items: start;
    width: 100%;
}

.fundraiser-detail__media {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 360px;
    max-height: 100%;
    border-radius: 24px;
    background: #94bc92;
    box-shadow: 0 18px 42px rgba(43, 52, 72, 0.16);
}

.fundraiser-detail__media > img {
    display: block;
    min-height: 360px;
}

.fundraiser-media-table {
    display: grid;
    gap: 0;
    min-height: 0;
    overflow-y: auto;
    padding: 12px;
    background: #fff;
    scrollbar-width: thin;
    scrollbar-color: rgba(43, 52, 72, 0.28) transparent;
}

.fundraiser-media-table::-webkit-scrollbar {
    width: 8px;
}

.fundraiser-media-table::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(43, 52, 72, 0.28);
}

.fundraiser-media-row {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    width: 100%;
    padding: 10px;
    border: 0;
    border-bottom: 1px solid rgba(43, 52, 72, 0.1);
    border-radius: 14px;
    background: transparent;
    color: #2c3548;
    font-family: var(--font-label);
    text-align: left;
    cursor: pointer;
    transition: background-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.fundraiser-media-row:last-child {
    border-bottom: 0;
}

.fundraiser-media-row:hover,
.fundraiser-media-row:focus-visible {
    outline: 0;
    background: #f6efe7;
    color: #e99b4d;
}

.fundraiser-media-row:focus-visible {
    box-shadow: 0 0 0 3px rgba(233, 155, 77, 0.28);
}

.fundraiser-media-row__thumb {
    display: grid;
    place-items: center;
    overflow: hidden;
    width: 92px;
    height: 68px;
    border: 1px solid rgba(43, 52, 72, 0.1);
    border-radius: 12px;
    background: #f6efe7;
}

.fundraiser-media-row__thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.fundraiser-media-row__badge {
    display: inline-grid;
    place-items: center;
    min-width: 42px;
    min-height: 42px;
    border-radius: 999px;
    background: #2c3548;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 900;
}

.fundraiser-media-row__content {
    display: grid;
    min-width: 0;
    gap: 4px;
}

.fundraiser-media-row__title {
    overflow: hidden;
    font-size: var(--type-body);
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.fundraiser-media-row__type {
    color: rgba(43, 52, 72, 0.68);
    font-size: var(--type-small);
    font-weight: 800;
}

.fundraiser-media-modal .modal-content {
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    background: #fff;
    color: #2c3548;
    box-shadow: 0 28px 70px rgba(43, 52, 72, 0.28);
}

.fundraiser-media-modal .modal-header {
    align-items: center;
    padding: 22px 72px 16px 24px;
    border-bottom: 1px solid rgba(43, 52, 72, 0.12);
}

.fundraiser-media-modal .modal-title {
    margin: 0;
    color: #2c3548;
    font-family: var(--font-heading);
    font-size: clamp(1.55rem, 3vw, 2.35rem);
    font-weight: 900;
}

.fundraiser-media-modal .modal-body {
    padding: clamp(14px, 3vw, 24px);
}

.fundraiser-media-modal__close {
    position: absolute;
    top: 14px;
    right: 18px;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #f6efe7;
    color: #2c3548;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
}

.fundraiser-media-modal__close:hover,
.fundraiser-media-modal__close:focus-visible {
    outline: 0;
    background: #f2b36d;
    color: #fff;
}

.fundraiser-media-preview {
    display: grid;
    place-items: center;
    gap: 16px;
}

.fundraiser-media-preview img {
    display: block;
    max-width: 100%;
    max-height: min(74vh, 760px);
    border-radius: 18px;
    object-fit: contain;
}

.fundraiser-media-preview iframe,
.fundraiser-media-preview video {
    width: 100%;
    min-height: min(74vh, 760px);
    border: 0;
    border-radius: 18px;
    background: #2c3548;
}

.fundraiser-media-preview--video iframe,
.fundraiser-media-preview--video video {
    aspect-ratio: 16 / 9;
    min-height: auto;
}

.fundraiser-media-preview__link {
    justify-self: start;
}

.fundraiser-detail__content {
    display: grid;
    gap: 20px;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: clamp(22px, 4vw, 42px);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(43, 52, 72, 0.12);
}

.fundraiser-detail__donation {
    min-width: 0;
}

.fundraiser-detail__eyebrow {
    margin: 0;
    color: #e99b4d;
    font-family: var(--font-label);
    font-size: var(--type-small);
    font-weight: 900;
    letter-spacing: 0;
    text-transform: uppercase;
}

.fundraiser-detail__attachments {
    display: grid;
    gap: clamp(12px, 2vw, 20px);
    width: 100%;
    min-width: 0;
    margin: 0;
}

.fundraiser-detail__attachments .fundraiser-media-table {
    max-height: min(58vh, 620px);
    border-radius: 18px;
    box-shadow: 0 14px 32px rgba(43, 52, 72, 0.10);
}

.fundraiser-detail__content h2 {
    margin: 0;
    color: #2c3548;
}

.fundraiser-rich-text {
    color: #2c3548;
    font-family: var(--font-body);
    font-size: var(--type-body);
    line-height: 1.65;
}

.fundraiser-slider-card {
    display: grid;
    gap: 12px;
    padding: 18px;
    border-radius: 18px;
    background: #f6efe7;
}

.fundraiser-slider-card__numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 12px;
    align-items: baseline;
    color: #2c3548;
    font-family: var(--font-label);
}

.fundraiser-slider-card__numbers strong {
    color: #e99b4d;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
}

.fundraiser-slider-card__numbers span {
    font-size: var(--type-card-body);
    font-weight: 800;
}

.fundraiser-slider-card__stripe {
    margin: -4px 0 0;
    color: rgba(43, 52, 72, 0.72);
    font-family: var(--font-label);
    font-size: var(--type-small);
    font-weight: 800;
}

.fundraiser-slider {
    width: 100%;
    accent-color: #e99b4d;
}

.fundraiser-donation-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
    padding: 16px;
    border-radius: 18px;
    background: rgba(148, 188, 146, 0.18);
}

.fundraiser-donation-actions .btn {
    min-height: 48px;
    padding: 12px 24px !important;
    font-size: clamp(16px, 1.2vw, 19px) !important;
}

.fundraiser-donation-actions__secondary {
    border: 2px solid rgba(43, 52, 72, 0.16);
    background: var(--brand-white);
    color: var(--brand-navy);
    font-family: var(--font-label);
    font-weight: 900;
}

.fundraiser-donation-actions__secondary:hover,
.fundraiser-donation-actions__secondary:focus-visible {
    border-color: var(--brand-orange);
    background: var(--brand-peach);
    color: var(--brand-navy);
    text-decoration: none;
}

.fundraiser-donation-form {
    display: grid;
    gap: 16px;
}

.fundraiser-donation-form__row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.fundraiser-donation-form label {
    display: grid;
    gap: 6px;
    margin: 0;
    color: #2c3548;
    font-size: var(--type-small);
    font-weight: 900;
    text-transform: uppercase;
}

.fundraiser-donation-form input,
.fundraiser-donation-form select,
.fundraiser-donation-form textarea {
    width: 100%;
    border: 2px solid rgba(43, 52, 72, 0.25);
    border-radius: 14px;
    padding: 12px 14px;
    background: #fff;
    color: #2c3548;
    font-size: var(--type-body);
    text-transform: none;
}

.fundraiser-donation-form textarea {
    resize: vertical;
}

.fundraiser-bank-card {
    width: 100%;
    margin: 0;
    min-height: clamp(430px, 34vw, 500px);
}

.fundraiser-bank-card,
.fundraiser-bank-card .donation-flip-card__inner {
    min-height: clamp(430px, 34vw, 500px);
}

.fundraiser-bank-card .bank-card__header {
    margin-bottom: 0;
}

.fundraiser-bank-card .bank-card__header h5 {
    font-size: clamp(28px, 3.2vw, 44px);
}

.fundraiser-bank-card .bank-card__accounts {
    gap: 6px;
}

.fundraiser-bank-card .bank-card__accounts p {
    font-size: clamp(13px, 1.1vw, 16px);
    line-height: 1.2;
}

.fundraiser-bank-card .bank-card__footer {
    margin-top: auto;
}

.fundraiser-bank-card .bank-card__brand img {
    width: clamp(58px, 6vw, 82px);
}

.fundraiser-bank-card .donation-flip-card__back {
    padding: 14px;
    overflow-y: auto;
}

.fundraiser-bank-card .donation-flip-card__back-button {
    margin-bottom: 8px;
    padding: 7px 12px;
    font-size: 13px;
}

.fundraiser-bank-card .donation-card-form__header {
    gap: 8px;
    margin-bottom: 8px;
}

.fundraiser-bank-card .donation-card-form__header img {
    width: 40px;
    height: 40px;
    padding: 4px;
}

.fundraiser-bank-card .donation-card-form__header p {
    margin-top: 3px;
    font-size: 14px;
    line-height: 1.3;
}

.fundraiser-bank-card .donation-flip-card__back .card-title {
    margin-bottom: 4px;
    font-size: clamp(18px, 1.8vw, 22px);
    line-height: 1.05;
}

.fundraiser-stripe-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 10px;
}

.fundraiser-stripe-form label,
.fundraiser-stripe-form legend {
    font-size: 12px;
}

.fundraiser-stripe-form select,
.fundraiser-stripe-form input[type="email"],
.fundraiser-stripe-form input[type="text"],
.fundraiser-stripe-form input[type="number"] {
    min-height: 44px;
    margin-top: 4px;
    border-radius: 13px;
    padding: 0 12px;
    font-size: 15px;
}

.fundraiser-stripe-form fieldset {
    gap: 6px;
}

.fundraiser-stripe-form .stripe-donation-form__radio {
    min-height: 44px;
    gap: 8px;
    border-radius: 13px;
    padding: 8px 12px;
}

.fundraiser-stripe-form .stripe-donation-form__radio input {
    width: 14px;
    height: 14px;
}

.fundraiser-stripe-form__wide {
    grid-column: 1 / -1;
}

.fundraiser-stripe-form textarea {
    width: 100%;
    min-height: 64px;
    border-radius: 13px;
    padding: 10px 12px;
    font-size: 15px;
    resize: vertical;
}

.fundraiser-stripe-form .btn {
    min-height: 44px;
    padding: 10px 22px !important;
    font-size: 16px !important;
}

.fundraiser-updates,
.fundraiser-comments {
    grid-column: 1 / -1;
    display: grid;
    gap: 20px;
    width: 100%;
    margin-top: clamp(18px, 4vw, 44px);
}

.fundraiser-update {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 20px;
    padding: 20px;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0 14px 32px rgba(43, 52, 72, 0.10);
}

.fundraiser-update img {
    height: 140px;
    border-radius: 14px;
}

.fundraiser-update h3 {
    color: #e99b4d;
}

.fundraiser-comment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.fundraiser-comment-grid blockquote {
    margin: 0;
    padding: 20px;
    border-radius: 18px;
    background: #f6efe7;
    color: #2c3548;
}

.fundraiser-comment-grid cite {
    color: #e99b4d;
    font-family: var(--font-label);
    font-style: normal;
    font-weight: 900;
}

@media (max-width: 1050px) {
    .fundraiser-detail {
        grid-template-columns: 1fr;
        align-items: start;
        gap: 16px;
    }

    .fundraiser-detail__top {
        grid-template-columns: 1fr;
    }

    .fundraiser-detail__media {
        min-height: 280px;
        max-height: none;
    }

    .fundraiser-detail__content {
        padding: 20px 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .fundraiser-bank-card {
        max-width: 680px;
        margin-right: auto;
        margin-left: auto;
    }

    .fundraiser-detail__attachments .fundraiser-media-table {
        max-height: none;
    }

    .fundraiser-donation-form__row,
    .fundraiser-update {
        grid-template-columns: 1fr;
    }

    .fundraiser-update img {
        height: 220px;
    }
}

@media (min-width: 900px) {
    .hero-nav {
        max-width: min(100%, 1320px);
        grid-template-columns: auto minmax(0, 1fr) auto auto;
        grid-auto-flow: column;
        min-height: 84px;
        gap: 10px;
        padding: 8px 12px;
    }

    .hero-links {
        display: flex;
        flex-wrap: nowrap;
        gap: 6px;
        width: 100%;
        min-width: 0;
    }

    .hero-links a,
    .hero-projects__trigger {
        flex: 1 1 0;
        min-width: 0;
        min-height: 54px;
        justify-content: flex-start;
        padding: 6px 7px;
        text-align: left;
        white-space: normal;
    }

    .hero-links a span:not(.hero-link__icon) {
        display: block;
        min-width: 0;
        max-width: 100%;
        overflow-wrap: anywhere;
    }

    .hero-donate {
        grid-column: auto;
        grid-row: auto;
        min-width: clamp(155px, 14vw, 178px);
        min-height: 70px;
        margin: 0;
        font-size: clamp(35px, 3vw, 44px);
    }

    .hero-language {
        grid-column: auto;
        grid-row: auto;
    }
}

/* Public site cohesion pass: shared rhythm, type and media sizing. */
body.public-page {
    --type-body: clamp(15px, 0.95vw, 17px);
    --type-small: clamp(12px, 0.78vw, 14px);
    --type-button: clamp(13px, 0.88vw, 15px);
    --type-card-body: clamp(15px, 1vw, 17px);
    --type-lead: clamp(17px, 1.15vw, 20px);
    --type-card-title: clamp(22px, 1.75vw, 30px);
    --type-section-title: clamp(30px, 3vw, 46px);
    --type-page-title: clamp(38px, 4vw, 62px);
    --section-gap: clamp(34px, 5vw, 70px);
    --section-title-gap: clamp(12px, 1.6vw, 22px);
    --page-gutter: clamp(15px, 4vw, 32px);
    --section-shell: min(100%, var(--section-max));
    --card-media-ratio: 4 / 3;
    --wide-media-ratio: 16 / 10;
    color: var(--brand-navy);
    font-family: var(--font-body);
    font-size: var(--type-body);
    line-height: 1.55;
}

@media (max-width: 1199px) {
    body.public-page {
        --section-shell: min(calc(100% - 30px), var(--section-max));
    }
}

.public-page .public-content {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--section-gap);
    width: 100%;
    padding-top: 0;
}

.public-page .public-content > section,
.public-page .public-content > article,
.public-page .public-content > .card,
.public-page .blog-section,
.public-page .events-section,
.public-page .fundraiser-section,
.public-page .fundraiser-detail,
.public-page .pet-detail-page,
.public-page .spay-campaign-page,
.public-page .patrocle-page-section,
.public-page .lizuca-card-section,
.public-page .project-donation-section,
.public-page .content-card-section {
    width: var(--section-shell);
    margin-right: auto;
    margin-left: auto;
}

.public-page .public-content > .public-stats,
.public-page .public-content > .projects-section,
.public-page .public-content > .partners-section,
.public-page .public-content > .partner-with-us-section,
.public-page .public-content > .home-events-section,
.public-page .public-content > .home-fundraisers-section {
    width: 100%;
    max-width: none;
}

.public-page .projects-section__heading,
.public-page .projects-section__intro,
.public-page .projects-section__body,
.public-page .partners-section__intro,
.public-page .partners-section__body,
.public-page .home-events-section__heading,
.public-page .home-event-carousel,
.public-page .home-fundraisers-section .home-events-section__heading,
.public-page .home-fundraisers-section .home-event-carousel {
    width: var(--section-shell);
    margin-right: auto;
    margin-left: auto;
}

.public-page .patrocle-page-section .projects-section__heading,
.public-page .patrocle-page-section .projects-section__intro,
.public-page .patrocle-page-section .projects-section__body,
.public-page .lizuca-card-section .projects-section__heading,
.public-page .lizuca-card-section .projects-section__intro,
.public-page .lizuca-card-section .projects-section__body {
    width: 100%;
}

.public-page .card-header,
.public-page h4.card-header,
.public-page h4.pt-md-4.card-header,
.public-page .section-header h2,
.public-page .blog-heading h2,
.public-page .blog-detail h2,
.public-page .home-events-section__heading h4,
.public-page .projects-section__heading h2,
.public-page .partners-section__intro h4,
.public-page .stats-section__heading h2,
.public-page .team-section h2,
.public-page .pet-group-section__header h3 {
    position: relative;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 2.2vw, 28px);
    width: 100vw;
    margin: 0 0 var(--section-title-gap);
    padding: 0;
    border: 0;
    background: transparent !important;
    color: var(--brand-navy);
    font-family: var(--font-title) !important;
    font-size: var(--type-section-title) !important;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.12;
    text-align: center;
    transform: translateX(-50%);
}

.public-page .card-header::before,
.public-page .card-header::after,
.public-page h4.card-header::before,
.public-page h4.card-header::after {
    content: "";
    flex: 1 1 clamp(48px, 20vw, 320px);
    height: clamp(6px, 0.75vw, 11px);
    border-radius: 999px;
    background: var(--brand-navy);
}

.public-page .blog-heading,
.public-page .patrocle-section-copy,
.public-page .spay-campaign-intro,
.public-page .content-card-section__intro,
.public-page .home-pet-section > p,
.public-page .project-donation-section__intro,
.public-page .projects-section__intro-text {
    width: min(100%, var(--section-max));
    margin-right: auto;
    margin-left: auto;
}

.public-page .blog-heading p,
.public-page .patrocle-section-copy p,
.public-page .spay-campaign-intro p,
.public-page .content-card-section__intro p,
.public-page .home-pet-section > p,
.public-page .project-donation-section__intro,
.public-page .projects-section__intro-text {
    margin-top: 0;
    color: var(--brand-navy);
    font-family: var(--font-body) !important;
    font-size: var(--type-lead) !important;
    line-height: 1.55;
}

.public-page p,
.public-page li,
.public-page td,
.public-page dd,
.public-page .card-text,
.public-page .cms-rich-text,
.public-page .cms-rich-text p,
.public-page .cms-rich-text li,
.public-page .blog-card p,
.public-page .event-card p,
.public-page .home-event-card p,
.public-page .home-pet-card__excerpt,
.public-page .pet-filter-card__description,
.public-page .pet-preview__description,
.public-page .fundraiser-rich-text,
.public-page .brand-footer p {
    font-family: var(--font-body) !important;
    font-size: var(--type-card-body) !important;
    line-height: 1.55;
    letter-spacing: 0;
}

.public-page h1,
.public-page h2,
.public-page h3,
.public-page h4,
.public-page h5,
.public-page h6,
.public-page .card-title,
.public-page .blog-card h3,
.public-page .event-card h3,
.public-page .home-event-card h5,
.public-page .fundraiser-card__body h3,
.public-page .pet-filter-card h5,
.public-page .adoptable-preview-card h3,
.public-page .spay-donation-card h5,
.public-page .support-card h3 {
    font-family: var(--font-title) !important;
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.12;
}

.public-page .hero-copy h1,
.public-page .blog-detail h1,
.public-page .events-page h1 {
    font-size: var(--type-page-title) !important;
}

.public-page .card-title,
.public-page .blog-card h3,
.public-page .event-card h3,
.public-page .home-event-card h5,
.public-page .fundraiser-card__body h3,
.public-page .pet-filter-card h5,
.public-page .adoptable-preview-card h3,
.public-page .spay-donation-card h5,
.public-page .support-card h3,
.public-page .bank-card h5 {
    font-size: var(--type-card-title) !important;
}

.public-page a,
.public-page button,
.public-page .btn,
.public-page label,
.public-page input,
.public-page select,
.public-page textarea,
.public-page time,
.public-page .blog-filter,
.public-page .hero-links a,
.public-page .hero-language,
.public-page .pet-filter-reset {
    font-family: var(--font-label) !important;
    letter-spacing: 0;
}

.public-page .btn,
.public-page button,
.public-page .blog-card__link,
.public-page .blog-back,
.public-page .home-event-card__button,
.public-page .home-event-card__explore,
.public-page .adoptable-preview-card__button,
.public-page .spay-donation-card__submit,
.public-page .brand-footer__form button,
.public-page .brand-footer__newsletter-form button {
    font-size: var(--type-button) !important;
    font-weight: 800;
    text-decoration: none;
}

.public-page .card,
.public-page .page-card,
.public-page .patrocle-card,
.public-page .lizuca-card,
.public-page .blog-card,
.public-page .event-card,
.public-page .home-event-card,
.public-page .fundraiser-card,
.public-page .home-pet-card,
.public-page .pet-filter-card,
.public-page .adoptable-preview-card,
.public-page .support-card,
.public-page .spay-reproduction-card,
.public-page .spay-campaign-card {
    overflow: hidden;
    border: 0;
    border-radius: var(--radius-card);
    background: #fff;
    box-shadow: var(--shadow-card);
}

.public-page .card-body,
.public-page .page-card .card-body,
.public-page .patrocle-card .card-body,
.public-page .lizuca-card .card-body,
.public-page .blog-card__body,
.public-page .event-card__body,
.public-page .home-event-card__body,
.public-page .fundraiser-card__body,
.public-page .home-pet-card .card-body,
.public-page .pet-filter-card__body,
.public-page .adoptable-preview-card__body {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vw, 14px);
    padding: clamp(18px, 2.2vw, 28px);
}

.public-page .card-img-top,
.public-page .page-card .card-img-top,
.public-page .patrocle-card .card-img-top,
.public-page .lizuca-card .card-img-top,
.public-page .home-involvement-card .card-img-top,
.public-page .projects-section__body .card-img-top,
.public-page .blog-card__image,
.public-page .event-card__image,
.public-page .fundraiser-card__image {
    display: block;
    width: 100%;
    aspect-ratio: var(--card-media-ratio);
    height: auto;
    min-height: 0;
    max-height: none;
    background: var(--brand-green);
}

.public-page .card-img-top,
.public-page .page-card .card-img-top,
.public-page .patrocle-card .card-img-top,
.public-page .lizuca-card .card-img-top,
.public-page .home-involvement-card .card-img-top,
.public-page .projects-section__body .card-img-top,
.public-page .blog-card__image img,
.public-page .event-card__image img,
.public-page .fundraiser-card__image img {
    object-fit: cover;
    object-position: center;
}

.public-page .blog-card__image img,
.public-page .event-card__image img,
.public-page .fundraiser-card__image img {
    width: 100%;
    height: 100%;
}

.public-page .home-event-card__media,
.public-page .home-fundraisers-section .home-event-card__media {
    aspect-ratio: var(--wide-media-ratio);
    height: auto;
    min-height: 0;
    max-height: none;
}

.public-page .home-event-card__media img,
.public-page .home-fundraisers-section .home-event-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.public-page .home-pet-card .card-img-top,
.public-page .pet-filter-card__image,
.public-page .pet-filter-card__image img,
.public-page .adoptable-preview-card__image,
.public-page .adoptable-preview-card__image img {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    max-height: none;
    object-fit: cover;
    object-position: center;
}

.public-page .fixed-img {
    width: 100% !important;
    aspect-ratio: var(--card-media-ratio);
    height: auto !important;
    max-height: none !important;
    object-fit: cover;
}

.public-page .blog-grid,
.public-page .events-grid,
.public-page .fundraiser-grid,
.public-page .patrocle-project-grid,
.public-page .lizuca-card-grid,
.public-page .pet-card-grid,
.public-page .adoptable-preview-grid,
.public-page .spay-reproduction,
.public-page .spay-campaign-grid {
    gap: clamp(18px, 2.4vw, 30px);
}

.public-page .blog-grid,
.public-page .events-grid,
.public-page .fundraiser-grid,
.public-page .patrocle-project-grid,
.public-page .lizuca-card-grid,
.public-page .pet-card-grid,
.public-page .pet-carousel,
.public-page .adoptable-preview-grid,
.public-page .spay-reproduction,
.public-page .spay-campaign-grid {
    margin-right: auto !important;
    margin-left: auto !important;
}

.public-page .row.blog-grid,
.public-page .row.events-grid,
.public-page .row.patrocle-project-grid,
.public-page .row.lizuca-card-grid,
.public-page .row.pet-carousel,
.public-page .row.adoptable-preview-grid,
.public-page .row.spay-campaign-grid {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.public-page .blog-card__link,
.public-page .event-card .blog-card__link,
.public-page .fundraiser-card__body .btn,
.public-page .home-event-card__button,
.public-page .home-event-card__explore,
.public-page .adoptable-preview-card__button,
.public-page .spay-donation-card__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-start;
    margin-top: auto;
    width: auto;
    max-width: max-content;
    min-height: 44px;
    padding: 11px 22px !important;
    border-radius: 999px;
    background-color: var(--brand-orange);
    color: var(--brand-white) !important;
    line-height: 1;
}

.public-page .home-pet-section > .blog-card__link,
.public-page .home-blog-section__all {
    justify-self: center;
}

.public-page .pet-carousel-controls__button {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    padding: 0 !important;
    font-size: 0 !important;
}

.public-page .pet-carousel-controls__button::before {
    font-size: 34px;
    line-height: 0.85;
}

.public-page .blog-card__link:hover,
.public-page .blog-card__link:focus-visible,
.public-page .event-card .blog-card__link:hover,
.public-page .event-card .blog-card__link:focus-visible,
.public-page .fundraiser-card__body .btn:hover,
.public-page .fundraiser-card__body .btn:focus-visible,
.public-page .home-event-card__button:hover,
.public-page .home-event-card__button:focus-visible,
.public-page .home-event-card__explore:hover,
.public-page .home-event-card__explore:focus-visible,
.public-page .adoptable-preview-card__button:hover,
.public-page .adoptable-preview-card__button:focus-visible,
.public-page .spay-donation-card__submit:hover,
.public-page .spay-donation-card__submit:focus-visible {
    background-color: var(--brand-coral);
    color: var(--brand-white) !important;
    text-decoration: none;
}

/* Keep fundraiser progress and donation actions aligned across uneven card titles. */
.public-page .home-fundraiser-card,
.public-page .fundraiser-card {
    display: flex;
    flex-direction: column;
    height: auto;
}

.public-page .home-fundraiser-card .home-event-card__body,
.public-page .fundraiser-card__body {
    flex: 1 1 auto;
    height: auto;
}

.public-page .home-fundraisers-carousel {
    align-items: stretch;
}

.public-page .home-fundraiser-card {
    align-self: stretch;
}

.public-page .home-fundraiser-card .home-event-card__media,
.public-page .fundraiser-card__image {
    flex: 0 0 auto;
}

.public-page .home-fundraiser-card h5,
.public-page .fundraiser-card__body h3 {
    min-height: 2.25em;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.public-page .home-fundraiser-card time,
.public-page .fundraiser-card__date {
    min-height: 1.35em;
}

.public-page .home-event-card__date-placeholder,
.public-page .fundraiser-card__date--placeholder {
    visibility: hidden;
}

.public-page .home-fundraiser-card__meter,
.public-page .fundraiser-card .fundraiser-meter {
    width: 100%;
    margin-top: auto;
    margin-bottom: clamp(12px, 1.4vw, 18px);
}

.public-page .home-fundraiser-card__meter p,
.public-page .fundraiser-card .fundraiser-meter p {
    min-height: 2.7em;
}

.public-page .home-fundraiser-card .home-event-card__explore,
.public-page .fundraiser-card__body .btn {
    margin-top: 0 !important;
}

.public-page .brand-footer__inner,
.public-page .brand-footer__bottom,
.public-page .brand-footer__divider {
    width: var(--section-shell);
    margin-right: auto;
    margin-left: auto;
}

@media (max-width: 760px) {
    body.public-page {
        --type-body: 14px;
        --type-small: 11px;
        --type-button: 14px;
        --type-card-body: 15px;
        --type-lead: 16px;
        --type-card-title: 22px;
        --type-section-title: 28px;
        --type-page-title: 34px;
        --section-gap: 34px;
        --section-title-gap: 10px;
    }

    .public-page .public-content {
        gap: var(--section-gap);
    }

    .public-page .card-body,
    .public-page .page-card .card-body,
    .public-page .patrocle-card .card-body,
    .public-page .lizuca-card .card-body,
    .public-page .blog-card__body,
    .public-page .event-card__body,
    .public-page .home-event-card__body,
    .public-page .fundraiser-card__body,
    .public-page .home-pet-card .card-body,
    .public-page .pet-filter-card__body,
    .public-page .adoptable-preview-card__body {
        padding: 18px;
    }

    .public-page .card-header::before,
    .public-page .card-header::after,
    .public-page h4.card-header::before,
    .public-page h4.card-header::after {
        display: none;
    }

    .public-page .home-event-card__media,
    .public-page .home-fundraisers-section .home-event-card__media,
    .public-page .blog-card__image,
    .public-page .event-card__image,
    .public-page .fundraiser-card__image {
        aspect-ratio: 4 / 3;
    }
}

.public-page .home-page-stack .projects-section__body.card-body {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(18px, 2.4vw, 30px);
    align-items: stretch;
}

.public-page .home-page-stack .projects-section__body.card-body > [class*="col-"] {
    display: flex;
    width: auto !important;
    max-width: none !important;
    padding-right: 0;
    padding-left: 0;
    flex: none !important;
    float: none !important;
}

@media (max-width: 760px) {
    .public-page .home-page-stack .projects-section__body.card-body {
        grid-template-columns: 1fr;
    }
}

/* Keep only section/header text centered; normal copy reads in one direction everywhere. */
.public-page :where(
    p,
    li,
    td,
    dd,
    blockquote,
    .card-text,
    .cms-rich-text,
    .blog-heading p,
    .blog-detail__excerpt,
    .event-card__excerpt,
    .projects-section__intro-text,
    .project-donation-section__intro,
    .home-pet-section > p,
    .content-card-section__intro p,
    .spay-campaign-intro p,
    .patrocle-section-copy p,
    .fundraiser-rich-text,
    .pet-filter-card__description,
    .pet-preview__description,
    .brand-footer p
) {
    text-align: left !important;
}

.public-page :where(
    .card-header,
    h4.card-header,
    h4.pt-md-4.card-header,
    .section-header h2,
    .blog-heading h1,
    .blog-heading h2,
    .home-events-section__heading h4,
    .projects-section__heading h2,
    .partners-section__intro h4,
    .stats-section__heading h2,
    .team-section h2,
    .pet-group-section__header h3
) {
    text-align: center !important;
}

/* Reuse the home-page decorative language across public inner pages. */
.public-page :where(
    .patrocle-about-section,
    .lizuca-home-intro,
    .project-donation-section,
    .lizuca-help-section,
    .project-tagged-content-section,
    .blog-section,
    .events-section,
    .fundraiser-section,
    .fundraiser-related-section,
    .spay-campaign-page,
    .fundraiser-detail
) {
    position: relative;
    isolation: isolate;
}

.public-page :where(
    .patrocle-about-section,
    .lizuca-home-intro,
    .lizuca-help-section,
    .project-donation-section,
    .spay-campaign-page
)::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 50%;
    bottom: 0;
    width: 100vw;
    transform: translateX(50%);
    background-color: var(--brand-green);
    background-image: url("/boot/img/stats-build-trust.0fa3bf47a158.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: max(150vw, 1800px) 100%;
    opacity: 1;
    pointer-events: none;
}

.public-page :where(.events-section, .project-tagged-content-section) {
    width: 100vw !important;
    max-width: none !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    padding: clamp(44px, 5vw, 76px) max(var(--page-gutter), calc((100vw - var(--section-max)) / 2));
    overflow: hidden;
    background: var(--brand-navy);
}

.public-page :where(.events-section, .project-tagged-content-section)::before {
    content: "";
    position: absolute;
    right: max(var(--page-gutter), calc((100vw - var(--section-max)) / 2));
    bottom: -24px;
    z-index: -1;
    width: min(34vw, 420px);
    height: min(70%, 460px);
    background-image: url("/boot/img/events-illustration.576c69fe0cff.svg");
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: contain;
    opacity: 0.5;
    pointer-events: none;
}

.public-page :where(.events-section, .project-tagged-content-section) > * {
    position: relative;
    z-index: 1;
}

.public-page :where(.events-section, .project-tagged-content-section) :where(.card-header, .blog-heading h2, .project-tagged-content-block > h5) {
    color: var(--brand-white) !important;
}

.public-page :where(.events-section, .project-tagged-content-section) :where(.blog-heading p, .blog-empty) {
    color: rgba(252, 253, 255, 0.82) !important;
}

.public-page :where(.events-section, .project-tagged-content-section) :where(.events-grid, .project-tagged-grid, .blog-heading) {
    width: var(--section-shell);
    margin-right: auto;
    margin-left: auto;
}

.public-page :where(.fundraiser-section, .fundraiser-related-section) {
    width: 100vw !important;
    max-width: none !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    padding: clamp(40px, 5vw, 74px) max(var(--page-gutter), calc((100vw - var(--section-max)) / 2));
    background-color: var(--brand-green);
    background-image: url("/boot/img/stats-build-trust.0fa3bf47a158.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: max(150vw, 1800px) 100%;
}

.public-page :where(.fundraiser-section, .fundraiser-related-section) :where(.blog-heading, .fundraiser-grid) {
    width: var(--section-shell);
    margin-right: auto;
    margin-left: auto;
}

.public-page :where(.fundraiser-section, .fundraiser-related-section) :where(.blog-heading h2, .blog-heading p) {
    color: var(--brand-navy) !important;
}

/* Keep content aligned to the menu while the decorative bands run full-bleed. */
.public-page .public-content .events-section,
.public-page .public-content .project-tagged-content-section,
.public-page .public-content .fundraiser-section,
.public-page .public-content .fundraiser-related-section,
.public-page .public-content .partners-section {
    position: relative;
    left: auto !important;
    width: min(100%, var(--section-max)) !important;
    max-width: var(--section-max) !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    overflow: visible;
}

.public-page .public-content .events-section,
.public-page .public-content .project-tagged-content-section {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
}

.public-page .public-content .events-section::after,
.public-page .public-content .project-tagged-content-section::after {
    content: "";
    position: absolute;
    z-index: -2;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: var(--brand-navy);
    pointer-events: none;
}

.public-page .public-content :where(.events-section, .project-tagged-content-section) :where(.events-grid, .project-tagged-grid, .blog-heading) {
    width: 100%;
}

.public-page .public-content :where(.fundraiser-section, .fundraiser-related-section) {
    padding-right: 0;
    padding-left: 0;
    background-color: transparent;
    background-image: none;
}

.public-page .public-content :where(.fundraiser-section, .fundraiser-related-section)::after {
    content: "";
    position: absolute;
    z-index: -2;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background-color: var(--brand-green);
    background-image: url("/boot/img/stats-build-trust.0fa3bf47a158.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: max(150vw, 1800px) 100%;
    pointer-events: none;
}

.public-page .public-content :where(.fundraiser-section, .fundraiser-related-section) :where(.blog-heading, .fundraiser-grid) {
    width: 100%;
}

.public-page .public-content .partners-section {
    padding-right: 0;
    padding-left: 0;
    background: transparent;
}

.public-page .public-content .partners-section::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background-image: url("/boot/img/section-footer.7abc31338e40.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    pointer-events: none;
}

.public-page .public-content .partners-section > .col-md-12,
.public-page .public-content .partners-section__intro,
.public-page .public-content .partners-section__body {
    width: 100%;
    max-width: none;
}

.public-page .public-content > .blog-section,
.public-page .public-content > .row.text-center > .blog-section,
.public-page .public-content > .blog-detail {
    width: min(100%, var(--section-max)) !important;
    max-width: var(--section-max) !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.public-page .public-content > .blog-section :where(.blog-heading, .blog-filters, .blog-grid, .blog-empty),
.public-page .public-content > .blog-detail :where(.blog-detail__content, .fundraiser-related-section) {
    width: 100%;
    max-width: none;
}

.public-page .blog-section:not(.home-blog-section):not(.special-case-posts-section) {
    padding-block: clamp(34px, 4vw, 58px);
}

.public-page .blog-section:not(.home-blog-section):not(.special-case-posts-section)::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 48%;
    right: 50%;
    bottom: 0;
    width: 100vw;
    transform: translateX(50%);
    background-image: url("/boot/img/section-footer.7abc31338e40.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    opacity: 0.22;
    pointer-events: none;
}

.public-page .public-content > .row.text-center {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    box-sizing: border-box;
    overflow: visible;
}

.public-page .public-content > .row.text-center > * {
    min-width: 0;
    box-sizing: border-box;
}

.public-page .public-content > .row.text-center > :where(
    .events-section,
    .project-tagged-content-section,
    .fundraiser-section,
    .fundraiser-related-section,
    .partners-section,
    .patrocle-page-section,
    .lizuca-card-section,
    .project-donation-section,
    .content-card-section,
    .blog-section
),
.public-page .public-content > :where(
    .events-section,
    .project-tagged-content-section,
    .fundraiser-section,
    .fundraiser-related-section,
    .partners-section,
    .patrocle-page-section,
    .lizuca-card-section,
    .project-donation-section,
    .content-card-section,
    .blog-section
) {
    width: var(--section-shell) !important;
    max-width: var(--section-max) !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

/* Let decorative bands breathe into the spacing between sections so pages feel continuous. */
.public-page :where(
    .patrocle-about-section,
    .lizuca-home-intro,
    .lizuca-help-section,
    .project-donation-section,
    .spay-campaign-page
)::before,
.public-page .public-content :where(.fundraiser-section, .fundraiser-related-section)::after,
.public-page .public-content .partners-section::before {
    top: calc(var(--section-gap) * -0.75);
    bottom: calc(var(--section-gap) * -0.45);
}

.public-page :where(
    .patrocle-about-section,
    .lizuca-home-intro,
    .lizuca-help-section,
    .project-donation-section,
    .spay-campaign-page
)::before {
    background-image: none;
}

.public-page .public-content .events-section::after {
    top: calc(var(--section-gap) * -0.9);
    bottom: calc(var(--section-gap) * -0.55);
}

.public-page .public-content .project-tagged-content-section {
    background: transparent !important;
}

.public-page .public-content .project-tagged-content-section::before {
    display: none;
}

.public-page .public-content .project-tagged-content-section::after {
    top: 42%;
    bottom: calc(var(--section-gap) * -0.45);
    background-color: var(--brand-green);
    background-image: url("/boot/img/stats-build-trust.0fa3bf47a158.svg");
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: max(150vw, 1800px) 100%;
}

.public-page .public-content .project-tagged-content-section :where(.card-header, .blog-heading h2) {
    color: var(--brand-navy) !important;
}

.public-page .public-content .project-tagged-content-section .project-tagged-content-block > h5 {
    color: var(--brand-orange) !important;
}

.public-page .public-content .project-tagged-content-section :where(.blog-heading p, .blog-empty) {
    color: var(--brand-slate) !important;
}

.public-page .public-content .project-tagged-content-section--plain {
    background: var(--brand-white) !important;
}

.public-page .public-content .project-tagged-content-section--plain::before,
.public-page .public-content .project-tagged-content-section--plain::after {
    display: none !important;
}

.public-page .public-content .project-tagged-content-section {
    background: var(--brand-white) !important;
    padding-block: clamp(34px, 5vw, 72px);
}

.public-page .public-content .project-tagged-content-section::before,
.public-page .public-content .project-tagged-content-section::after {
    display: none !important;
}

.public-page .project-tagged-content-block {
    margin-top: clamp(22px, 3vw, 38px);
}

.public-page .project-tagged-grid,
.public-page .home-blog-section .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 520px));
    justify-content: center;
    gap: clamp(24px, 3vw, 38px);
}

.public-page .project-tagged-grid > *,
.public-page .home-blog-section .blog-grid > * {
    width: 100%;
    max-width: 520px;
}

.public-page .project-tagged-grid .home-event-card,
.public-page .home-events-section:not(.home-fundraisers-section) .home-event-card,
.public-page .home-events-section:not(.home-fundraisers-section) .home-events-carousel {
    flex-basis: min(100%, 520px);
    max-width: min(100%, 520px);
    width: min(100%, 520px);
}

.public-page .project-tagged-grid .home-event-card__media,
.public-page .home-events-section:not(.home-fundraisers-section) .home-event-card__media {
    aspect-ratio: 4 / 3;
}

.public-page .project-tagged-grid .home-event-card__body,
.public-page .home-events-section:not(.home-fundraisers-section) .home-event-card__body {
    min-height: 230px;
}

.public-page .project-tagged-grid .blog-card__image,
.public-page .home-blog-section .blog-card__image {
    aspect-ratio: 4 / 3;
}

.public-page .project-tagged-grid .blog-card__body,
.public-page .home-blog-section .blog-card__body {
    min-height: 250px;
}

.public-page .public-content .events-page-section {
    background: var(--brand-white) !important;
}

.public-page .public-content .events-page-section::before,
.public-page .public-content .events-page-section::after {
    display: none !important;
}

.public-page .public-content .events-page-section :where(.card-header, .blog-heading h2) {
    color: var(--brand-navy) !important;
}

.public-page .public-content .events-page-section :where(.blog-heading p, .blog-empty) {
    color: var(--brand-slate) !important;
}

.public-page .public-content .project-tagged-content-section.home-events-section {
    width: 100vw !important;
    max-width: none !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    padding-block: clamp(68px, 6vw, 96px);
    padding-right: max(var(--section-gutter), calc((100vw - var(--section-max)) / 2)) !important;
    padding-left: max(var(--section-gutter), calc((100vw - var(--section-max)) / 2)) !important;
    background: var(--brand-navy) !important;
    color: var(--brand-white);
}

.public-page .public-content .project-tagged-content-section.home-events-section::before {
    display: block !important;
}

.public-page .public-content .project-tagged-content-section.home-events-section::after {
    display: none !important;
}

.public-page .project-tagged-content-section .home-events-section__heading {
    color: var(--brand-white);
}

.public-page .project-tagged-content-section .home-events-section__heading h4 {
    color: var(--brand-white) !important;
}

@media (min-width: 761px) {
    .public-page .project-tagged-content-section.home-events-section {
        min-height: clamp(600px, 44vw, 720px);
        padding-top: clamp(42px, 4vw, 64px);
        padding-bottom: clamp(58px, 5vw, 82px);
    }

    .public-page .public-content .project-tagged-content-section .home-events-section__heading {
        position: absolute !important;
        top: clamp(86px, 7vw, 122px);
        right: max(var(--section-gutter), calc((100vw - var(--section-max)) / 2)) !important;
        left: auto !important;
        width: min(38vw, 500px) !important;
        margin: 0 !important;
        justify-content: flex-start;
        text-align: left;
    }

    .public-page .public-content .project-tagged-content-section .home-events-section__heading h4 {
        margin: 0;
    }

    .public-page .public-content .project-tagged-content-section .project-tagged-carousel {
        margin-top: 0 !important;
    }
}

.public-page .project-tagged-carousel {
    width: min(100%, 520px);
    max-width: min(100%, 520px);
    margin-right: auto;
    margin-left: 0;
}

.public-page .project-tagged-carousel .home-event-card {
    flex: 0 0 min(100%, 520px);
    max-width: min(100%, 520px);
    width: min(100%, 520px);
}

.public-page .project-tagged-carousel .home-event-card__media {
    height: auto;
    aspect-ratio: 4 / 3;
}

.public-page .project-tagged-carousel .home-event-card__body {
    min-height: 250px;
}

.project-tagged-card__eyebrow {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--brand-slate);
    font-family: var(--font-label);
    font-size: var(--text-xs);
    font-weight: 900;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 760px) {
    .public-page .public-content .project-tagged-content-section.home-events-section {
        padding-top: 38px;
        padding-right: 0 !important;
        padding-bottom: 44px;
        padding-left: 0 !important;
    }

    .public-page .public-content .project-tagged-content-section.home-events-section::before {
        display: none !important;
    }

    .public-page .public-content .project-tagged-content-section.home-events-section::after {
        display: block !important;
    }

    .public-page .public-content .project-tagged-content-section.home-events-section .project-tagged-carousel {
        width: calc(100% - 96px) !important;
        max-width: calc(100% - 96px) !important;
        margin-right: auto;
        margin-left: auto;
    }

    .public-page .public-content .project-tagged-content-section.home-events-section .project-tagged-carousel .home-event-card {
        flex-basis: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

.public-page .public-content > .row.text-center > :first-child {
    background: var(--brand-white) !important;
}

.public-page .public-content > .row.text-center > :first-child::before,
.public-page .public-content > .row.text-center > :first-child::after {
    display: none !important;
}

.public-page .public-content > .row.text-center > :first-child:where(.events-section, .project-tagged-content-section, .fundraiser-section, .fundraiser-related-section, .partners-section) :where(.card-header, .blog-heading h2) {
    color: var(--brand-navy) !important;
}

.public-page .public-content > .row.text-center > :first-child:where(.events-section, .project-tagged-content-section, .fundraiser-section, .fundraiser-related-section, .partners-section) :where(.blog-heading p, .blog-empty) {
    color: var(--brand-slate) !important;
}

@media (max-width: 760px) {
    .public-page :where(.events-section, .project-tagged-content-section, .fundraiser-section, .fundraiser-related-section) {
        padding-right: 0;
        padding-left: 0;
    }

    .public-page :where(.events-section, .project-tagged-content-section)::before {
        right: var(--page-gutter);
        width: 170px;
        height: 220px;
        opacity: 0.32;
    }
}
.public-hidden-section {
    display: none !important;
}

/* ── Partner with us nav link ── */
.hero-partner-link {
    background: rgba(255, 255, 255, 0.18) !important;
}

.hero-partner-link:hover,
.hero-partner-link:focus-visible {
    background: var(--brand-white) !important;
    color: var(--brand-navy) !important;
}

/* ── Impact Story section ── */
.home-impact-story {
    padding: clamp(40px, 4vw, 64px) var(--section-x);
    background: var(--brand-white);
}

.home-impact-story__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(32px, 4vw, 56px);
    align-items: center;
    max-width: var(--section-max);
    margin: 0 auto;
}

.home-impact-story__media {
    border-radius: var(--radius-card);
    overflow: hidden;
    aspect-ratio: 4 / 3;
    box-shadow: var(--shadow-card);
}

.home-impact-story__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-impact-story__label {
    font-family: var(--font-label);
    font-size: clamp(11px, 0.78vw, 13px);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--brand-green);
    margin: 0 0 10px;
}

.home-impact-story__title {
    font-family: var(--font-title);
    font-size: clamp(22px, 2vw, 30px);
    font-weight: 900;
    line-height: 1.2;
    color: var(--brand-navy);
    margin: 0 0 14px;
}

.home-impact-story__body {
    font-size: var(--text-base);
    line-height: 1.65;
    color: var(--brand-navy);
    margin: 0 0 22px;
}

.home-impact-story__link {
    color: var(--brand-orange) !important;
    font-family: var(--font-label);
    font-weight: 800;
    font-size: clamp(14px, 1vw, 16px);
    text-decoration: none !important;
    transition: color 0.15s;
}

.home-impact-story__link:hover {
    color: var(--brand-coral) !important;
}

@media (max-width: 760px) {
    .home-impact-story__inner {
        grid-template-columns: 1fr;
    }
}

.home-page-stack .support-us-section {
    overflow: visible;
}

.home-page-stack .support-us-section > h4.card-header,
.home-page-stack .volunteer-section > h4.card-header {
    position: static;
    left: auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    transform: none;
}

.home-fundraisers-section .home-events-section__heading h4 {
    position: static;
    left: auto;
    width: auto;
    transform: none;
}

.home-fundraisers-section {
    overflow: visible;
}

.public-contact-section > h4.card-header {
    position: static;
    left: auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    transform: none;
}

.home-page-stack .blog-section > .blog-heading > h4.card-header {
    position: static;
    left: auto;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    transform: none;
}

.partner-with-us-section .card-header {
    color: var(--brand-white) !important;
}

.partner-with-us-section .card-header::before,
.partner-with-us-section .card-header::after {
    background: var(--brand-peach) !important;
}

/* Final public-home alignment fixes. Keep these last so they win the cascade. */
.public-page .home-page-stack .support-us-section {
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.public-page .home-page-stack .support-us-section > h4.card-header {
    position: static !important;
    left: auto !important;
    width: 100vw !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    transform: none !important;
}

.public-page .home-fundraisers-section .home-events-section__heading {
    width: 100vw !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 50% !important;
    transform: translateX(-50%) !important;
}

.public-page .home-fundraisers-section .home-events-section__heading::before,
.public-page .home-fundraisers-section .home-events-section__heading::after {
    background: var(--brand-navy) !important;
}

.public-page .partner-with-us-section,
.public-page .partner-with-us-section p,
.public-page .partner-with-us-section .partner-with-us-card p,
.public-page .partner-with-us-section .partner-with-us-cta p {
    color: var(--brand-white) !important;
}

.public-page .partner-with-us-section .partner-with-us-card h5 {
    color: var(--brand-peach) !important;
}

.public-page .partner-with-us-section .card-header {
    color: var(--brand-white) !important;
}

.public-page .partner-with-us-section .card-header::before,
.public-page .partner-with-us-section .card-header::after {
    background: var(--brand-white) !important;
}

.public-page .brand-footer__mark {
    background: transparent;
    object-fit: cover;
}

/* Keep the full partners section, including the title, inside the green band. */
.public-page .public-content .partners-section::before {
    top: 0 !important;
    bottom: 0 !important;
}

.public-page .public-content .partners-section__intro {
    position: relative;
    z-index: 1;
    margin-bottom: clamp(10px, 1.5vw, 18px);
}

.public-page .public-content .partners-section__body {
    position: relative;
    z-index: 1;
}

/* Make the bank transfer block read as a standalone card. */
.public-page .support-bank-panel {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: clamp(400px, 30vw, 460px);
    height: auto;
    aspect-ratio: auto;
    border: 1px solid rgba(45, 54, 72, 0.12);
    border-radius: 28px;
    padding: clamp(24px, 3vw, 42px);
    background-color: var(--brand-white);
    background-position: center;
    background-size: cover;
    box-shadow: 0 18px 42px rgba(45, 54, 72, 0.14);
}

.public-page .support-bank-panel .bank-card__header {
    border-bottom: 3px solid var(--brand-navy);
}

.public-page .support-bank-panel .bank-card__header h5 {
    font-size: clamp(28px, 3vw, 44px);
}

.public-page .support-bank-panel .bank-card__accounts {
    display: grid;
    gap: clamp(8px, 1vw, 12px);
    margin-top: clamp(18px, 2vw, 26px);
}

@media (max-width: 760px) {
    .public-page .support-bank-panel {
        width: 100%;
        aspect-ratio: auto;
        min-height: 260px;
        border-radius: 24px;
    }
}

/* Keep section-title decorations visible on mobile, but shorter. */
@media (max-width: 760px) {
    .public-page .card-header,
    .public-page h4.card-header,
    .public-page h4.pt-md-4.card-header {
        gap: clamp(8px, 2.5vw, 12px);
    }

    .public-page .card-header::before,
    .public-page .card-header::after,
    .public-page h4.card-header::before,
    .public-page h4.card-header::after {
        display: block !important;
        flex: 1 1 clamp(28px, 14vw, 72px);
        min-width: clamp(28px, 12vw, 58px);
        max-width: 88px;
        height: 7px;
        border-radius: 999px;
        background: currentColor;
        opacity: 1;
    }
}

/* Final public form typography pass. */
.public-page :where(
    .stripe-donation-form,
    .support-donation-form,
    .fundraiser-donation-form,
    .fundraiser-stripe-form,
    .volunteer-form,
    .public-contact-section__form,
    .public-contact-section__newsletter-form,
    .brand-footer__newsletter-form
) {
    font-family: var(--font-body) !important;
    font-size: var(--type-body);
    line-height: 1.45;
}

.public-page :where(
    .stripe-donation-form,
    .support-donation-form,
    .fundraiser-donation-form,
    .fundraiser-stripe-form,
    .volunteer-form,
    .public-contact-section__form,
    .public-contact-section__newsletter-form,
    .brand-footer__newsletter-form
) :where(label, legend) {
    color: var(--brand-navy);
    font-family: var(--font-label) !important;
    font-size: var(--type-small) !important;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: 0;
    text-transform: uppercase;
}

.public-page :where(
    .stripe-donation-form,
    .support-donation-form,
    .fundraiser-donation-form,
    .fundraiser-stripe-form,
    .volunteer-form,
    .public-contact-section__form,
    .public-contact-section__newsletter-form,
    .brand-footer__newsletter-form
) :where(input[type="email"], input[type="text"], input[type="number"], select, textarea) {
    color: var(--brand-navy);
    font-family: var(--font-body) !important;
    font-size: var(--type-body) !important;
    font-weight: 700;
    line-height: 1.25;
}

.public-page :where(.stripe-donation-form, .support-donation-form, .fundraiser-stripe-form) :where(input[type="email"], input[type="text"], input[type="number"], select) {
    min-height: 50px;
    border-radius: 15px;
}

.public-page :where(.stripe-donation-form, .support-donation-form, .fundraiser-stripe-form) .stripe-donation-form__radio {
    min-height: 50px;
    color: var(--brand-navy);
    font-family: var(--font-body) !important;
    font-size: var(--type-body) !important;
    font-weight: 700;
    line-height: 1.25;
    text-transform: none !important;
}

.public-page :where(.stripe-donation-form, .support-donation-form, .fundraiser-stripe-form) .btn {
    font-family: var(--font-label) !important;
    font-size: var(--type-body) !important;
    font-weight: 900;
    line-height: 1.1;
}

.public-page .support-donation-panel h5,
.public-page .support-bank-panel .bank-card__header h5,
.public-page .donation-card-form__header .card-title {
    font-size: var(--type-card-title) !important;
}

.public-page .fundraiser-stripe-form {
    font-size: var(--type-small);
}

.public-page .fundraiser-stripe-form :where(label, legend) {
    font-size: clamp(11px, 0.72vw, 12px) !important;
}

.public-page .fundraiser-stripe-form :where(input[type="email"], input[type="text"], input[type="number"], select),
.public-page .fundraiser-stripe-form .stripe-donation-form__radio {
    min-height: 44px;
    font-size: var(--type-small) !important;
}

/* Lizuca activities should use clean cards, without the projects green band. */
.public-page .lizuca-activities-section .projects-section__body {
    padding-bottom: 0 !important;
}

.public-page .lizuca-activities-section .projects-section__body::before,
.public-page .lizuca-activities-section .projects-section__body::after {
    display: none !important;
}

/* Project donation headers should align like normal section headers, not like the home support block. */
.public-page .project-donation-section.support-us-section > .card-header {
    position: static !important;
    left: auto !important;
    width: 100vw !important;
    margin: 0 calc(50% - 50vw) var(--section-title-gap) !important;
    transform: none !important;
}

.public-page .project-donation-section.support-us-section > .project-donation-section__intro,
.public-page .project-donation-section.support-us-section > .project-donation-section__body {
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/* Lizuca page: keep the long activity/donation/quote stack on a steady rhythm. */
.public-page:has(.lizuca-home-intro) .lizuca-home-intro {
    margin-bottom: clamp(24px, 2.4vw, 34px) !important;
}

.public-page:has(.lizuca-home-intro) .lizuca-card-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.public-page:has(.lizuca-home-intro) .lizuca-card-section + .project-donation-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: clamp(28px, 3.4vw, 48px) !important;
    padding-bottom: clamp(30px, 3.8vw, 54px) !important;
}

.public-page:has(.lizuca-home-intro) .project-donation-section + .project-quote-section {
    margin-top: 0 !important;
    margin-bottom: clamp(24px, 2.4vw, 36px) !important;
}

.public-page:has(.lizuca-home-intro) .project-donation-section::before {
    top: 0 !important;
    bottom: 0 !important;
}

.public-page:has(.lizuca-home-intro) .project-quote-section + .lizuca-help-section {
    margin-top: 0 !important;
}

.public-page:has(.lizuca-home-intro) .lizuca-help-section {
    margin-bottom: clamp(24px, 2.4vw, 34px) !important;
}

@media (max-width: 760px) {
    .public-page:has(.lizuca-home-intro) .lizuca-home-intro,
    .public-page:has(.lizuca-home-intro) .project-donation-section + .project-quote-section,
    .public-page:has(.lizuca-home-intro) .lizuca-help-section {
        margin-bottom: 26px !important;
    }

    .public-page:has(.lizuca-home-intro) .lizuca-card-section {
        margin-bottom: 0 !important;
    }

    .public-page:has(.lizuca-home-intro) .lizuca-card-section + .project-donation-section {
        margin-bottom: 0 !important;
        padding-top: 28px !important;
        padding-bottom: 32px !important;
    }

    .public-page:has(.lizuca-home-intro) .project-quote-section + .lizuca-help-section {
        margin-top: 0 !important;
    }
}

/* Keep home pet carousel arrows beside the slide on mobile. */
@media (max-width: 760px) {
    .public-page .home-pet-section {
        overflow: visible;
    }

    .public-page .home-pet-section:has(#home-pets) > p {
        width: calc(100% - 96px) !important;
        margin-right: auto !important;
        margin-left: auto !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        text-align: left !important;
    }

    .public-page .home-pet-section:has(#home-pets) > .pet-carousel-controls {
        left: 50%;
        width: calc(100% - 96px);
        padding: 0;
        transform: translate(-50%, -50%);
    }

    .public-page .home-pet-section:has(#home-pets) > .pet-carousel-controls .pet-carousel-controls__button {
        width: 42px;
        height: 42px;
    }

    .public-page .home-pet-section:has(#home-pets) > .pet-carousel-controls .pet-carousel-controls__button:first-child {
        transform: translateX(calc(-100% - 10px));
    }

    .public-page .home-pet-section:has(#home-pets) > .pet-carousel-controls .pet-carousel-controls__button:last-child {
        transform: translateX(calc(100% + 10px));
    }

    .public-page .home-pet-section:has(#home-pets) > .pet-carousel-controls .pet-carousel-controls__button::before {
        font-size: 30px;
    }
}

/* Final website typography scale. Keep public pages readable without oversized editorial text. */
body.public-page {
    --text-xs: clamp(11px, 0.72vw, 12px);
    --text-sm: clamp(12px, 0.82vw, 14px);
    --text-base: clamp(15px, 0.95vw, 16px);
    --text-lead: clamp(16px, 1.08vw, 18px);
    --text-card: clamp(15px, 0.98vw, 17px);
    --title-card: clamp(21px, 1.65vw, 27px);
    --title-section: clamp(30px, 2.65vw, 42px);
    --title-page: clamp(36px, 3.55vw, 56px);
    --type-body: var(--text-base);
    --type-small: var(--text-sm);
    --type-button: clamp(13px, 0.86vw, 15px);
    --type-card-body: var(--text-card);
    --type-lead: var(--text-lead);
    --type-card-title: var(--title-card);
    --type-section-title: var(--title-section);
    --type-page-title: var(--title-page);
}

.public-page :where(.public-content, .public-content p, .public-content li, .card-text, .cms-rich-text, .blog-card p, .event-card p, .home-event-card p, .pet-filter-card__description, .pet-preview__description, .brand-footer p) {
    font-size: var(--type-card-body) !important;
    line-height: 1.55;
}

.public-page :where(.card-header, h4.card-header, h4.pt-md-4.card-header, .home-events-section__heading h4, .projects-section__heading h2, .stats-section__heading h2, .team-section h2, .partners-section__intro h4, .blog-heading h2) {
    font-size: var(--type-section-title) !important;
    line-height: 1.08;
}

.public-page :where(.card-title, .blog-card h3, .event-card h3, .home-event-card h5, .fundraiser-card__body h3, .pet-filter-card h5, .support-card h3, .spay-neuter-section h3, .support-donation-panel h5, .support-bank-panel .bank-card__header h5, .public-contact-section__form-card h5, .volunteer-form h5) {
    font-size: var(--type-card-title) !important;
    line-height: 1.12;
}

.public-page :where(.hero-copy h1, .public-content h1, .events-page h1, .blog-detail h2) {
    font-size: var(--type-page-title) !important;
    line-height: 1.04;
}

.public-page :where(.hero-copy p, .project-donation-section__intro, .projects-section__intro-text, .home-pet-section > p, .blog-heading p, .blog-detail__excerpt, .patrocle-section-copy p, .content-card-section__intro p) {
    font-size: var(--type-lead) !important;
    line-height: 1.5;
}

.public-page .public-hero-image .hero-copy {
    width: min(680px, 100%);
}

.public-page .hero-copy h1 {
    font-size: clamp(30px, 3.05vw, 46px) !important;
    line-height: 1.14 !important;
    text-transform: none;
}

.public-page .hero-copy p {
    max-width: 620px;
    margin-top: 16px;
    font-size: clamp(15px, 1vw, 17px) !important;
    font-weight: 700;
    line-height: 1.55 !important;
}

.public-page :where(.hero-links a, .hero-projects__trigger),
.public-page .hero-links a,
.public-page .hero-projects__trigger {
    font-size: clamp(15px, 1vw, 17px) !important;
    line-height: 1.12;
}

.public-page .hero-donate,
.public-page .hero-donate * {
    font-size: clamp(28px, 2.6vw, 38px) !important;
    line-height: 0.95;
}

.public-page :where(.btn, button, input, select, textarea, label, legend, .stripe-donation-form__radio, .bank-card__copy-row, .public-contact-section__list li) {
    font-size: var(--type-body) !important;
}

.public-page :where(.stripe-donation-form, .support-donation-form, .fundraiser-donation-form, .fundraiser-stripe-form, .volunteer-form, .public-contact-section__form, .public-contact-section__newsletter-form, .brand-footer__newsletter-form) :where(label, legend) {
    font-size: var(--type-small) !important;
}

@media (max-width: 760px) {
    body.public-page {
        --text-xs: 11px;
        --text-sm: 12px;
        --text-base: 14px;
        --text-lead: 15px;
        --text-card: 14px;
        --title-card: 20px;
        --title-section: 26px;
        --title-page: 32px;
        --type-button: 14px;
    }

    .public-page :where(.hero-links a, .hero-projects__trigger),
    .public-page .hero-links a,
    .public-page .hero-projects__trigger {
        font-size: 16px !important;
    }

.public-page .hero-donate,
.public-page .hero-donate * {
    font-size: 25px !important;
    }
}

/* Homepage narrative sections. */
.public-page .home-mission-section,
.public-page .home-model-section {
    width: var(--section-shell);
    margin-right: auto;
    margin-left: auto;
}

.public-page .home-mission-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    gap: clamp(20px, 3vw, 42px);
    align-items: stretch;
}

.public-page .home-mission-section__copy,
.public-page .home-mission-section__principles {
    border-radius: var(--radius-card);
    padding: clamp(22px, 3vw, 38px);
    box-shadow: var(--shadow-card);
}

.public-page .home-mission-section__copy {
    background: var(--brand-white);
}

.public-page .home-mission-section__copy p {
    margin: 0 0 0.8em;
    color: var(--brand-navy);
}

.public-page .home-mission-section__copy p:last-child {
    margin-bottom: 0;
}

.public-page .home-mission-section__copy strong {
    color: var(--brand-orange);
    font-family: var(--font-title);
    font-size: var(--type-card-title);
    line-height: 1.15;
}

.public-page .home-mission-section__principles {
    display: grid;
    align-content: center;
    gap: 14px;
    background: var(--brand-navy);
    color: var(--brand-white);
}

.public-page .home-mission-section__principles p {
    margin: 0;
    color: var(--brand-white);
    font-family: var(--font-title) !important;
    font-size: var(--type-card-title) !important;
    font-weight: 900;
    line-height: 1.15;
}

.public-page .home-mission-section__principles span {
    display: block;
    color: var(--brand-peach);
}

.public-page .home-pillars-section,
.public-page .home-daily-section {
    width: var(--section-shell);
    margin-right: auto;
    margin-left: auto;
}

.public-page .home-pillars-section {
    padding: clamp(14px, 2vw, 24px) 0 clamp(28px, 4vw, 48px);
}

.public-page .home-pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 22px);
}

.public-page .home-pillar-card {
    display: grid;
    gap: 8px;
    align-content: start;
    min-height: 100%;
    padding: clamp(18px, 2.2vw, 26px);
    border: 1px solid color-mix(in srgb, var(--brand-green) 20%, var(--brand-white));
    border-radius: var(--radius-card);
    background: var(--brand-white);
    box-shadow: var(--shadow-card);
    text-align: center;
}

.public-page .home-pillar-card span {
    width: 58px;
    height: 58px;
    margin: 0 auto 4px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: color-mix(in srgb, var(--brand-green) 16%, var(--brand-white));
    font-size: 1.7rem !important;
}

.public-page .home-pillar-card:nth-child(2) span {
    background: color-mix(in srgb, var(--brand-orange) 18%, var(--brand-white));
}

.public-page .home-pillar-card:nth-child(3) span {
    background: color-mix(in srgb, var(--brand-pink) 14%, var(--brand-white));
}

.public-page .home-pillar-card:nth-child(4) span {
    background: color-mix(in srgb, var(--brand-navy) 10%, var(--brand-white));
}

.public-page .home-pillar-card h5,
.public-page .home-daily-card h5 {
    margin: 0;
    color: var(--brand-orange);
    font-family: var(--font-title) !important;
    font-size: var(--type-card-title) !important;
    line-height: 1.12;
}

.public-page .home-pillar-card p,
.public-page .home-daily-card p {
    margin: 0;
    color: var(--brand-navy) !important;
    font-size: var(--type-body) !important;
    line-height: 1.38;
    text-align: center;
}

.public-page .home-daily-section {
    width: 100vw;
    max-width: 100vw;
    padding: clamp(28px, 4vw, 54px) 0;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    background: var(--brand-green);
    color: var(--brand-white);
}

.public-page .home-daily-section > .card-header {
    color: var(--brand-white) !important;
}

.public-page .home-daily-section > .card-header::before,
.public-page .home-daily-section > .card-header::after {
    background: var(--brand-white) !important;
}

.public-page .home-daily-grid {
    width: min(100%, var(--section-max));
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(14px, 1.8vw, 22px);
}

.public-page .home-daily-card {
    display: grid;
    gap: 10px;
    align-content: start;
    min-height: 100%;
    padding: clamp(18px, 2vw, 24px);
    border-radius: var(--radius-card);
    background: color-mix(in srgb, var(--brand-green) 12%, var(--brand-white));
    box-shadow: var(--shadow-soft);
    text-align: center;
}

.public-page .home-daily-card:nth-child(even) {
    background: var(--brand-white);
}

.public-page .home-daily-card span {
    font-size: 1.6rem !important;
    line-height: 1;
}

.public-page .home-model-section {
    padding: clamp(28px, 4vw, 54px) 0;
}

.public-page .home-model-section__steps {
    width: min(100%, var(--section-max));
    margin: 0 auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: clamp(16px, 1.8vw, 26px);
    list-style: none;
}

.public-page .home-model-section__steps li {
    position: relative;
    min-height: 76px;
    padding: 16px 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: color-mix(in srgb, var(--brand-green) 18%, var(--brand-white));
    color: var(--brand-navy);
    font-family: var(--font-label) !important;
    font-size: var(--type-small) !important;
    font-weight: 900;
    line-height: 1.15;
    text-align: center !important;
    text-transform: uppercase;
}

.public-page .home-model-section__steps li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: calc(clamp(16px, 1.8vw, 26px) / -2 - 2px);
    z-index: 1;
    width: 14px;
    height: 3px;
    border-radius: 999px;
    background: var(--brand-orange);
    transform: translateY(-50%);
}

@media (max-width: 900px) {
    .public-page .home-mission-section__grid {
        grid-template-columns: 1fr;
    }

    .public-page .home-pillars-grid,
    .public-page .home-daily-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .public-page .home-model-section__steps {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .public-page .home-model-section__steps li {
        min-height: 0;
    }

    .public-page .home-model-section__steps li:not(:last-child)::after {
        top: auto;
        right: 50%;
        bottom: -16px;
        width: 3px;
        height: 14px;
        transform: translateX(50%);
    }
}

@media (max-width: 640px) {
    .public-page .home-pillars-grid,
    .public-page .home-daily-grid {
        grid-template-columns: 1fr;
    }

    .public-page .home-pillar-card,
    .public-page .home-daily-card {
        min-height: 0;
    }
}

/* Knowledge-base public pages. */
.public-page .knowledge-page {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    gap: 0;
}

.public-page .knowledge-page > .patrocle-page-section,
.public-page .knowledge-page > .volunteer-section {
    width: var(--section-shell);
    padding-top: clamp(30px, 4vw, 58px);
    padding-bottom: clamp(32px, 4.5vw, 62px);
    margin-right: auto;
    margin-left: auto;
}

.public-page .knowledge-page > .patrocle-page-section + .patrocle-page-section {
    margin-top: 0;
}

.public-page .knowledge-page > .patrocle-page-section > .card-header {
    margin-bottom: clamp(18px, 2.8vw, 34px) !important;
}

.public-page .knowledge-page > .home-model-section {
    width: var(--section-shell);
    max-width: var(--section-shell);
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
    background: transparent;
}

.public-page .home-pillars-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-page .home-daily-grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.public-page .knowledge-page .home-pillars-section {
    padding-top: clamp(30px, 4vw, 58px);
}

body.public-page .public-content .knowledge-page > .home-daily-section.knowledge-principles-section {
    width: 100vw;
    max-width: 100vw;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    padding-right: max(var(--section-pad), calc((100vw - var(--section-max)) / 2));
    padding-left: max(var(--section-pad), calc((100vw - var(--section-max)) / 2));
}

body.public-page .public-content .knowledge-page > .home-daily-section.knowledge-principles-section .home-daily-grid {
    width: min(100%, var(--section-max));
}

.public-page .knowledge-page .home-daily-card {
    text-align: left;
}

/* About page should reuse the homepage green-band treatment exactly. */
body.public-page .public-content .row.text-center .knowledge-page > section.home-daily-section.knowledge-principles-section {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    padding-right: max(var(--section-pad), calc((100vw - var(--section-max)) / 2)) !important;
    padding-left: max(var(--section-pad), calc((100vw - var(--section-max)) / 2)) !important;
    background: var(--brand-green) !important;
    color: var(--brand-white) !important;
}

body.public-page .public-content .row.text-center .knowledge-page > section.home-daily-section.knowledge-principles-section > h4.card-header {
    color: var(--brand-white) !important;
}

body.public-page .public-content .row.text-center .knowledge-page > section.home-daily-section.knowledge-principles-section > h4.card-header::before,
body.public-page .public-content .row.text-center .knowledge-page > section.home-daily-section.knowledge-principles-section > h4.card-header::after {
    background: var(--brand-white) !important;
}

body.public-page .public-content .row.text-center .knowledge-page > section.home-daily-section.knowledge-principles-section > .home-daily-grid {
    width: min(100%, var(--section-max)) !important;
    max-width: var(--section-max) !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

/* End-of-file contrast fixes for section headers that sit on green bands. */
body.public-page .public-content .row.text-center .knowledge-page > section.patrocle-page-section.home-daily-section > h4.card-header,
body.public-page .public-content .row.text-center .knowledge-page > section.patrocle-page-section.home-model-section > h4.card-header,
body.public-page .public-content .row.text-center .knowledge-page > section#cum-creste-schimbarea > h4.card-header,
body.public-page .public-content .row.text-center .knowledge-page > section#how-change-grows > h4.card-header {
    color: var(--brand-navy) !important;
}

body.public-page .public-content .row.text-center .knowledge-page > section.patrocle-page-section.home-daily-section > h4.card-header::before,
body.public-page .public-content .row.text-center .knowledge-page > section.patrocle-page-section.home-daily-section > h4.card-header::after,
body.public-page .public-content .row.text-center .knowledge-page > section.patrocle-page-section.home-model-section > h4.card-header::before,
body.public-page .public-content .row.text-center .knowledge-page > section.patrocle-page-section.home-model-section > h4.card-header::after,
body.public-page .public-content .row.text-center .knowledge-page > section#cum-creste-schimbarea > h4.card-header::before,
body.public-page .public-content .row.text-center .knowledge-page > section#cum-creste-schimbarea > h4.card-header::after,
body.public-page .public-content .row.text-center .knowledge-page > section#how-change-grows > h4.card-header::before,
body.public-page .public-content .row.text-center .knowledge-page > section#how-change-grows > h4.card-header::after {
    background: var(--brand-navy) !important;
}

/* Literal final override: title bars fill the full remaining viewport width. */
body.public-page :where(
    h4.card-header,
    .card-header,
    h4.pt-md-4.card-header,
    .section-header h2,
    .blog-heading h2,
    .blog-heading h4,
    .blog-detail h2,
    .home-events-section__heading h4,
    .projects-section__heading h2,
    .partners-section__intro h4,
    .stats-section__heading h2,
    .team-section h2,
    .pet-group-section__header h3
) {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

body.public-page :where(
    h4.card-header,
    .card-header,
    h4.pt-md-4.card-header,
    .section-header h2,
    .blog-heading h2,
    .blog-heading h4,
    .blog-detail h2,
    .home-events-section__heading h4,
    .projects-section__heading h2,
    .partners-section__intro h4,
    .stats-section__heading h2,
    .team-section h2,
    .pet-group-section__header h3
)::before,
body.public-page :where(
    h4.card-header,
    .card-header,
    h4.pt-md-4.card-header,
    .section-header h2,
    .blog-heading h2,
    .blog-heading h4,
    .blog-detail h2,
    .home-events-section__heading h4,
    .projects-section__heading h2,
    .partners-section__intro h4,
    .stats-section__heading h2,
    .team-section h2,
    .pet-group-section__header h3
)::after {
    flex: 1 1 auto !important;
    max-width: none !important;
}

/* Final bar-width override: section title bars should run to the viewport edges. */
body.public-page :where(
    h4.card-header,
    .card-header,
    h4.pt-md-4.card-header,
    .section-header h2,
    .blog-heading h2,
    .blog-heading h4,
    .blog-detail h2,
    .home-events-section__heading h4,
    .projects-section__heading h2,
    .partners-section__intro h4,
    .stats-section__heading h2,
    .team-section h2,
    .pet-group-section__header h3
) {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

body.public-page :where(
    h4.card-header,
    .card-header,
    h4.pt-md-4.card-header,
    .section-header h2,
    .blog-heading h2,
    .blog-heading h4,
    .blog-detail h2,
    .home-events-section__heading h4,
    .projects-section__heading h2,
    .partners-section__intro h4,
    .stats-section__heading h2,
    .team-section h2,
    .pet-group-section__header h3
)::before,
body.public-page :where(
    h4.card-header,
    .card-header,
    h4.pt-md-4.card-header,
    .section-header h2,
    .blog-heading h2,
    .blog-heading h4,
    .blog-detail h2,
    .home-events-section__heading h4,
    .projects-section__heading h2,
    .partners-section__intro h4,
    .stats-section__heading h2,
    .team-section h2,
    .pet-group-section__header h3
)::after {
    flex: 1 1 auto !important;
    max-width: none !important;
}

/* Release guardrail: keep all public section titles in one consistent pattern.
   This intentionally lives at the end because several legacy page-specific rules
   still exist above while the public templates are being consolidated. */
body.public-page :where(
    .home-events-section__heading,
    .home-fundraisers-section .home-events-section__heading,
    .project-tagged-content-section .home-events-section__heading,
    .projects-section__heading,
    .partners-section__intro,
    .stats-section__heading,
    .blog-heading,
    .pet-group-section__header
) {
    position: static !important;
    inset: auto !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: center !important;
}

body.public-page :where(
    h4.card-header,
    .card-header,
    h4.pt-md-4.card-header,
    .section-header h2,
    .blog-heading h2,
    .blog-heading h4,
    .blog-detail h2,
    .home-events-section__heading h4,
    .projects-section__heading h2,
    .partners-section__intro h4,
    .stats-section__heading h2,
    .team-section h2,
    .pet-group-section__header h3
) {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(12px, 2vw, 28px) !important;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    margin: clamp(18px, 3vw, 40px) calc(50% - 50vw) clamp(14px, 2vw, 28px) !important;
    padding: 0 max(16px, calc((100vw - var(--section-max)) / 2)) !important;
    transform: none !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--brand-navy) !important;
    font-family: var(--font-title) !important;
    font-size: var(--title-section) !important;
    font-weight: 800 !important;
    line-height: 1.06 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    text-wrap: balance !important;
    white-space: normal !important;
}

body.public-page :where(
    h4.card-header,
    .card-header,
    h4.pt-md-4.card-header,
    .section-header h2,
    .blog-heading h2,
    .blog-heading h4,
    .blog-detail h2,
    .home-events-section__heading h4,
    .projects-section__heading h2,
    .partners-section__intro h4,
    .stats-section__heading h2,
    .team-section h2,
    .pet-group-section__header h3
)::before,
body.public-page :where(
    h4.card-header,
    .card-header,
    h4.pt-md-4.card-header,
    .section-header h2,
    .blog-heading h2,
    .blog-heading h4,
    .blog-detail h2,
    .home-events-section__heading h4,
    .projects-section__heading h2,
    .partners-section__intro h4,
    .stats-section__heading h2,
    .team-section h2,
    .pet-group-section__header h3
)::after {
    content: "" !important;
    display: block !important;
    flex: 1 1 clamp(72px, 22vw, 420px) !important;
    width: auto !important;
    max-width: 420px !important;
    height: clamp(5px, 0.65vw, 10px) !important;
    min-width: 0 !important;
    border-radius: 999px !important;
    background: currentColor !important;
}

body.public-page :where(
    .partner-with-us-section,
    .project-quote-section,
    .home-events-section,
    .project-tagged-content-section
) :where(h4.card-header, .card-header, .home-events-section__heading h4) {
    color: var(--brand-white) !important;
}

body.public-page :where(
    .public-stats,
    .partners-section,
    .home-daily-section,
    .home-model-section,
    .knowledge-principles-section
) :where(h4.card-header, .card-header, .partners-section__intro h4) {
    color: var(--brand-navy) !important;
}

@media (max-width: 760px) {
    body.public-page :where(
        h4.card-header,
        .card-header,
        h4.pt-md-4.card-header,
        .section-header h2,
        .blog-heading h2,
        .blog-heading h4,
        .blog-detail h2,
        .home-events-section__heading h4,
        .projects-section__heading h2,
        .partners-section__intro h4,
        .stats-section__heading h2,
        .team-section h2,
        .pet-group-section__header h3
    ) {
        gap: 9px !important;
        margin-top: 20px !important;
        margin-bottom: 14px !important;
        padding-right: 14px !important;
        padding-left: 14px !important;
        font-size: clamp(24px, 7vw, 32px) !important;
    }

    body.public-page :where(
        h4.card-header,
        .card-header,
        h4.pt-md-4.card-header,
        .section-header h2,
        .blog-heading h2,
        .blog-heading h4,
        .blog-detail h2,
        .home-events-section__heading h4,
        .projects-section__heading h2,
        .partners-section__intro h4,
        .stats-section__heading h2,
        .team-section h2,
        .pet-group-section__header h3
    )::before,
    body.public-page :where(
        h4.card-header,
        .card-header,
        h4.pt-md-4.card-header,
        .section-header h2,
        .blog-heading h2,
        .blog-heading h4,
        .blog-detail h2,
        .home-events-section__heading h4,
        .projects-section__heading h2,
        .partners-section__intro h4,
        .stats-section__heading h2,
        .team-section h2,
        .pet-group-section__header h3
    )::after {
        flex-basis: clamp(28px, 16vw, 86px) !important;
        height: 5px !important;
    }
}

/* Canonical public section headers. This must remain last. */
body.public-page :where(
    h4.card-header,
    .card-header,
    .section-header h2,
    .blog-heading h2,
    .blog-heading h4,
    .blog-detail h2,
    .home-events-section__heading h4,
    .projects-section__heading h2,
    .partners-section__intro h4,
    .stats-section__heading h2,
    .team-section h2,
    .pet-group-section__header h3
) {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(12px, 2vw, 24px) !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    margin: clamp(22px, 3vw, 42px) calc(50% - 50vw) clamp(14px, 2vw, 28px) !important;
    padding: 0 max(14px, var(--section-gutter)) !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: inherit !important;
    font-family: var(--font-title) !important;
    font-size: var(--title-section) !important;
    font-weight: 900 !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    white-space: normal !important;
    transform: none !important;
}

body.public-page :where(
    h4.card-header,
    .card-header,
    .section-header h2,
    .blog-heading h2,
    .blog-heading h4,
    .blog-detail h2,
    .home-events-section__heading h4,
    .projects-section__heading h2,
    .partners-section__intro h4,
    .stats-section__heading h2,
    .team-section h2,
    .pet-group-section__header h3
)::before,
body.public-page :where(
    h4.card-header,
    .card-header,
    .section-header h2,
    .blog-heading h2,
    .blog-heading h4,
    .blog-detail h2,
    .home-events-section__heading h4,
    .projects-section__heading h2,
    .partners-section__intro h4,
    .stats-section__heading h2,
    .team-section h2,
    .pet-group-section__header h3
)::after {
    content: "" !important;
    display: block !important;
    flex: 1 1 clamp(54px, 18vw, 420px) !important;
    width: auto !important;
    max-width: 420px !important;
    min-width: clamp(54px, 10vw, 120px) !important;
    height: clamp(5px, 0.55vw, 10px) !important;
    border-radius: 999px !important;
    background: currentColor !important;
    opacity: 1 !important;
    transform: none !important;
}

body.public-page :where(.partner-with-us-section, .project-quote-section, .home-events-section) :where(
    h4.card-header,
    .card-header,
    .home-events-section__heading h4
) {
    color: var(--brand-white) !important;
}

body.public-page :where(.public-stats, .partners-section, .home-daily-section, .home-model-section, .knowledge-principles-section) > :where(
    h4.card-header,
    .card-header
),
body.public-page :where(.public-stats, .partners-section, .home-daily-section, .home-model-section, .knowledge-principles-section) :where(
    .partners-section__intro h4,
    .stats-section__heading h2
) {
    color: var(--brand-navy) !important;
}

@media (max-width: 760px) {
    body.public-page :where(
        h4.card-header,
        .card-header,
        .section-header h2,
        .blog-heading h2,
        .blog-heading h4,
        .blog-detail h2,
        .home-events-section__heading h4,
        .projects-section__heading h2,
        .partners-section__intro h4,
        .stats-section__heading h2,
        .team-section h2,
        .pet-group-section__header h3
    ) {
        gap: 8px !important;
        margin-top: clamp(18px, 5vw, 30px) !important;
        margin-bottom: clamp(10px, 4vw, 18px) !important;
        padding-right: 12px !important;
        padding-left: 12px !important;
        font-size: clamp(22px, 6vw, 30px) !important;
    }

    body.public-page :where(
        h4.card-header,
        .card-header,
        .section-header h2,
        .blog-heading h2,
        .blog-heading h4,
        .blog-detail h2,
        .home-events-section__heading h4,
        .projects-section__heading h2,
        .partners-section__intro h4,
        .stats-section__heading h2,
        .team-section h2,
        .pet-group-section__header h3
    )::before,
    body.public-page :where(
        h4.card-header,
        .card-header,
        .section-header h2,
        .blog-heading h2,
        .blog-heading h4,
        .blog-detail h2,
        .home-events-section__heading h4,
        .projects-section__heading h2,
        .partners-section__intro h4,
        .stats-section__heading h2,
        .team-section h2,
        .pet-group-section__header h3
    )::after {
        flex-basis: clamp(28px, 15vw, 82px) !important;
        min-width: 28px !important;
        height: 6px !important;
    }
}

/* Donate hub page */
.public-page .donate-page {
    width: 100%;
    padding-bottom: clamp(34px, 5vw, 72px);
}

.public-page .donate-page__intro {
    width: 100%;
    margin: 0 0 clamp(18px, 3vw, 34px);
}

.public-page .donate-page__intro > p {
    width: min(var(--section-max), calc(100% - (var(--section-x) * 2)));
    margin: clamp(10px, 1.6vw, 18px) auto 0;
    color: var(--brand-slate);
    font-size: var(--text-lg);
    font-weight: 700;
    line-height: 1.55;
    text-align: left;
}

.public-page .donate-page__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: clamp(14px, 2vw, 24px);
    width: min(var(--section-max), calc(100% - (var(--section-x) * 2)));
    margin: 0 auto;
    align-items: start;
}

.public-page .donate-page__stripe-copy {
    width: min(100%, 820px);
    margin: 0 auto;
    color: var(--brand-navy);
    text-align: center;
}

.public-page .donate-page__stripe-copy h5 {
    margin: 0 0 10px;
    color: var(--brand-navy);
    font-family: var(--font-title);
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 900;
    line-height: 1.08;
}

.public-page .donate-page__stripe-copy p {
    margin: 0 auto 8px;
    color: var(--brand-slate);
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 700;
    line-height: 1.45;
}

.public-page .donate-page__panel,
.public-page .donate-page__bank-card {
    border-radius: 24px;
}

.public-page .donate-page__panel h5,
.public-page .donate-page__bank-card h5 {
    font-size: clamp(28px, 2.8vw, 42px);
}

.public-page .donate-options-form {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 16px;
    margin-top: clamp(18px, 2.4vw, 28px);
    text-align: left;
}

.public-page .donate-options-form label,
.public-page .donate-options-form__amounts {
    display: grid;
    gap: 8px;
    color: var(--brand-navy);
    text-transform: uppercase;
}

.public-page .donate-options-form label span,
.public-page .donate-options-form__amounts > span {
    font-size: var(--text-xs);
    font-weight: 900;
}

.public-page .donate-options-form__amounts {
    grid-column: 1 / -1;
}

.public-page .donate-options-form__other {
    margin-top: 2px;
    text-transform: none !important;
}

.public-page .donate-options-form__other input {
    width: 100%;
}

.public-page .donate-options-form__frequency {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    border: 0;
}

.public-page .donate-options-form__frequency legend {
    grid-column: 1 / -1;
    margin: 0 0 -2px;
}

.public-page .donate-options-form .support-friend-form__note,
.public-page .donate-options-form .btn {
    grid-column: 1 / -1;
}

.public-page .donate-page__bank-card {
    position: static;
    min-height: 0;
    text-align: left;
    box-shadow:
        0 20px 52px rgba(45, 54, 72, 0.13),
        0 0 0 1px rgba(45, 54, 72, 0.08);
}

.public-page .donate-page__bank-card .bank-card__accounts {
    display: grid;
    gap: 12px;
}

.public-page .donate-page__bank-note {
    margin: clamp(18px, 2vw, 26px) 0 0;
    color: rgba(45, 54, 72, 0.78);
    font-size: var(--text-sm);
    font-weight: 700;
    line-height: 1.45;
}

.public-page .donate-page__secondary-link {
    display: inline-flex;
    margin-top: clamp(16px, 2vw, 24px);
    text-decoration: none;
}

@media (max-width: 980px) {
    .public-page .donate-page__grid {
        grid-template-columns: 1fr;
    }

    .public-page .donate-page__bank-card {
        position: static;
    }
}

@media (max-width: 640px) {
    .public-page .donate-page__intro > p,
    .public-page .donate-page__grid {
        width: min(var(--section-max), calc(100% - 28px));
    }

    .public-page .donate-options-form,
    .public-page .donate-options-form__frequency {
        grid-template-columns: 1fr;
    }
}

/* Canonical public section headers.
   Keep this at the end: older page-specific rules used different widths,
   colors and flex directions, which made headers drift between pages. */
body.public-page :where(
    h4.card-header,
    .card-header,
    .section-header h2,
    .blog-heading h2,
    .blog-heading h4,
    .blog-detail h2,
    .home-events-section__heading h4,
    .projects-section__heading h2,
    .partners-section__intro h4,
    .stats-section__heading h2,
    .team-section h2,
    .pet-group-section__header h3
) {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: clamp(12px, 2vw, 24px) !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    margin: clamp(22px, 3vw, 42px) calc(50% - 50vw) clamp(14px, 2vw, 28px) !important;
    padding: 0 max(14px, var(--section-gutter)) !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: inherit !important;
    font-family: var(--font-title) !important;
    font-size: var(--title-section) !important;
    font-weight: 900 !important;
    line-height: 1.08 !important;
    letter-spacing: 0 !important;
    text-align: center !important;
    white-space: normal !important;
    transform: none !important;
}

body.public-page :where(
    h4.card-header,
    .card-header,
    .section-header h2,
    .blog-heading h2,
    .blog-heading h4,
    .blog-detail h2,
    .home-events-section__heading h4,
    .projects-section__heading h2,
    .partners-section__intro h4,
    .stats-section__heading h2,
    .team-section h2,
    .pet-group-section__header h3
)::before,
body.public-page :where(
    h4.card-header,
    .card-header,
    .section-header h2,
    .blog-heading h2,
    .blog-heading h4,
    .blog-detail h2,
    .home-events-section__heading h4,
    .projects-section__heading h2,
    .partners-section__intro h4,
    .stats-section__heading h2,
    .team-section h2,
    .pet-group-section__header h3
)::after {
    content: "" !important;
    display: block !important;
    flex: 1 1 clamp(54px, 18vw, 420px) !important;
    width: auto !important;
    max-width: 420px !important;
    min-width: clamp(54px, 10vw, 120px) !important;
    height: clamp(5px, 0.55vw, 10px) !important;
    border-radius: 999px !important;
    background: currentColor !important;
    opacity: 1 !important;
    transform: none !important;
}

body.public-page :where(
    h4.card-header,
    .card-header,
    .section-header h2,
    .blog-heading h2,
    .blog-heading h4,
    .blog-detail h2,
    .home-events-section__heading h4,
    .projects-section__heading h2,
    .partners-section__intro h4,
    .stats-section__heading h2,
    .team-section h2,
    .pet-group-section__header h3
) > * {
    flex: 0 1 auto !important;
}

body.public-page :where(.partner-with-us-section, .project-quote-section, .home-events-section) :where(
    h4.card-header,
    .card-header,
    .home-events-section__heading h4
) {
    color: var(--brand-white) !important;
}

body.public-page :where(.public-stats, .partners-section, .home-daily-section, .home-model-section, .knowledge-principles-section) > :where(
    h4.card-header,
    .card-header
),
body.public-page :where(.public-stats, .partners-section, .home-daily-section, .home-model-section, .knowledge-principles-section) :where(
    .partners-section__intro h4,
    .stats-section__heading h2
) {
    color: var(--brand-navy) !important;
}

@media (max-width: 760px) {
    body.public-page :where(
        h4.card-header,
        .card-header,
        .section-header h2,
        .blog-heading h2,
        .blog-heading h4,
        .blog-detail h2,
        .home-events-section__heading h4,
        .projects-section__heading h2,
        .partners-section__intro h4,
        .stats-section__heading h2,
        .team-section h2,
        .pet-group-section__header h3
    ) {
        gap: 8px !important;
        margin-top: clamp(18px, 5vw, 30px) !important;
        margin-bottom: clamp(10px, 4vw, 18px) !important;
        padding-right: 12px !important;
        padding-left: 12px !important;
        font-size: clamp(22px, 6vw, 30px) !important;
    }

    body.public-page :where(
        h4.card-header,
        .card-header,
        .section-header h2,
        .blog-heading h2,
        .blog-heading h4,
        .blog-detail h2,
        .home-events-section__heading h4,
        .projects-section__heading h2,
        .partners-section__intro h4,
        .stats-section__heading h2,
        .team-section h2,
        .pet-group-section__header h3
    )::before,
    body.public-page :where(
        h4.card-header,
        .card-header,
        .section-header h2,
        .blog-heading h2,
        .blog-heading h4,
        .blog-detail h2,
        .home-events-section__heading h4,
        .projects-section__heading h2,
        .partners-section__intro h4,
        .stats-section__heading h2,
        .team-section h2,
        .pet-group-section__header h3
    )::after {
        flex-basis: clamp(28px, 15vw, 82px) !important;
        min-width: 28px !important;
        height: 6px !important;
    }
}

/* Release accessibility polish: keep copy icons subtle, but make the hit area comfortable. */
.public-page .bank-card__copy,
.public-page .brand-footer__bank .bank-card__copy {
    width: 34px !important;
    min-width: 34px !important;
    height: 34px !important;
    border-radius: 10px;
}

.public-page .bank-card__copy::before {
    top: 8px;
    left: 9px;
}

.public-page .bank-card__copy::after {
    top: 11px;
    left: 12px;
}

/* Final contrast polish for pale decorative backgrounds and donation impact amounts. */
body.public-page .public-stats .stat-item span {
    color: var(--brand-navy) !important;
    text-align: center !important;
}

body.public-page .public-stats .stat-item,
body.public-page .public-stats .stat-item strong {
    text-align: center !important;
}

body.public-page .spay-donation-card__impact strong,
body.public-page .support-donation-panel .spay-donation-card__impact strong {
    color: var(--brand-orange-ink) !important;
}

/* Contrast guardrails: keep brand colours while ensuring readable public UI text. */
.public-page .public-content :where(a:not(.btn):not(.hero-donate):not(.hero-nav a):not(.home-pet-card__link):not(.partner-logo)),
.public-page :where(.public-contact-section, .blog-detail, .blog-section, .events-page-section, .project-tagged-content-section) a:not(.btn) {
    color: var(--brand-blue-ink) !important;
}

.public-page :where(
    .btn-primary,
    .btn-success,
    .btn.btn-primary,
    .btn.btn-success,
    .hero-action--primary,
    .hero-donate,
    .home-event-card__explore,
    .blog-card__link,
    .event-card__link,
    .fundraiser-card__button,
    .support-friend-form__submit,
    .spay-donation-card__submit,
    .stripe-donation-form button[type="submit"],
    .public-contact-section__form button,
    .public-contact-section__newsletter-form button,
    .brand-footer__newsletter-form button
) {
    color: var(--brand-navy) !important;
}

.public-page :where(
    .btn-primary,
    .btn-success,
    .btn.btn-primary,
    .btn.btn-success,
    .hero-action--primary,
    .home-event-card__explore,
    .blog-card__link,
    .event-card__link,
    .fundraiser-card__button,
    .support-friend-form__submit,
    .spay-donation-card__submit,
    .stripe-donation-form button[type="submit"],
    .public-contact-section__form button,
    .public-contact-section__newsletter-form button,
    .brand-footer__newsletter-form button
):hover,
.public-page :where(
    .btn-primary,
    .btn-success,
    .btn.btn-primary,
    .btn.btn-success,
    .hero-action--primary,
    .home-event-card__explore,
    .blog-card__link,
    .event-card__link,
    .fundraiser-card__button,
    .support-friend-form__submit,
    .spay-donation-card__submit,
    .stripe-donation-form button[type="submit"],
    .public-contact-section__form button,
    .public-contact-section__newsletter-form button,
    .brand-footer__newsletter-form button
):focus-visible {
    color: var(--brand-navy) !important;
}

.public-page :where(
    .card-title,
    .blog-card h3,
    .event-card h3,
    .home-event-card h5,
    .fundraiser-card__body h3,
    .pet-filter-card h5,
    .support-card h3,
    .spay-neuter-section h3,
    .support-donation-panel h5,
    .support-bank-panel .bank-card__header h5,
    .public-contact-section__form-card h5,
    .volunteer-form h5,
    .home-pillar-card h5,
    .home-mission-section__copy strong
) {
    color: var(--brand-orange-ink) !important;
}

.public-page :where(.home-daily-section, .partners-section) {
    color: var(--brand-navy) !important;
}

.public-page :where(.home-daily-section, .partners-section) :where(h4, h5, p, span, strong, li, a:not(.btn):not(.partner-logo)) {
    color: var(--brand-navy) !important;
}

.public-page :where(.home-daily-section, .partners-section) :where(.card-header)::before,
.public-page :where(.home-daily-section, .partners-section) :where(.card-header)::after {
    background: var(--brand-navy) !important;
}

.public-page .partner-with-us-section :where(.card-header, .card-header span, p, li, strong, label, .card-text) {
    color: var(--brand-white) !important;
}

.public-page .partner-with-us-section .card-header::before,
.public-page .partner-with-us-section .card-header::after {
    background: var(--brand-white) !important;
}

.public-page .partner-with-us-section :where(h5, .partner-with-us-card h5) {
    color: var(--brand-peach) !important;
}

/* Final contrast overrides with enough specificity to beat older component rules. */
body.public-page .public-content .btn-primary,
body.public-page .public-content .btn-success,
body.public-page .public-content a.btn-primary,
body.public-page .public-content a.btn-success,
body.public-page .public-content button.btn-primary,
body.public-page .public-content button.btn-success,
body.public-page .public-content .blog-card__link,
body.public-page .public-content .event-card .blog-card__link,
body.public-page .public-content .home-event-card__explore,
body.public-page .public-content .fundraiser-card__button,
body.public-page .public-content .spay-donation-card__submit,
body.public-page .public-content .support-friend-form__submit,
body.public-page .public-content .stripe-donation-form button[type="submit"],
body.public-page .public-content .public-contact-section__form button,
body.public-page .public-content .public-contact-section__newsletter-form button,
body.public-page .brand-footer__newsletter-form button {
    background: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    color: var(--brand-navy) !important;
}

body.public-page .public-content .btn-primary:hover,
body.public-page .public-content .btn-success:hover,
body.public-page .public-content a.btn-primary:hover,
body.public-page .public-content a.btn-success:hover,
body.public-page .public-content button.btn-primary:hover,
body.public-page .public-content button.btn-success:hover,
body.public-page .public-content .blog-card__link:hover,
body.public-page .public-content .event-card .blog-card__link:hover,
body.public-page .public-content .home-event-card__explore:hover,
body.public-page .public-content .fundraiser-card__button:hover,
body.public-page .public-content .spay-donation-card__submit:hover,
body.public-page .public-content .support-friend-form__submit:hover,
body.public-page .public-content .stripe-donation-form button[type="submit"]:hover,
body.public-page .public-content .public-contact-section__form button:hover,
body.public-page .public-content .public-contact-section__newsletter-form button:hover,
body.public-page .brand-footer__newsletter-form button:hover {
    background: var(--brand-peach) !important;
    border-color: var(--brand-peach) !important;
    color: var(--brand-navy) !important;
}

body.public-page .hero-donate,
body.public-page .hero-donate *,
body.public-page .public-content .support-friend-form__amounts button.is-selected,
body.public-page .public-content .stripe-donation-form button.is-selected {
    color: var(--brand-navy) !important;
}

body.public-page .public-content :where(.blog-card__body time, .event-card__date, .home-event-card time) {
    color: var(--brand-orange-ink) !important;
}

body.public-page .public-content :where(
    .spay-neuter-section__body h4,
    .adoptable-preview-card h5,
    .adoptable-preview-card__heading h5,
    .pet-filter-card h5,
    .home-event-card h5,
    .blog-card h3,
    .event-card h3
) {
    color: var(--brand-orange-ink) !important;
}

body.public-page .public-content :where(.home-daily-section, .knowledge-principles-section) > h4.card-header,
body.public-page .public-content .knowledge-page :where(#cum-creste-schimbarea, #how-change-grows, .home-model-section, .home-daily-section) > h4.card-header {
    color: var(--brand-navy) !important;
}

body.public-page .public-content :where(.home-daily-section, .knowledge-principles-section) > h4.card-header::before,
body.public-page .public-content :where(.home-daily-section, .knowledge-principles-section) > h4.card-header::after,
body.public-page .public-content .knowledge-page :where(#cum-creste-schimbarea, #how-change-grows, .home-model-section, .home-daily-section) > h4.card-header::before,
body.public-page .public-content .knowledge-page :where(#cum-creste-schimbarea, #how-change-grows, .home-model-section, .home-daily-section) > h4.card-header::after {
    background: var(--brand-navy) !important;
}

body.public-page .public-content .lizuca-activities-section .lizuca-card-grid__item:nth-child(even) .lizuca-card {
    background: var(--brand-green-ink) !important;
}

body.public-page .public-content .lizuca-activities-section .lizuca-card-grid__item:nth-child(even) .lizuca-card :where(h4, h5, p, li, span, small, strong, .card-title, .card-text) {
    color: var(--brand-white) !important;
}

body.public-page .public-content .spay-reproduction-card dl div {
    background: #f0f3f7 !important;
}

body.public-page .public-content .lizuca-card-grid__item:nth-child(even) article.card,
body.public-page .public-content .lizuca-card-grid__item:nth-child(even) article.card .card-body {
    background: var(--brand-green-ink) !important;
}

body.public-page .public-content .lizuca-card-grid__item:nth-child(even) article.card :where(h4, h5, p, li, span, small, strong, .card-title, .card-text) {
    color: var(--brand-white) !important;
}

body.public-page .public-content .row.text-center .knowledge-page > section#cum-creste-schimbarea > h4.card-header,
body.public-page .public-content .row.text-center .knowledge-page > section#how-change-grows > h4.card-header,
body.public-page .public-content .row.text-center .knowledge-page > section.home-daily-section > h4.card-header,
body.public-page .public-content .row.text-center .knowledge-page > section.home-model-section > h4.card-header {
    color: var(--brand-navy) !important;
}

body.public-page .public-content .row.text-center .knowledge-page > section#cum-creste-schimbarea > h4.card-header::before,
body.public-page .public-content .row.text-center .knowledge-page > section#cum-creste-schimbarea > h4.card-header::after,
body.public-page .public-content .row.text-center .knowledge-page > section#how-change-grows > h4.card-header::before,
body.public-page .public-content .row.text-center .knowledge-page > section#how-change-grows > h4.card-header::after,
body.public-page .public-content .row.text-center .knowledge-page > section.home-daily-section > h4.card-header::before,
body.public-page .public-content .row.text-center .knowledge-page > section.home-daily-section > h4.card-header::after,
body.public-page .public-content .row.text-center .knowledge-page > section.home-model-section > h4.card-header::before,
body.public-page .public-content .row.text-center .knowledge-page > section.home-model-section > h4.card-header::after {
    background: var(--brand-navy) !important;
}

body.public-page .spay-campaign-impact div {
    background: color-mix(in srgb, var(--brand-green) 24%, var(--brand-white)) !important;
}

body.public-page .spay-campaign-impact div span {
    color: var(--brand-navy) !important;
}

body.public-page .public-contact-section__form button.btn.btn-primary,
body.public-page .public-contact-section__newsletter-form button.btn.btn-primary,
body.public-page .public-contact-section__form button[type="submit"],
body.public-page .public-contact-section__newsletter-form button[type="submit"] {
    background: var(--brand-orange) !important;
    border-color: var(--brand-orange) !important;
    color: var(--brand-navy) !important;
}

body.public-page .public-contact-section__form button.btn.btn-primary:hover,
body.public-page .public-contact-section__newsletter-form button.btn.btn-primary:hover,
body.public-page .public-contact-section__form button[type="submit"]:hover,
body.public-page .public-contact-section__newsletter-form button[type="submit"]:hover {
    background: var(--brand-peach) !important;
    border-color: var(--brand-peach) !important;
    color: var(--brand-navy) !important;
}

body.public-page .event-card__description :where(div, p, span, li) {
    color: var(--brand-navy) !important;
}

/* Blog detail: keep the hero visual, then make the story itself feel like a calm reading page. */
body.public-page .public-content > .blog-detail {
    width: min(calc(100% - (var(--section-pad) * 2)), var(--section-max)) !important;
    max-width: var(--section-max) !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding-top: clamp(24px, 3.2vw, 46px);
    padding-bottom: clamp(30px, 4vw, 58px);
}

body.public-page .blog-detail__topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
    margin: 0 auto clamp(14px, 1.6vw, 22px);
    padding-bottom: 14px;
    border-bottom: 2px solid rgba(45, 54, 72, 0.1);
}

body.public-page .blog-detail__topbar .blog-back {
    margin-top: 0;
}

body.public-page .blog-detail__topbar time {
    flex: 0 0 auto;
    color: var(--brand-slate);
    letter-spacing: 0.03em;
}

body.public-page .blog-detail__tags {
    justify-content: center;
    width: 100%;
    margin: 0 auto clamp(18px, 2vw, 28px);
}

body.public-page .blog-detail__video {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
}

body.public-page .blog-detail .blog-detail__content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: clamp(24px, 3vw, 46px);
    border: 1px solid rgba(45, 54, 72, 0.08);
    border-radius: var(--radius-card);
    background: var(--brand-white);
    box-shadow: 0 18px 44px rgba(45, 54, 72, 0.09);
}

body.public-page .blog-detail .blog-detail__content > :first-child {
    margin-top: 0;
}

body.public-page .blog-detail .blog-detail__content > :last-child {
    margin-bottom: 0;
}

body.public-page .blog-detail .blog-detail__content p,
body.public-page .blog-detail .blog-detail__content li {
    color: var(--brand-navy);
    font-size: clamp(17px, 1.05vw, 19px);
    line-height: 1.72;
}

body.public-page .blog-detail .blog-detail__content p {
    margin: 0 0 1.05em;
}

body.public-page .blog-detail .blog-detail__content a {
    color: var(--brand-blue);
    font-weight: 800;
    text-underline-offset: 0.18em;
}

body.public-page .blog-detail__footer-actions {
    display: flex;
    justify-content: center;
    width: 100%;
    margin: clamp(18px, 2vw, 28px) auto 0;
}

body.public-page .blog-detail__footer-actions .blog-card__link,
body.public-page .blog-detail__topbar .blog-back {
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border-radius: 999px;
    background: var(--brand-mist);
    color: var(--brand-navy) !important;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease;
}

body.public-page .blog-detail__footer-actions .blog-card__link::before,
body.public-page .blog-detail__topbar .blog-back::before {
    content: "\2190";
    margin-right: 8px;
}

body.public-page .blog-detail__footer-actions .blog-card__link:hover,
body.public-page .blog-detail__footer-actions .blog-card__link:focus-visible,
body.public-page .blog-detail__topbar .blog-back:hover,
body.public-page .blog-detail__topbar .blog-back:focus-visible {
    background: var(--brand-orange);
    color: var(--brand-white) !important;
    text-decoration: none;
    transform: translateY(-1px);
}

@media (max-width: 760px) {
    body.public-page .public-content > .blog-detail {
        width: 100% !important;
        padding: 22px 0 34px;
    }

    body.public-page .blog-detail__topbar {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        width: 100%;
        padding-right: var(--section-pad);
        padding-left: var(--section-pad);
    }

    body.public-page .blog-detail__tags {
        justify-content: flex-start;
        width: 100%;
        padding-right: var(--section-pad);
        padding-left: var(--section-pad);
    }

    body.public-page .blog-detail .blog-detail__content {
        width: calc(100% - (var(--section-pad) * 2)) !important;
        padding: 22px 18px;
        border-radius: 18px;
    }

    body.public-page .blog-detail__footer-actions {
        width: 100%;
        padding-right: var(--section-pad);
        padding-left: var(--section-pad);
    }
}

body.public-page .public-content .row.text-center .knowledge-page > section {
    margin-bottom: clamp(16px, 1.7vw, 24px) !important;
}

body.public-page .public-content .row.text-center .knowledge-page > section:last-child {
    margin-bottom: 0 !important;
}

@media (min-width: 901px) {
    body.public-page .public-content .row.text-center .knowledge-page > section {
        padding-top: clamp(20px, 1.8vw, 28px) !important;
        padding-bottom: clamp(12px, 1.25vw, 18px) !important;
    }

    body.public-page .public-content .row.text-center .knowledge-page > section > h4.card-header {
        margin-top: 0 !important;
        margin-bottom: clamp(16px, 1.7vw, 24px) !important;
    }

    body.public-page .public-content .row.text-center .knowledge-page > section:last-child {
        padding-bottom: clamp(10px, 1vw, 16px) !important;
    }
}

body.public-page .public-content:has(.knowledge-page) {
    padding-bottom: 0 !important;
}

body.public-page .public-content:has(.knowledge-page) > .row.text-center {
    margin-bottom: 0 !important;
}

body.public-page .public-content .row.text-center .knowledge-page > section.home-daily-section.knowledge-principles-section:last-child {
    margin-bottom: 0 !important;
    padding-bottom: clamp(10px, 1vw, 16px) !important;
}

body.public-page .public-content .row.text-center .knowledge-page > section.home-model-section {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    padding-right: max(var(--section-pad), calc((100vw - var(--section-max)) / 2)) !important;
    padding-left: max(var(--section-pad), calc((100vw - var(--section-max)) / 2)) !important;
    background: var(--brand-green) !important;
    color: var(--brand-white) !important;
}

body.public-page .public-content .row.text-center .knowledge-page > section.home-model-section > h4.card-header {
    color: var(--brand-white) !important;
}

body.public-page .public-content .row.text-center .knowledge-page > section.home-model-section > h4.card-header::before,
body.public-page .public-content .row.text-center .knowledge-page > section.home-model-section > h4.card-header::after {
    background: var(--brand-white) !important;
}

body.public-page .public-content .row.text-center .knowledge-page > section.home-model-section > .home-model-section__steps {
    width: min(100%, var(--section-max)) !important;
    max-width: var(--section-max) !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

@media (min-width: 901px) {
    body.public-page .public-content .knowledge-page > .patrocle-page-section,
    body.public-page .public-content .knowledge-page > .volunteer-section {
        padding-top: clamp(20px, 1.8vw, 28px) !important;
        padding-bottom: clamp(12px, 1.25vw, 18px) !important;
    }

    body.public-page .public-content .knowledge-page > .patrocle-page-section > .card-header {
        margin-top: 0 !important;
        margin-bottom: clamp(16px, 1.7vw, 24px) !important;
    }

    body.public-page .public-content .knowledge-page > .home-model-section {
        padding-top: clamp(20px, 1.8vw, 28px) !important;
        padding-bottom: clamp(12px, 1.25vw, 18px) !important;
    }
}

.public-page .knowledge-page .home-daily-card h5,
.public-page .knowledge-page .home-daily-card p,
.public-page .knowledge-page .home-daily-card li {
    text-align: left !important;
}

.public-page .knowledge-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(18px, 2.5vw, 34px);
    align-items: stretch;
}

.public-page .knowledge-grid--three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.public-page .knowledge-card {
    position: relative;
    overflow: hidden;
    min-height: 100%;
    padding: clamp(22px, 3vw, 36px);
    border-radius: var(--radius-card);
    border: 1px solid color-mix(in srgb, var(--brand-green) 18%, var(--brand-white));
    background: var(--brand-white);
    box-shadow: var(--shadow-card);
    text-align: left;
}

.public-page .knowledge-card--dark {
    border-color: color-mix(in srgb, var(--brand-navy) 60%, var(--brand-white));
    background: var(--brand-navy);
    color: var(--brand-white);
}


.public-page .knowledge-card--muted {
    background: color-mix(in srgb, var(--brand-green) 16%, var(--brand-white));
    box-shadow: none;
}

.public-page .knowledge-card h5 {
    position: relative;
    margin: 0 0 0.55em;
    color: var(--brand-orange);
    font-family: var(--font-title) !important;
    font-size: var(--type-card-title) !important;
    font-weight: 900;
    line-height: 1.1;
}

.public-page .knowledge-card--dark h5,
.public-page .knowledge-card--dark p,
.public-page .knowledge-card--dark li {
    color: var(--brand-white);
}

.public-page .knowledge-card p,
.public-page .knowledge-card li {
    color: var(--brand-navy);
    font-size: var(--type-body) !important;
    line-height: 1.55;
}

.public-page .knowledge-motto {
    margin-top: 1.1em;
    color: var(--brand-peach) !important;
    font-family: var(--font-hand) !important;
    font-size: clamp(1.55rem, 3vw, 2.6rem) !important;
    line-height: 1.05 !important;
}

.public-page .knowledge-list,
.public-page .knowledge-flow-list {
    margin: 0;
    padding-left: 1.1em;
}

.public-page .knowledge-list li + li {
    margin-top: 0.55em;
}

.public-page .knowledge-flow-list li + li {
    margin-top: 0.55em;
}

.public-page .knowledge-partner-page {
    margin-top: var(--section-gap);
    margin-bottom: var(--section-gap);
}

.public-page .knowledge-volunteer-page {
    margin-top: 0;
}

.public-page .volunteer-path-section .home-model-section__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(22px, 3.5vw, 46px) !important;
}

.public-page .volunteer-path-section .home-model-section__steps li {
    min-height: clamp(108px, 8vw, 136px);
    padding: clamp(20px, 2.4vw, 30px);
}

.public-page .volunteer-path-section .home-model-section__steps li::after {
    display: none !important;
}

@media (max-width: 900px) {
    .public-page .knowledge-grid,
    .public-page .knowledge-grid--three {
        grid-template-columns: 1fr;
    }

    .public-page .knowledge-card {
        padding: clamp(18px, 6vw, 26px);
    }

    .public-page .knowledge-page > .home-model-section {
        width: var(--section-shell);
        max-width: var(--section-shell);
        padding-right: 0;
        padding-left: 0;
    }

    .public-page .home-pillars-grid--three,
    .public-page .home-daily-grid--two {
        grid-template-columns: 1fr;
    }

    .public-page .volunteer-path-section .home-model-section__steps {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .public-page .volunteer-path-section .home-model-section__steps li {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .public-page .knowledge-page > .patrocle-page-section,
    .public-page .knowledge-page > .volunteer-section {
        padding-top: 26px;
        padding-bottom: 24px;
        margin-bottom: 18px !important;
    }

    .public-page .knowledge-page > .patrocle-page-section > .card-header {
        margin-bottom: 18px !important;
    }
}

/* Responsive polish pass: keep the public pages usable around the sticky menu. */
.public-page :where(
    .home-mission-section,
    .projects-section,
    .home-model-section,
    .support-us-section,
    .home-fundraisers-section,
    .home-pet-section,
    .partner-with-us-section,
    .volunteer-section,
    .home-events-section,
    .home-blog-section,
    .partners-section,
    .public-contact-section,
    .patrocle-page-section,
    .knowledge-page > section
) {
    scroll-margin-top: 150px;
}

.public-page .cookie-consent {
    right: auto;
    width: min(100% - 28px, 560px);
    padding: 12px 14px;
    gap: 12px;
    border-radius: 18px;
}

.public-page .cookie-consent__copy strong {
    margin-bottom: 3px;
    font-size: 0.9rem !important;
}

.public-page .cookie-consent__copy p {
    max-width: 360px;
    font-size: 0.72rem !important;
    line-height: 1.28;
}

.public-page .cookie-consent__button {
    min-height: 36px;
    padding: 8px 15px;
    font-size: 0.74rem !important;
}

.public-page .home-page-stack .projects-section__body.card-body .card {
    overflow: hidden;
}

.public-page .home-page-stack .projects-section__body.card-body .card-body {
    padding: clamp(20px, 2vw, 28px) !important;
}

.public-page .home-page-stack .projects-section__body.card-body .card-text p:last-child {
    margin-bottom: 0;
}

@media (min-width: 901px) {
    .public-page .home-page-stack .projects-section__body.card-body .card-img-top {
        height: clamp(260px, 22vw, 330px) !important;
    }

    .public-page .public-stats {
        padding-top: 40px;
        padding-bottom: 48px;
    }
}

@media (max-width: 760px) {
    .public-page {
        --section-gap: 28px;
    }

    .public-page .hero-nav {
        top: 12px;
    }

    .public-page .public-hero-image {
        min-height: clamp(520px, 58vh, 640px) !important;
        padding-bottom: 28px;
    }

    .public-page .hero-copy {
        max-width: 92%;
    }

    .public-page .hero-copy h1 {
        font-size: clamp(1.75rem, 7.4vw, 2.2rem) !important;
        line-height: 1.12 !important;
    }

    .public-page .hero-copy p {
        font-size: 0.92rem !important;
        line-height: 1.45 !important;
    }

    .public-page .public-stats {
        padding: 20px 8px 24px;
        background-size: 420vw 100%;
    }

    .public-page .stats-grid {
        gap: 4px;
    }

    .public-page .stat-item {
        gap: 3px;
    }

    .public-page .stat-item strong {
        font-size: clamp(19px, 6vw, 26px) !important;
        line-height: 0.95;
    }

    .public-page .stat-item span {
        font-size: clamp(8px, 2.35vw, 9.5px) !important;
        line-height: 1.05;
        white-space: normal;
    }

    .public-page .public-content {
        padding-top: 20px;
    }

    .public-page .public-content .card-header,
    .public-page .public-content h4.card-header,
    .public-page .public-content h4.pt-md-4.card-header {
        margin-top: 24px !important;
        margin-bottom: 14px !important;
        gap: 10px;
        font-size: clamp(1.65rem, 8vw, 2.15rem) !important;
        line-height: 1.05;
    }

    .public-page .public-content .card-header::before,
    .public-page .public-content .card-header::after,
    .public-page .public-content h4.card-header::before,
    .public-page .public-content h4.card-header::after {
        flex-basis: 36px;
        height: 5px;
    }

    .public-page .home-mission-section__copy,
    .public-page .home-mission-section__principles,
    .public-page .knowledge-card {
        padding: 20px !important;
    }

    .public-page .home-page-stack .projects-section {
        padding-top: 0 !important;
    }

    .public-page .home-page-stack .projects-section__body.card-body {
        gap: 18px;
        width: min(100% - 30px, var(--section-max)) !important;
        margin-right: auto !important;
        margin-left: auto !important;
        padding-top: 8px !important;
    }

    .public-page .home-page-stack .projects-section__body.card-body .card-img-top {
        height: clamp(170px, 47vw, 210px) !important;
        min-height: 0 !important;
    }

    .public-page .home-page-stack .projects-section__body.card-body .card-body {
        min-height: 0 !important;
        padding: 18px !important;
    }

    .public-page .home-page-stack .projects-section__body.card-body .card-title {
        margin-bottom: 0.45rem;
    }

    .public-page .home-page-stack .projects-section__body.card-body .card-text {
        font-size: 0.95rem !important;
        line-height: 1.42;
    }

    .public-page .home-page-stack .projects-section__body.card-body .btn {
        align-self: flex-start;
        min-height: 40px;
        padding: 10px 18px;
    }

    .public-page #donation-support {
        padding-top: 0 !important;
    }

    .public-page #donation-support .support-donation-layout {
        gap: 16px;
    }

    .public-page .cookie-consent {
        right: 10px;
        bottom: 10px;
        left: 10px;
        width: auto;
        padding: 12px;
        gap: 10px;
        border-width: 1px;
        border-radius: 16px;
    }

    .public-page .cookie-consent__copy strong {
        font-size: 0.82rem !important;
    }

    .public-page .cookie-consent__copy p {
        font-size: 0.68rem !important;
        line-height: 1.28;
    }

    .public-page .cookie-consent__actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .public-page .cookie-consent__button {
        min-height: 38px;
        padding: 9px 8px;
        font-size: 0.72rem !important;
    }
}

/* Public contrast guardrails: keep text readable when cards sit on dark/green bands. */
.public-page :where(.public-content, .knowledge-page) :where(
    .card,
    .knowledge-card,
    .spay-reproduction-card,
    .spay-campaign-card,
    .blog-card,
    .event-card,
    .pet-filter-card,
    .fundraiser-card
):not(.knowledge-card--dark):not(.partner-with-us-card) {
    color: var(--brand-navy) !important;
}

.public-page :where(.public-content, .knowledge-page) :where(
    .card,
    .knowledge-card,
    .spay-reproduction-card,
    .spay-campaign-card,
    .blog-card,
    .event-card,
    .pet-filter-card,
    .fundraiser-card
):not(.knowledge-card--dark):not(.partner-with-us-card) :where(p, li, span, small, strong, label, dt, dd, .card-text) {
    color: var(--brand-navy) !important;
}

.public-page :where(.knowledge-card:not(.knowledge-card--dark), .spay-reproduction-card, .spay-campaign-card) :where(h5, .card-title) {
    color: var(--brand-navy) !important;
}

.public-page :where(
    .knowledge-card--dark,
    .partner-with-us-section,
    .partner-with-us-card,
    .partner-with-us-cta,
    .public-content .partner-with-us-section
),
.public-page :where(
    .knowledge-card--dark,
    .partner-with-us-section,
    .partner-with-us-card,
    .partner-with-us-cta,
    .public-content .partner-with-us-section
) :where(p, li, span, small, strong, label, .card-text) {
    color: var(--brand-white) !important;
}

.public-page :where(.knowledge-card--dark, .partner-with-us-section, .partner-with-us-card) :where(h3, h4, h5, .card-title) {
    color: var(--brand-peach) !important;
}

.public-page .partner-with-us-section :where(.card-header, .card-header span) {
    color: var(--brand-white) !important;
}

.public-page .partner-with-us-section .card-header::before,
.public-page .partner-with-us-section .card-header::after {
    background: var(--brand-white) !important;
}

.public-page .lizuca-activities-section .lizuca-card-grid__item:nth-child(even) .lizuca-card,
.public-page .lizuca-activities-section .lizuca-card-grid__item:nth-child(even) .lizuca-card :where(p, li, span, small, strong, .card-text) {
    color: var(--brand-white) !important;
}

.public-page .lizuca-activities-section .lizuca-card-grid__item:nth-child(even) .lizuca-card :where(h5, .card-title) {
    color: var(--brand-white) !important;
}

.public-page .blog-filter.is-active,
.public-page .spay-donation-card__amounts button.is-selected {
    color: var(--brand-navy) !important;
}

/* Keep hash links below the floating menu and colored bands visually connected. */
.public-page .section-anchor {
    position: relative;
    top: -150px;
    display: block;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.public-page :where(
    .public-stats,
    .home-events-section,
    .home-fundraisers-section,
    .partner-with-us-section,
    .partners-section,
    .fundraiser-section,
    .fundraiser-related-section,
    .project-tagged-content-section,
    .events-section,
    .project-quote-section
) + :where(
    .public-stats,
    .home-events-section,
    .home-fundraisers-section,
    .partner-with-us-section,
    .partners-section,
    .fundraiser-section,
    .fundraiser-related-section,
    .project-tagged-content-section,
    .events-section,
    .project-quote-section
) {
    margin-top: 0 !important;
}

.public-page .home-page-stack > :where(
    .home-events-section,
    .home-fundraisers-section,
    .partner-with-us-section,
    .partners-section
) {
    margin-bottom: 0 !important;
}

.public-page .public-content :where(
    .events-section,
    .project-tagged-content-section,
    .fundraiser-section,
    .fundraiser-related-section,
    .partners-section
) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* Mobile overflow guardrails for carousel strips and the current footer markup. */
@media (max-width: 760px) {
    .public-page {
        overflow-x: hidden;
    }

    .public-page :where(.home-events-section, .home-fundraisers-section, .home-pet-section) {
        overflow-x: hidden !important;
    }

    .public-page :where(.home-events-carousel, .home-fundraisers-carousel, .pet-carousel) {
        max-width: 100% !important;
        overscroll-behavior-x: contain;
    }

    .public-page .brand-footer__top,
    .public-page .brand-footer__nav,
    .public-page .brand-footer__newsletter,
    .public-page .brand-footer__bottom {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        min-width: 0 !important;
    }

    .public-page .brand-footer__nav {
        gap: 20px;
    }

    .public-page .brand-footer__nav section,
    .public-page .brand-footer__identity,
    .public-page .brand-footer__bottom,
    .public-page .brand-footer__socials {
        min-width: 0;
        justify-items: start;
        justify-content: start;
        text-align: left;
    }

    .public-page .brand-footer__nav a,
    .public-page .brand-footer__bottom p {
        overflow-wrap: anywhere;
    }

    .public-page :where(.home-events-section, .home-fundraisers-section, .home-pet-section, .brand-footer) {
        contain: paint;
    }

    .public-page :where(.home-events-carousel, .home-fundraisers-carousel) {
        box-sizing: border-box;
        width: min(100%, calc(100vw - 76px)) !important;
        max-width: calc(100vw - 76px) !important;
        min-width: 0 !important;
        margin-right: auto !important;
        margin-left: auto !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
        overflow-x: auto !important;
        overflow-y: visible;
    }

    .public-page :where(.home-events-carousel, .home-fundraisers-carousel) > :where(.home-event-card, .home-fundraiser-card) {
        box-sizing: border-box;
        flex: 0 0 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
    }

    .public-page :where(.home-events-section, .home-fundraisers-section) .pet-carousel-controls {
        box-sizing: border-box;
        width: min(100%, calc(100vw - 18px)) !important;
        max-width: calc(100vw - 18px) !important;
        margin-right: auto !important;
        margin-left: auto !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

/* True final Lizuca page rhythm override. Keep section seams closed and inner spacing even. */
.public-page:has(.lizuca-home-intro) :where(
    .lizuca-home-intro,
    .lizuca-activities-section,
    .project-donation-section,
    .lizuca-help-section
) {
    padding-top: clamp(28px, 3.2vw, 42px) !important;
    padding-bottom: clamp(28px, 3.2vw, 42px) !important;
}

.public-page:has(.lizuca-home-intro) :where(
    .lizuca-home-intro,
    .lizuca-activities-section,
    .project-donation-section,
    .project-quote-section,
    .lizuca-help-section,
    .project-tagged-content-section
) {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.public-page:has(.lizuca-home-intro) :where(
    .lizuca-home-intro,
    .lizuca-activities-section,
    .project-donation-section,
    .lizuca-help-section
) > .card-header,
.public-page:has(.lizuca-home-intro) :where(
    .lizuca-home-intro,
    .lizuca-activities-section
) .patrocle-section-copy > .card-header,
.public-page:has(.lizuca-home-intro) .project-donation-section > .card-header {
    margin-top: 0 !important;
    margin-bottom: clamp(14px, 1.8vw, 22px) !important;
}

.public-page:has(.lizuca-home-intro) .project-donation-section::before,
.public-page:has(.lizuca-home-intro) .lizuca-home-intro::before,
.public-page:has(.lizuca-home-intro) .lizuca-help-section::before {
    top: 0 !important;
    bottom: 0 !important;
}

.public-page:has(.lizuca-home-intro) .project-donation-section__intro {
    margin-bottom: clamp(18px, 2vw, 28px) !important;
}

.public-page:has(.lizuca-home-intro) .lizuca-card-grid,
.public-page:has(.lizuca-home-intro) .lizuca-help-grid {
    margin-top: 0 !important;
}

.public-page:has(.lizuca-home-intro) .project-quote-section {
    padding-top: clamp(54px, 5.2vw, 76px) !important;
    padding-bottom: clamp(54px, 5.2vw, 76px) !important;
}

.public-page:has(.lizuca-home-intro) .project-tagged-content-section {
    padding-top: clamp(38px, 4.4vw, 62px) !important;
    padding-bottom: clamp(38px, 4.4vw, 62px) !important;
}

@media (max-width: 760px) {
    .public-page:has(.lizuca-home-intro) :where(
        .lizuca-home-intro,
        .lizuca-activities-section,
        .project-donation-section,
        .lizuca-help-section
    ) {
        padding-top: 26px !important;
        padding-bottom: 26px !important;
    }

    .public-page:has(.lizuca-home-intro) .project-quote-section {
        padding-top: 46px !important;
        padding-bottom: 46px !important;
    }

    .public-page:has(.lizuca-home-intro) .project-tagged-content-section {
        padding-top: 34px !important;
        padding-bottom: 38px !important;
    }
}

.public-page:has(.lizuca-home-intro) #donation-support.project-donation-section {
    padding-top: clamp(28px, 3.2vw, 42px) !important;
    padding-bottom: clamp(28px, 3.2vw, 42px) !important;
}

.public-page:has(.lizuca-home-intro) .lizuca-card-section + #donation-support.project-donation-section > .card-header,
.public-page:has(.lizuca-home-intro) .lizuca-help-section > .card-header {
    margin-top: 0 !important;
}

@media (max-width: 760px) {
    .public-page:has(.lizuca-home-intro) #donation-support.project-donation-section {
        padding-top: 26px !important;
        padding-bottom: 26px !important;
    }
}

/* The project quote should connect directly to the following help section. */
.public-page:has(.lizuca-home-intro) .project-quote-section + .lizuca-help-section {
    margin-top: 0 !important;
}

.public-page:has(.lizuca-home-intro) .project-quote-section {
    margin-bottom: 0 !important;
}

.public-page:has(.lizuca-home-intro) .project-donation-section + .project-quote-section {
    margin-bottom: 0 !important;
}

/* Lizuca page: keep the help cards connected to the following events/blog band. */
.public-page:has(.lizuca-home-intro) .lizuca-help-section {
    margin-bottom: 0 !important;
}

.public-page:has(.lizuca-home-intro) .lizuca-help-section + .project-tagged-content-section {
    margin-top: 0 !important;
    padding-top: clamp(20px, 2.2vw, 32px) !important;
}

@media (max-width: 760px) {
    .public-page:has(.lizuca-home-intro) .lizuca-help-section + .project-tagged-content-section {
        padding-top: 20px !important;
    }
}

/* Contact should not sit flush against the footer. */
.public-page .public-contact-section + .brand-footer {
    margin-top: clamp(28px, 3vw, 42px) !important;
}

@media (max-width: 760px) {
    .public-page .public-contact-section + .brand-footer {
        margin-top: 26px !important;
    }
}

/* Home pages: let the last section meet the footer without a white spacer. */
.public-page .public-content:has(.home-page-stack) {
    padding-bottom: 0 !important;
}

/* Patrocle page: partners should connect directly to events/blog and footer. */
.public-page:has(.patrocle-animal-section) .public-content {
    gap: 0 !important;
    padding-bottom: 0 !important;
}

.public-page:has(.patrocle-animal-section) .public-contact-section {
    display: none !important;
}

.public-page:has(.patrocle-animal-section) .project-tagged-content-section {
    margin-bottom: 0 !important;
}

.public-page:has(.patrocle-animal-section) .project-tagged-content-section + .partners-section,
.public-page:has(.patrocle-animal-section) .partners-section {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.public-page:has(.patrocle-animal-section) .partners-section + .brand-footer,
.public-page:has(.patrocle-animal-section) .public-content + .brand-footer,
.public-page:has(.patrocle-animal-section) .public-contact-section + .brand-footer {
    margin-top: 0 !important;
}

/* Standalone partner page keeps the dark partnership band even when it is the first content section. */
.public-page .public-content > .row.text-center > .partner-with-us-section:first-child,
.public-page .public-content > .row.text-center > .knowledge-partner-page:first-child {
    background: var(--brand-navy) !important;
    color: var(--brand-white) !important;
}

.public-page .public-content > .row.text-center > .partner-with-us-section:first-child :where(p, li, span, small, strong, label, .card-text),
.public-page .public-content > .row.text-center > .knowledge-partner-page:first-child :where(p, li, span, small, strong, label, .card-text) {
    color: var(--brand-white) !important;
}

.public-page .public-content > .row.text-center > .partner-with-us-section:first-child .partner-with-us-card h5,
.public-page .public-content > .row.text-center > .knowledge-partner-page:first-child .partner-with-us-card h5 {
    color: var(--brand-peach) !important;
}

/* Knowledge pages: child sections must stay inside the menu-width shell. */
.public-page .knowledge-page > .patrocle-page-section,
.public-page .knowledge-page > .knowledge-split-section,
.public-page .knowledge-page > .volunteer-section {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.public-page .knowledge-page > .patrocle-page-section .knowledge-grid,
.public-page .knowledge-page > .knowledge-split-section .knowledge-grid {
    width: 100% !important;
    max-width: 100% !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.public-page .knowledge-page > .patrocle-page-section > .card-header,
.public-page .knowledge-page > .knowledge-split-section > .card-header {
    position: relative !important;
    left: 50% !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    transform: translateX(-50%) !important;
}

/* Event/blog cards sit on white cards even inside dark section bands. */
.public-page .project-tagged-content-section .home-event-card,
.public-page .home-events-section .home-event-card,
.public-page .events-section .event-card {
    color: var(--brand-navy) !important;
}

.public-page .project-tagged-content-section .home-event-card__body,
.public-page .home-events-section .home-event-card__body,
.public-page .events-section .event-card__body {
    background: var(--brand-white);
    color: var(--brand-navy) !important;
}

.public-page .project-tagged-content-section .home-event-card :where(h5, p),
.public-page .home-events-section .home-event-card :where(h5, p),
.public-page .events-section .event-card :where(h3, p, .event-card__excerpt) {
    color: var(--brand-navy) !important;
}

.public-page .project-tagged-content-section .home-event-card :where(time, .project-tagged-card__eyebrow),
.public-page .home-events-section .home-event-card time,
.public-page .events-section .event-card :where(time, .event-card__date) {
    color: var(--brand-slate) !important;
}

/* Final guardrail: direct section headers stay full-viewport on wide screens. */
.public-page .public-content :where(
    section,
    .card,
    .patrocle-page-section,
    .lizuca-card-section,
    .project-donation-section,
    .home-pet-section,
    .volunteer-section,
    .partner-with-us-section,
    .public-contact-section,
    .patrocle-section-copy
) > h4.card-header,
.public-page .public-content :where(.blog-heading, .partners-section__intro) > h4.card-header,
.public-page .knowledge-page :where(section, .patrocle-page-section, .knowledge-split-section, .volunteer-section) > h4.card-header {
    position: relative !important;
    left: auto !important;
    width: 100vw !important;
    max-width: 100vw !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    transform: none !important;
}

/* Extra-wide guardrail: keep section titles full-width centered, but don't let bars detach on wide screens. */
.public-page :where(
    .card-header,
    h4.card-header,
    h4.pt-md-4.card-header,
    .section-header h2,
    .blog-heading h2,
    .blog-detail h2,
    .home-events-section__heading h4,
    .projects-section__heading h2,
    .partners-section__intro h4,
    .stats-section__heading h2,
    .team-section h2,
    .pet-group-section__header h3
)::before,
.public-page :where(
    .card-header,
    h4.card-header,
    h4.pt-md-4.card-header,
    .section-header h2,
    .blog-heading h2,
    .blog-detail h2,
    .home-events-section__heading h4,
    .projects-section__heading h2,
    .partners-section__intro h4,
    .stats-section__heading h2,
    .team-section h2,
    .pet-group-section__header h3
)::after {
    flex: 1 1 clamp(90px, 22vw, 420px) !important;
    max-width: 420px !important;
}

@media (max-width: 760px) {
    .public-page :where(
        .card-header,
        h4.card-header,
        h4.pt-md-4.card-header,
        .section-header h2,
        .blog-heading h2,
        .blog-detail h2,
        .home-events-section__heading h4,
        .projects-section__heading h2,
        .partners-section__intro h4,
        .stats-section__heading h2,
        .team-section h2,
        .pet-group-section__header h3
    ) {
        display: flex !important;
        gap: 8px !important;
        text-align: center !important;
        font-size: clamp(23px, 6.2vw, 30px) !important;
    }

    .public-page:has(.patrocle-animal-section) .public-content {
        padding-bottom: 0 !important;
    }

    .public-page:has(.patrocle-animal-section) .public-contact-section {
        display: none !important;
        margin-top: 0 !important;
    }
}

/* Mobile section headers keep the same side-line treatment as desktop. */
@media (max-width: 760px) {
    body.public-page .public-content h4.card-header,
    body.public-page .public-content .card-header,
    body.public-page h4.card-header,
    body.public-page .section-header h2,
    body.public-page .blog-heading h2,
    body.public-page .blog-detail h2,
    body.public-page .home-events-section__heading h4,
    body.public-page .projects-section__heading h2,
    body.public-page .partners-section__intro h4,
    body.public-page .stats-section__heading h2,
    body.public-page .team-section h2,
    body.public-page .pet-group-section__header h3 {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-direction: row !important;
        gap: 8px !important;
        font-size: clamp(22px, 5.4vw, 28px) !important;
        line-height: 1.08 !important;
        text-align: center !important;
    }
}

/* Final about-page alignment: homepage-style green band, content aligned to the menu. */
body.public-page .public-content .row.text-center .knowledge-page > section.home-daily-section.knowledge-principles-section {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    padding-right: max(var(--section-pad), calc((100vw - var(--section-max)) / 2)) !important;
    padding-left: max(var(--section-pad), calc((100vw - var(--section-max)) / 2)) !important;
}

body.public-page .public-content .row.text-center .knowledge-page > section.home-daily-section.knowledge-principles-section > .home-daily-grid {
    width: min(100%, var(--section-max)) !important;
    max-width: var(--section-max) !important;
    margin-right: auto !important;
    margin-left: auto !important;
}

/* True final contrast fixes for section headers that sit on green bands. */
body.public-page .public-content .row.text-center .knowledge-page > section.patrocle-page-section.home-daily-section > h4.card-header,
body.public-page .public-content .row.text-center .knowledge-page > section.patrocle-page-section.home-model-section > h4.card-header,
body.public-page .public-content .row.text-center .knowledge-page > section#cum-creste-schimbarea > h4.card-header,
body.public-page .public-content .row.text-center .knowledge-page > section#how-change-grows > h4.card-header {
    color: var(--brand-navy) !important;
}

body.public-page .public-content .row.text-center .knowledge-page > section.patrocle-page-section.home-daily-section > h4.card-header::before,
body.public-page .public-content .row.text-center .knowledge-page > section.patrocle-page-section.home-daily-section > h4.card-header::after,
body.public-page .public-content .row.text-center .knowledge-page > section.patrocle-page-section.home-model-section > h4.card-header::before,
body.public-page .public-content .row.text-center .knowledge-page > section.patrocle-page-section.home-model-section > h4.card-header::after,
body.public-page .public-content .row.text-center .knowledge-page > section#cum-creste-schimbarea > h4.card-header::before,
body.public-page .public-content .row.text-center .knowledge-page > section#cum-creste-schimbarea > h4.card-header::after,
body.public-page .public-content .row.text-center .knowledge-page > section#how-change-grows > h4.card-header::before,
body.public-page .public-content .row.text-center .knowledge-page > section#how-change-grows > h4.card-header::after {
    background: var(--brand-navy) !important;
}

/* Actual end-of-file bar rule: these lines must touch the viewport edges. */
body.public-page .public-content h4.card-header,
body.public-page .public-content .card-header,
body.public-page .public-content h4.pt-md-4.card-header,
body.public-page .public-content .section-header h2,
body.public-page .public-content .blog-heading h2,
body.public-page .public-content .blog-heading h4,
body.public-page .public-content .blog-detail h2,
body.public-page .public-content .home-events-section__heading h4,
body.public-page .public-content .projects-section__heading h2,
body.public-page .public-content .partners-section__intro h4,
body.public-page .public-content .stats-section__heading h2,
body.public-page .public-content .team-section h2,
body.public-page .public-content .pet-group-section__header h3 {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

body.public-page .public-content h4.card-header::before,
body.public-page .public-content h4.card-header::after,
body.public-page .public-content .card-header::before,
body.public-page .public-content .card-header::after,
body.public-page .public-content h4.pt-md-4.card-header::before,
body.public-page .public-content h4.pt-md-4.card-header::after,
body.public-page .public-content .section-header h2::before,
body.public-page .public-content .section-header h2::after,
body.public-page .public-content .blog-heading h2::before,
body.public-page .public-content .blog-heading h2::after,
body.public-page .public-content .blog-heading h4::before,
body.public-page .public-content .blog-heading h4::after,
body.public-page .public-content .blog-detail h2::before,
body.public-page .public-content .blog-detail h2::after,
body.public-page .public-content .home-events-section__heading h4::before,
body.public-page .public-content .home-events-section__heading h4::after,
body.public-page .public-content .projects-section__heading h2::before,
body.public-page .public-content .projects-section__heading h2::after,
body.public-page .public-content .partners-section__intro h4::before,
body.public-page .public-content .partners-section__intro h4::after,
body.public-page .public-content .stats-section__heading h2::before,
body.public-page .public-content .stats-section__heading h2::after,
body.public-page .public-content .team-section h2::before,
body.public-page .public-content .team-section h2::after,
body.public-page .public-content .pet-group-section__header h3::before,
body.public-page .public-content .pet-group-section__header h3::after {
    flex: 1 1 auto !important;
    max-width: none !important;
}

body.public-page .public-content .project-tagged-content-section .home-events-section__heading > h4,
body.public-page .public-content .home-events-section .home-events-section__heading > h4,
body.public-page .public-content .home-fundraisers-section .home-events-section__heading > h4,
body.public-page .public-contact-section > h4.card-header {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

body.public-page .public-content .project-tagged-content-section .home-events-section__heading > h4::before,
body.public-page .public-content .project-tagged-content-section .home-events-section__heading > h4::after,
body.public-page .public-content .home-events-section .home-events-section__heading > h4::before,
body.public-page .public-content .home-events-section .home-events-section__heading > h4::after,
body.public-page .public-content .home-fundraisers-section .home-events-section__heading > h4::before,
body.public-page .public-content .home-fundraisers-section .home-events-section__heading > h4::after,
body.public-page .public-contact-section > h4.card-header::before,
body.public-page .public-contact-section > h4.card-header::after {
    flex: 1 1 auto !important;
    max-width: none !important;
}

/* Final public section-header rule.
   Keep the title row itself full viewport width and let both bars fill all
   remaining space around the title. */
body.public-page .public-content h4.card-header,
body.public-page .public-content .card-header,
body.public-page .public-content h4.pt-md-4.card-header,
body.public-page .public-content .section-header h2,
body.public-page .public-content .blog-heading h2,
body.public-page .public-content .blog-heading h4,
body.public-page .public-content .blog-detail h2,
body.public-page .public-content .home-events-section__heading h4,
body.public-page .public-content .projects-section__heading h2,
body.public-page .public-content .partners-section__intro h4,
body.public-page .public-content .stats-section__heading h2,
body.public-page .public-content .team-section h2,
body.public-page .public-content .pet-group-section__header h3,
body.public-page .public-content .project-tagged-content-section .home-events-section__heading > h4,
body.public-page .public-content .home-events-section .home-events-section__heading > h4,
body.public-page .public-content .home-fundraisers-section .home-events-section__heading > h4,
body.public-page .public-contact-section > h4.card-header {
    box-sizing: border-box !important;
    width: 100vw !important;
    min-width: 100vw !important;
    max-width: 100vw !important;
    margin-right: calc(50% - 50vw) !important;
    margin-left: calc(50% - 50vw) !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

body.public-page .public-content h4.card-header::before,
body.public-page .public-content h4.card-header::after,
body.public-page .public-content .card-header::before,
body.public-page .public-content .card-header::after,
body.public-page .public-content h4.pt-md-4.card-header::before,
body.public-page .public-content h4.pt-md-4.card-header::after,
body.public-page .public-content .section-header h2::before,
body.public-page .public-content .section-header h2::after,
body.public-page .public-content .blog-heading h2::before,
body.public-page .public-content .blog-heading h2::after,
body.public-page .public-content .blog-heading h4::before,
body.public-page .public-content .blog-heading h4::after,
body.public-page .public-content .blog-detail h2::before,
body.public-page .public-content .blog-detail h2::after,
body.public-page .public-content .home-events-section__heading h4::before,
body.public-page .public-content .home-events-section__heading h4::after,
body.public-page .public-content .projects-section__heading h2::before,
body.public-page .public-content .projects-section__heading h2::after,
body.public-page .public-content .partners-section__intro h4::before,
body.public-page .public-content .partners-section__intro h4::after,
body.public-page .public-content .stats-section__heading h2::before,
body.public-page .public-content .stats-section__heading h2::after,
body.public-page .public-content .team-section h2::before,
body.public-page .public-content .team-section h2::after,
body.public-page .public-content .pet-group-section__header h3::before,
body.public-page .public-content .pet-group-section__header h3::after,
body.public-page .public-content .project-tagged-content-section .home-events-section__heading > h4::before,
body.public-page .public-content .project-tagged-content-section .home-events-section__heading > h4::after,
body.public-page .public-content .home-events-section .home-events-section__heading > h4::before,
body.public-page .public-content .home-events-section .home-events-section__heading > h4::after,
body.public-page .public-content .home-fundraisers-section .home-events-section__heading > h4::before,
body.public-page .public-content .home-fundraisers-section .home-events-section__heading > h4::after,
body.public-page .public-contact-section > h4.card-header::before,
body.public-page .public-contact-section > h4.card-header::after {
    flex: 1 1 auto !important;
    min-width: 24px !important;
    max-width: none !important;
}

@media (min-width: 1800px) {
    body.public-page .public-content h4.card-header,
    body.public-page .public-content .card-header,
    body.public-page .public-content h4.pt-md-4.card-header,
    body.public-page .public-content .section-header h2,
    body.public-page .public-content .blog-heading h2,
    body.public-page .public-content .blog-heading h4,
    body.public-page .public-content .blog-detail h2,
    body.public-page .public-content .home-events-section__heading h4,
    body.public-page .public-content .projects-section__heading h2,
    body.public-page .public-content .partners-section__intro h4,
    body.public-page .public-content .stats-section__heading h2,
    body.public-page .public-content .team-section h2,
    body.public-page .public-content .pet-group-section__header h3,
    body.public-page .public-content .project-tagged-content-section .home-events-section__heading > h4,
    body.public-page .public-content .home-events-section .home-events-section__heading > h4,
    body.public-page .public-content .home-fundraisers-section .home-events-section__heading > h4,
    body.public-page .public-contact-section > h4.card-header {
        gap: clamp(18px, 2.2vw, 52px) !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

/* Donate hub polish. */
body.public-page .public-content.donate-page .donate-page__intro > h4.card-header {
    font-size: clamp(38px, 4.2vw, 68px) !important;
    line-height: 1.06 !important;
}

body.public-page .donate-page__grid {
    align-items: stretch !important;
}

body.public-page .donate-page__panel,
body.public-page .donate-page__bank-card {
    display: flex !important;
    flex-direction: column !important;
    width: min(100%, 860px) !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: clamp(20px, 2.4vw, 34px) !important;
    border: 1px solid rgba(45, 54, 72, 0.12) !important;
    border-radius: 28px !important;
    background: var(--brand-white) url("/boot/img/donation-bank-card.94b931b07c2a.svg") center / cover no-repeat !important;
    box-shadow:
        0 20px 52px rgba(45, 54, 72, 0.14),
        0 0 0 6px rgba(255, 255, 255, 0.62) !important;
}

body.public-page .donate-page__panel h5,
body.public-page .donate-page__bank-card h5 {
    font-size: clamp(30px, 3vw, 46px) !important;
}

body.public-page .donate-page__bank-card {
    position: static !important;
}

body.public-page .donate-page__bank-note {
    margin-top: clamp(12px, 1.6vw, 18px) !important;
}

body.public-page .donate-page__secondary-link {
    align-self: flex-start;
}

body.public-page .donate-options-form {
    gap: 12px !important;
    margin-top: clamp(8px, 1.2vw, 16px) !important;
}

body.public-page .donate-options-form label,
body.public-page .donate-options-form__amounts {
    gap: 6px !important;
}

body.public-page .donate-options-form__frequency {
    gap: 8px !important;
}

body.public-page .donate-page__bank-card .bank-card__accounts {
    gap: 8px !important;
}

body.public-page .donate-page__bank-card .bank-card__accounts p {
    margin-bottom: 0 !important;
}

body.public-page .donate-page__secondary-link {
    margin-top: clamp(12px, 1.6vw, 18px) !important;
}

@media (max-width: 980px) {
    body.public-page .donate-page__panel,
    body.public-page .donate-page__bank-card {
        min-height: 0 !important;
    }
}

/* Compact Patrocle donation prompt near the top of the project page. */
body.public-page .patrocle-quick-donate-section {
    width: min(var(--section-max), calc(100% - (var(--section-x) * 2)));
    margin: clamp(8px, 1.2vw, 18px) auto clamp(28px, 4vw, 54px);
}

body.public-page .spay-neuter-section .patrocle-quick-donate-section {
    width: 100%;
    min-width: 0;
    margin: 0;
}

body.public-page .patrocle-quick-donate {
    position: relative;
    width: min(100%, 520px);
    margin: 0 auto;
    padding: 18px;
    border-radius: 28px;
    background:
        radial-gradient(circle at 86% -20%, rgba(144, 186, 131, 0.58), transparent 34%),
        linear-gradient(145deg, #2e6f35 0%, #174b25 58%, #12381e 100%);
    box-shadow:
        0 22px 48px rgba(21, 67, 34, 0.28),
        inset 0 0 0 1px rgba(255, 255, 255, 0.10);
    color: var(--brand-white);
    overflow: hidden;
}

body.public-page .spay-neuter-section .patrocle-quick-donate {
    width: min(100%, 520px);
    min-height: 0;
    height: auto;
    padding: 20px;
}

body.public-page .spay-neuter-section .patrocle-quick-donate__form {
    gap: 12px;
}

body.public-page .spay-neuter-section .patrocle-quick-donate__frequency,
body.public-page .spay-neuter-section .patrocle-quick-donate__amounts {
    gap: 9px;
}

body.public-page .spay-neuter-section .patrocle-quick-donate__frequency span,
body.public-page .spay-neuter-section .patrocle-quick-donate__amounts button {
    min-height: 44px;
    font-size: 14px;
    border-radius: 10px;
}

body.public-page .spay-neuter-section .patrocle-quick-donate__submit {
    min-height: 48px;
    font-size: 15px;
}

body.public-page .patrocle-quick-donate::before {
    content: "";
    position: absolute;
    right: -16px;
    top: -24px;
    width: 140px;
    height: 100px;
    border: 3px solid rgba(255, 255, 255, 0.42);
    border-radius: 54% 46% 44% 56%;
    transform: rotate(-18deg);
    opacity: 0.35;
}

body.public-page .patrocle-quick-donate__browser {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    margin-bottom: 12px;
    padding: 8px 14px;
    border-radius: 12px;
    background: rgba(10, 33, 18, 0.86);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

body.public-page .patrocle-quick-donate__browser span {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--brand-orange);
    box-shadow: 14px 0 0 rgba(144, 186, 131, 0.75), 28px 0 0 rgba(255, 255, 255, 0.36);
}

body.public-page .patrocle-quick-donate__browser p {
    margin: 0 0 0 30px;
    color: rgba(255, 255, 255, 0.70);
    font-family: var(--font-label);
    font-size: 12px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

body.public-page .patrocle-quick-donate__form {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin: 0;
}

body.public-page .patrocle-quick-donate__frequency {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    border: 0;
}

body.public-page .patrocle-quick-donate__frequency label {
    margin: 0;
}

body.public-page .patrocle-quick-donate__frequency input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

body.public-page .patrocle-quick-donate__frequency span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(51, 112, 51, 0.9);
    color: rgba(255, 255, 255, 0.88);
    font-family: var(--font-label);
    font-size: 15px;
    font-weight: 900;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

body.public-page .patrocle-quick-donate__frequency input:checked + span {
    background: var(--brand-orange);
    color: var(--brand-white);
    box-shadow: 0 10px 22px rgba(238, 149, 66, 0.30);
}

body.public-page .patrocle-quick-donate__frequency span:hover,
body.public-page .patrocle-quick-donate__frequency input:focus-visible + span {
    transform: translateY(-1px);
}

body.public-page .patrocle-quick-donate__amounts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

body.public-page .patrocle-quick-donate__amounts button {
    min-height: 48px;
    border: 0;
    border-radius: 11px;
    background: rgba(10, 34, 17, 0.92);
    color: rgba(255, 255, 255, 0.82);
    font-family: var(--font-label);
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: background-color 0.18s ease, color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

body.public-page .patrocle-quick-donate__amounts button:hover,
body.public-page .patrocle-quick-donate__amounts button:focus-visible {
    background: rgba(18, 56, 30, 1);
    color: var(--brand-white);
    transform: translateY(-1px);
}

body.public-page .patrocle-quick-donate__amounts button.is-selected {
    background: rgba(246, 252, 242, 0.95);
    color: #173d20;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

body.public-page .patrocle-quick-donate__submit {
    min-height: 50px;
    border: 0;
    border-radius: 999px;
    background: var(--brand-orange);
    color: var(--brand-white);
    font-family: var(--font-label);
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(238, 149, 66, 0.30);
    transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

body.public-page .patrocle-quick-donate__submit:hover,
body.public-page .patrocle-quick-donate__submit:focus-visible {
    background: var(--brand-coral);
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(255, 86, 120, 0.28);
}

@media (min-width: 992px) {
    body.public-page > .patrocle-quick-donate-section {
        margin-top: clamp(-10px, -0.6vw, -4px);
    }
}

@media (max-width: 560px) {
    body.public-page .patrocle-quick-donate {
        padding: 14px;
        border-radius: 22px;
    }

    body.public-page .patrocle-quick-donate__browser p {
        max-width: 230px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    body.public-page .patrocle-quick-donate__amounts {
        gap: 8px;
    }

    body.public-page .patrocle-quick-donate__amounts button,
    body.public-page .patrocle-quick-donate__frequency span {
        min-height: 44px;
        font-size: 14px;
    }
}
