:root {
    --nb-blue: #0d80a3;
    --nb-blue-dark: #073647;
    --nb-blue-deep: #052a38;
    --nb-cream: #f6efe3;
    --nb-soft: #eef6f7;
    --nb-white: #ffffff;
    --nb-ink: #15323c;
    --nb-muted: #58717a;
    --nb-accent: #db6545;
    --nb-accent-dark: #bd4f33;
    --nb-border: rgba(7, 54, 71, 0.14);
    --nb-radius: 22px;
    --nb-shadow: 0 18px 45px rgba(5, 42, 56, 0.11);
}

.nb-site,
.nb-header,
.nb-footer {
    color: var(--nb-ink);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 17px;
    line-height: 1.65;
}

.nb-site *,
.nb-header *,
.nb-footer * {
    box-sizing: border-box;
}

.nb-site h1,
.nb-site h2,
.nb-site h3,
.nb-header strong,
.nb-footer__title {
    color: inherit;
    font-family: "Arial Black", Impact, Arial, sans-serif;
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin-top: 0;
}

.nb-site h1 {
    font-size: clamp(2.45rem, 5.2vw, 4.7rem);
    max-width: 900px;
}

.nb-site h2 {
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.nb-site h3 {
    font-size: 1.35rem;
}

.nb-site p {
    margin: 0 0 1.15em;
}

.nb-site a,
.nb-header a,
.nb-footer a {
    color: inherit;
}

.nb-site img,
.nb-header img {
    display: block;
    height: auto;
    max-width: 100%;
}

.nb-site [id] {
    scroll-margin-top: 100px;
}

.nb-wrap {
    margin: 0 auto;
    max-width: 1200px;
    padding-left: 28px;
    padding-right: 28px;
    width: 100%;
}

.nb-header {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid var(--nb-border);
    position: relative;
    z-index: 50;
}

.nb-header__inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    min-height: 84px;
}

.nb-brand {
    align-items: center;
    display: inline-flex;
    gap: 12px;
    text-decoration: none;
}

.nb-brand img {
    border-radius: 50%;
    object-fit: contain;
}

.nb-brand span {
    display: grid;
}

.nb-brand strong {
    color: var(--nb-blue-dark);
    font-size: 1.15rem;
}

.nb-brand small {
    color: var(--nb-muted);
    font-size: 0.73rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.nb-nav {
    align-items: center;
    display: flex;
    gap: 22px;
}

.nb-header__cta {
    flex: 0 0 auto;
}

.nb-nav > a:not(.nb-button) {
    color: var(--nb-blue-dark);
    font-size: 0.86rem;
    font-weight: 700;
    text-decoration: none;
}

.nb-nav > a:not(.nb-button):hover,
.nb-nav > a:not(.nb-button):focus-visible {
    color: var(--nb-blue);
}

.nb-menu-button {
    background: var(--nb-blue-dark);
    border: 0;
    border-radius: 999px;
    color: var(--nb-white);
    cursor: pointer;
    display: none;
    font: inherit;
    font-weight: 700;
    padding: 10px 17px;
}

.nb-button {
    align-items: center;
    background: var(--nb-blue);
    border: 2px solid var(--nb-blue);
    border-radius: 999px;
    color: var(--nb-white) !important;
    cursor: pointer;
    display: inline-flex;
    font: inherit;
    font-weight: 800;
    justify-content: center;
    line-height: 1.2;
    min-height: 49px;
    padding: 12px 23px;
    text-align: center;
    text-decoration: none !important;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.nb-button:hover,
.nb-button:focus-visible {
    background: var(--nb-blue-dark);
    border-color: var(--nb-blue-dark);
    transform: translateY(-2px);
}

.nb-button--accent {
    background: var(--nb-accent);
    border-color: var(--nb-accent);
}

.nb-button--accent:hover,
.nb-button--accent:focus-visible {
    background: var(--nb-accent-dark);
    border-color: var(--nb-accent-dark);
}

.nb-button--secondary {
    background: transparent;
    color: var(--nb-blue-dark) !important;
}

.nb-button--ghost-light {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.68);
}

.nb-button--ghost-light:hover,
.nb-button--ghost-light:focus-visible {
    background: var(--nb-white);
    border-color: var(--nb-white);
    color: var(--nb-blue-dark) !important;
}

.nb-hero {
    align-items: center;
    background: linear-gradient(90deg, rgba(5, 42, 56, 0.94) 0%, rgba(5, 42, 56, 0.76) 48%, rgba(5, 42, 56, 0.17) 100%), var(--nb-hero) center 35% / cover no-repeat;
    color: var(--nb-white);
    display: flex;
    min-height: min(760px, 82vh);
    padding: 90px 0;
}

.nb-hero__content {
    margin-left: max(0px, calc((100vw - 1200px) / 2));
}

.nb-hero h1 {
    color: var(--nb-white);
    margin-bottom: 24px;
}

.nb-lead {
    font-size: clamp(1.12rem, 2vw, 1.38rem);
    max-width: 760px;
}

.nb-hero .nb-lead {
    max-width: 690px;
}

.nb-actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 13px;
    margin: 28px 0 20px;
}

.nb-hero__note {
    font-size: 0.95rem;
    font-weight: 700;
    opacity: 0.9;
}

.nb-eyebrow {
    color: var(--nb-blue);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    margin-bottom: 12px !important;
    text-transform: uppercase;
}

.nb-eyebrow--light {
    color: #8fdae9;
}

.nb-status-strip {
    background: var(--nb-cream);
    padding: 28px 0;
}

.nb-section {
    background: var(--nb-white);
    padding: clamp(70px, 9vw, 118px) 0;
}

.nb-section--soft {
    background: var(--nb-soft);
}

.nb-section--warm {
    background: var(--nb-cream);
}

.nb-section--dark,
.nb-highlight,
.nb-panel {
    background: var(--nb-blue-dark);
    color: var(--nb-white);
}

.nb-section--dark h2,
.nb-highlight h2,
.nb-panel h2 {
    color: var(--nb-white);
}

.nb-page-head {
    background: linear-gradient(135deg, var(--nb-cream), #fff 78%);
    border-bottom: 1px solid var(--nb-border);
    padding: clamp(70px, 10vw, 132px) 0;
}

.nb-page-head h1 {
    color: var(--nb-blue-dark);
    font-size: clamp(2.65rem, 6vw, 5.2rem);
    margin-bottom: 24px;
}

.nb-grid {
    display: grid;
    gap: 24px;
}

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

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

.nb-split {
    align-items: center;
    display: grid;
    gap: clamp(38px, 7vw, 88px);
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
}

.nb-card {
    background: var(--nb-white);
    border: 1px solid var(--nb-border);
    border-radius: var(--nb-radius);
    box-shadow: 0 8px 30px rgba(5, 42, 56, 0.05);
    padding: 28px;
}

.nb-card > span {
    color: var(--nb-muted);
    display: block;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.nb-card > strong {
    color: var(--nb-blue-dark);
    display: block;
    font-size: 1.12rem;
    line-height: 1.35;
}

.nb-card h2,
.nb-card h3 {
    color: var(--nb-blue-dark);
    font-size: 1.35rem;
    margin-bottom: 13px;
}

.nb-cards {
    margin-top: 38px;
}

.nb-quote,
.nb-impact {
    background: var(--nb-cream);
    border-left: 7px solid var(--nb-accent);
    border-radius: var(--nb-radius);
    color: var(--nb-blue-dark);
    font-family: Georgia, serif;
    font-size: clamp(1.35rem, 2.8vw, 2.15rem);
    font-style: italic;
    font-weight: 700;
    line-height: 1.35;
    padding: clamp(30px, 5vw, 54px);
}

.nb-section--dark .nb-impact {
    background: rgba(255, 255, 255, 0.08);
    color: var(--nb-white);
}

.nb-impact--dark {
    background: var(--nb-blue-dark);
    border-left: 0;
    color: var(--nb-white);
    font-family: inherit;
    font-style: normal;
}

.nb-impact--dark h2 {
    color: var(--nb-white);
    font-size: clamp(2rem, 4vw, 3.35rem);
}

.nb-impact--dark p {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.8;
}

.nb-feature-list {
    background: var(--nb-soft);
    border-radius: var(--nb-radius);
    list-style: none;
    margin: 0;
    padding: 30px;
}

.nb-feature-list li {
    border-bottom: 1px solid var(--nb-border);
    padding: 13px 8px 13px 36px;
    position: relative;
}

.nb-feature-list li::before {
    color: var(--nb-blue);
    content: "✓";
    font-weight: 900;
    left: 8px;
    position: absolute;
}

.nb-feature-list li:last-child {
    border-bottom: 0;
}

.nb-feature-list--dark {
    background: rgba(255, 255, 255, 0.08);
}

.nb-feature-list--dark li {
    border-color: rgba(255, 255, 255, 0.14);
}

.nb-feature-list--dark li::before {
    color: #8fdae9;
}

.nb-callout,
.nb-final-cta .nb-wrap {
    align-items: center;
    display: flex;
    gap: 35px;
    justify-content: space-between;
}

.nb-callout > div:first-child {
    max-width: 720px;
}

.nb-story-teaser {
    align-items: center;
    display: grid;
    gap: clamp(35px, 7vw, 82px);
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
}

.nb-story-teaser img,
.nb-story-card img {
    aspect-ratio: 4 / 3;
    border-radius: var(--nb-radius);
    object-fit: cover;
    width: 100%;
}

.nb-final-cta .nb-wrap {
    text-align: left;
}

.nb-final-cta h2 {
    margin-bottom: 0;
    max-width: 780px;
}

.nb-highlight,
.nb-panel {
    border-radius: var(--nb-radius);
    display: grid;
    gap: 38px;
    grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
    margin: 48px 0;
    padding: clamp(34px, 6vw, 65px);
}

.nb-highlight aside {
    align-self: center;
    border-left: 5px solid var(--nb-accent);
    font-family: Georgia, serif;
    font-size: 1.4rem;
    font-style: italic;
    padding-left: 25px;
}

.nb-panel {
    display: block;
}

.nb-transparency-box {
    align-items: start;
    background: var(--nb-soft);
    border: 1px solid var(--nb-border);
    border-radius: calc(var(--nb-radius) + 7px);
    display: grid;
    gap: clamp(34px, 7vw, 80px);
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    padding: clamp(34px, 6vw, 68px);
}

.nb-dark-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--nb-radius);
    padding: 28px;
}

.nb-dark-card h3 {
    color: var(--nb-white);
}

.nb-dark-card p {
    color: rgba(255, 255, 255, 0.78);
}

.nb-section-button {
    margin-top: 36px;
}

.nb-timeline {
    counter-reset: nb-step;
    list-style: none;
    margin: 45px 0 0;
    padding: 0;
}

.nb-timeline li {
    counter-increment: nb-step;
    display: grid;
    gap: 22px;
    grid-template-columns: 64px minmax(0, 1fr);
    padding-bottom: 42px;
    position: relative;
}

.nb-timeline li::before {
    align-items: center;
    background: var(--nb-blue);
    border-radius: 50%;
    color: white;
    content: counter(nb-step);
    display: flex;
    font-weight: 900;
    height: 52px;
    justify-content: center;
    width: 52px;
    z-index: 1;
}

.nb-timeline li::after {
    background: var(--nb-border);
    bottom: -2px;
    content: "";
    left: 25px;
    position: absolute;
    top: 52px;
    width: 2px;
}

.nb-timeline li:last-child::after {
    display: none;
}

.nb-timeline small {
    color: var(--nb-blue);
    font-size: 0.77rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nb-timeline h2 {
    font-size: 1.55rem;
    margin: 4px 0 10px;
}

.nb-donation {
    background: var(--nb-cream);
    border-radius: calc(var(--nb-radius) + 6px);
    box-shadow: var(--nb-shadow);
    display: grid;
    gap: clamp(35px, 7vw, 78px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: clamp(34px, 6vw, 70px);
}

.nb-donation__intro .nb-thermometer {
    margin-top: 30px;
}

.nb-campaign-progress {
    background: var(--nb-blue);
    padding: 38px 0;
}

.nb-campaign-progress .nb-thermometer {
    box-shadow: 0 18px 42px rgba(5, 42, 56, 0.22);
}

.nb-transparency-progress {
    margin: 42px 0;
}

.nb-thermometer {
    background: var(--nb-white);
    border: 1px solid var(--nb-border);
    border-radius: var(--nb-radius);
    color: var(--nb-ink);
    padding: clamp(24px, 4vw, 36px);
}

.nb-thermometer__heading,
.nb-thermometer__meta,
.nb-thermometer__footer {
    align-items: center;
    display: flex;
    gap: 18px;
    justify-content: space-between;
}

.nb-thermometer__heading > span {
    color: var(--nb-blue-dark);
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.nb-thermometer__heading small,
.nb-thermometer__footer small {
    color: var(--nb-muted);
    font-size: 0.78rem;
}

.nb-thermometer__amount {
    color: var(--nb-blue-dark);
    display: block;
    font-family: "Arial Black", Impact, Arial, sans-serif;
    font-size: clamp(2.15rem, 5vw, 4.3rem);
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 12px 0 20px;
}

.nb-thermometer__track {
    background: #dce9ec;
    border-radius: 999px;
    height: 18px;
    overflow: hidden;
    position: relative;
}

.nb-thermometer__track span {
    background: linear-gradient(90deg, var(--nb-blue), #49bfd1);
    border-radius: inherit;
    display: block;
    height: 100%;
    min-width: 5px;
    transition: width 0.5s ease;
}

.nb-thermometer__meta {
    color: var(--nb-blue-dark);
    font-size: 0.84rem;
    font-weight: 800;
    margin-top: 9px;
}

.nb-thermometer__footer {
    border-top: 1px solid var(--nb-border);
    margin-top: 22px;
    padding-top: 16px;
}

.nb-thermometer__footer a {
    color: var(--nb-blue) !important;
    font-size: 0.86rem;
    font-weight: 800;
}

.nb-donation__fallback,
.nb-donation-options {
    background: var(--nb-white);
    border: 1px solid var(--nb-border);
    border-radius: var(--nb-radius);
    padding: 30px;
}

.nb-donation-options {
    align-self: start;
}

.nb-donation-options h3 {
    color: var(--nb-blue-dark);
    margin-bottom: 20px;
}

.nb-donation-options__eyebrow {
    color: var(--nb-blue);
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.nb-donation-options__grid {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nb-donation-choice {
    align-items: center;
    background: var(--nb-soft);
    border: 2px solid rgba(13, 128, 163, 0.2);
    border-radius: 999px;
    color: var(--nb-blue-dark) !important;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    min-height: 62px;
    padding: 13px 18px;
    text-align: center;
    text-decoration: none !important;
    transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.nb-donation-choice:hover,
.nb-donation-choice:focus-visible {
    background: var(--nb-blue);
    border-color: var(--nb-blue);
    color: var(--nb-white) !important;
    transform: translateY(-2px);
}

.nb-donation-choice--other {
    background: var(--nb-white);
    grid-column: 1 / -1;
}

.nb-thermometer--pending .nb-thermometer__amount {
    font-size: clamp(1.55rem, 4vw, 2.7rem);
}

.nb-search-criteria {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--nb-radius);
    margin-top: 28px;
    padding: 28px;
}

.nb-search-criteria h3 {
    color: var(--nb-white);
}

.nb-search-criteria ul {
    display: grid;
    gap: 12px 34px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 18px 0 0;
    padding-left: 22px;
}

.nb-account {
    color: var(--nb-blue-dark);
    font-family: monospace;
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 900;
}

.nb-note {
    color: var(--nb-muted);
    font-size: 0.84rem;
    margin-top: 25px !important;
}

.nb-story-grid {
    align-items: stretch;
}

.nb-blog-card {
    background: var(--nb-white);
    border: 1px solid var(--nb-border);
    border-radius: var(--nb-radius);
    box-shadow: 0 10px 34px rgba(5, 42, 56, 0.07);
    overflow: hidden;
}

.nb-blog-card > img,
.nb-blog-card > a > img {
    aspect-ratio: 16 / 10;
    object-fit: cover;
    width: 100%;
}

.nb-blog-card > div {
    padding: 26px;
}

.nb-blog-card h3 {
    color: var(--nb-blue-dark);
    font-size: 1.5rem;
    margin-bottom: 13px;
}

.nb-blog-card h3 a {
    color: inherit;
    text-decoration: none;
}

.nb-blog-meta {
    color: var(--nb-blue) !important;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.11em;
    margin-bottom: 10px !important;
    text-transform: uppercase;
}

.nb-blog-details {
    border-top: 1px solid var(--nb-border);
    margin-top: 20px;
    padding-top: 15px;
}

.nb-blog-details summary {
    color: var(--nb-blue-dark);
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 900;
}

.nb-blog-details p {
    margin-top: 15px !important;
}

.nb-update-heading {
    max-width: 920px;
}

.nb-back-link {
    color: var(--nb-blue-dark) !important;
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 900;
    margin-bottom: 32px;
    text-decoration: none;
}

.nb-update-article {
    max-width: 980px;
}

.nb-update-article > img {
    aspect-ratio: 16 / 9;
    border-radius: var(--nb-radius);
    box-shadow: var(--nb-shadow);
    object-fit: cover;
    width: 100%;
}

.nb-update-article__content {
    font-size: 1.05rem;
    line-height: 1.85;
    margin: 42px auto 0;
    max-width: 760px;
}

.nb-update-article__content .nb-button {
    margin-top: 18px;
}

.nb-story-card {
    background: var(--nb-white);
    border: 1px solid var(--nb-border);
    border-radius: var(--nb-radius);
    box-shadow: var(--nb-shadow);
    overflow: hidden;
}

.nb-story-card img {
    border-radius: 0;
}

.nb-story-card > div {
    padding: 26px;
}

.nb-story-card h2 {
    color: var(--nb-blue-dark);
    font-size: 1.55rem;
}

.nb-contact-card,
.nb-form {
    background: var(--nb-soft);
    border-radius: var(--nb-radius);
    padding: clamp(28px, 5vw, 48px);
}

.nb-contact-card h2,
.nb-form h2 {
    color: var(--nb-blue-dark);
    font-size: 1.75rem;
}

.nb-form__grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.nb-form label {
    color: var(--nb-blue-dark);
    display: grid;
    font-size: 0.92rem;
    font-weight: 800;
    gap: 7px;
}

.nb-form input[type="text"],
.nb-form input[type="email"],
.nb-form input[type="tel"],
.nb-form select,
.nb-form textarea {
    background: var(--nb-white);
    border: 1px solid rgba(7, 54, 71, 0.25);
    border-radius: 11px;
    color: var(--nb-ink);
    font: inherit;
    min-height: 48px;
    padding: 11px 13px;
    width: 100%;
}

.nb-form textarea {
    min-height: 145px;
    resize: vertical;
}

.nb-form input:focus,
.nb-form select:focus,
.nb-form textarea:focus {
    border-color: var(--nb-blue);
    box-shadow: 0 0 0 3px rgba(13, 128, 163, 0.13);
    outline: 0;
}

.nb-form__full {
    grid-column: 1 / -1;
}

.nb-checkbox {
    align-items: start;
    display: flex !important;
    font-weight: 400 !important;
    gap: 10px !important;
    margin: 19px 0;
}

.nb-checkbox input {
    margin-top: 5px;
}

.nb-honeypot {
    height: 1px;
    left: -10000px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}

.nb-alert {
    border-radius: 11px;
    margin-bottom: 20px !important;
    padding: 12px 15px;
}

.nb-alert--success {
    background: #d9f2e5;
    color: #155e3c;
}

.nb-alert--error {
    background: #f8dddd;
    color: #8d2e2e;
}

.nb-footer {
    background: var(--nb-blue-deep);
    color: rgba(255, 255, 255, 0.8);
    padding: 58px 0;
}

.nb-footer__grid {
    display: grid;
    gap: 40px;
    grid-template-columns: 1.4fr 1fr 1fr;
}

.nb-footer__title {
    color: var(--nb-white);
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.nb-footer__label {
    color: #8fdae9;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.nb-footer a:hover,
.nb-footer a:focus-visible {
    color: var(--nb-white);
}

@media (max-width: 1060px) {
    .nb-nav {
        display: none;
    }
}

@media (max-width: 820px) {
    .nb-grid--3,
    .nb-grid--2,
    .nb-split,
    .nb-story-teaser,
    .nb-donation,
    .nb-highlight,
    .nb-transparency-box,
    .nb-footer__grid {
        grid-template-columns: 1fr;
    }

    .nb-search-criteria ul {
        grid-template-columns: 1fr;
    }

    .nb-callout,
    .nb-final-cta .nb-wrap {
        align-items: flex-start;
        flex-direction: column;
    }

    .nb-hero {
        background-position: 62% center;
        min-height: 690px;
    }

    .nb-hero__content {
        margin-left: auto;
    }
}

@media (max-width: 560px) {
    .nb-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .nb-header__inner {
        min-height: 72px;
    }

    .nb-brand img {
        height: 44px;
        width: 44px;
    }

    .nb-brand small {
        display: none;
    }

    .nb-header__cta {
        min-height: 44px;
        padding: 10px 16px;
    }

    .nb-site {
        font-size: 16px;
    }

    .nb-site h1 {
        font-size: 2.35rem;
    }

    .nb-hero {
        background: linear-gradient(rgba(5, 42, 56, 0.82), rgba(5, 42, 56, 0.88)), var(--nb-hero) 60% center / cover no-repeat;
        min-height: 670px;
        padding: 75px 0;
    }

    .nb-actions,
    .nb-actions .nb-button {
        align-items: stretch;
        width: 100%;
    }

    .nb-form__grid {
        grid-template-columns: 1fr;
    }

    .nb-form__full {
        grid-column: auto;
    }

    .nb-donation,
    .nb-donation__fallback,
    .nb-donation-options {
        padding: 24px;
    }

    .nb-donation-options__grid {
        grid-template-columns: 1fr;
    }

    .nb-thermometer__heading,
    .nb-thermometer__footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .nb-thermometer__amount {
        font-size: 2.35rem;
    }
}
