@font-face {
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2") format("woff2");
}

@font-face {
    font-family: "Playfair Display";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/nuFiD-vYSZviVYUb_rj3ij__anPXDTzYgA.woff2") format("woff2");
}

@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTS-muw.woff2") format("woff2");
}

@font-face {
    font-family: "Open Sans";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("../fonts/memvYaGs126MiZpBA-UvWbX2vVnXBbObj2OVTVOmu1aB.woff2") format("woff2");
}

:root {
    --vea-bg: #ffffff;
    --vea-text: #151515;
    --vea-muted: #5e5e5e;
    --vea-soft: #f3f3f3;
    --vea-border: #e2e2e2;
    --vea-accent: #8f6e6e;
    --vea-btn: #dadada;
    --vea-btn-hover: #cccccc;
    --vea-dark: #161616;
    --vea-dark-hover: #000000;
}

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

html,
body {
    margin: 0;
    padding: 0;
}

body.vea-body {
    font-family: "Open Sans", arial, sans-serif;
    color: var(--vea-text);
    background: var(--vea-bg);
    line-height: 1.5;
    font-size: 16px;
}

a {
    color: var(--vea-accent);
    text-decoration: none;
}

a:hover {
    color: #474747;
}

.vea-shell {
    overflow-x: hidden;
}

.vea-container {
    width: min(1280px, calc(100% - 48px));
    margin: 0 auto;
}

.vea-header {
    background: var(--vea-bg);
}

.vea-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 32px 0;
    gap: 16px;
}

.vea-social {
    display: flex;
    align-items: center;
    gap: 16px;
    width: 30%;
}

.vea-social svg {
    display: block;
    padding: 6px;
}

.vea-logo-link {
    text-align: center;
    color: var(--vea-text);
    width: 40%;
}

.vea-logo {
    margin: 0;
    display: inline-block;
    font-family: "Playfair Display", georgia, serif;
    font-size: 30px;
    line-height: 1;
    letter-spacing: 0.031em;
    text-transform: none;
    font-weight: 400;
    border: 1px solid var(--vea-text);
    padding: 8px 16px;
}

.vea-menu-toggle {
    width: 30%;
    display: none;
    justify-content: flex-end;
    border: 0;
    background: transparent;
    color: #898989;
    cursor: pointer;
}

.vea-menu-toggle svg {
    padding: 6px;
}

@media (min-width: 1024px) {
    .vea-header-inner {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        align-items: center;
    }

    .vea-social {
        grid-column: 1;
        width: auto;
        justify-content: flex-start;
    }

    .vea-logo-link {
        grid-column: 2;
        width: auto;
        justify-self: center;
    }

    .vea-menu-toggle {
        grid-column: 3;
        width: auto;
        justify-self: end;
    }
}

.vea-drawer {
    position: fixed;
    top: 0;
    left: 0;
    transform: translateX(-120%);
    width: 100%;
    max-width: 420px;
    height: 100%;
    z-index: 10002;
    background: var(--vea-soft);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
    padding: 56px 32px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vea-drawer.open {
    transform: translateX(0);
}

.vea-drawer-close {
    position: absolute;
    top: 15px;
    right: 15px;
    border: 0;
    background: transparent;
    font-size: 34px;
    line-height: 1;
    color: #000;
    cursor: pointer;
}

.vea-drawer a {
    text-transform: uppercase;
    letter-spacing: 0.125em;
    font-size: 14px;
    font-weight: 700;
}

.vea-main {
    width: 100%;
}

.vea-front-page-content .wp-block-group > .wp-block-group__inner-container {
    display: contents;
}

.vea-front-page-content .wp-block-group {
    --wp--style--block-gap: 0;
}

.vea-hero {
    padding: 0 0 32px;
}

.vea-hero-grid {
    display: flex;
    flex-wrap: wrap;
    min-height: 400px;
}

.vea-hero-image-wrap {
    width: 50%;
    overflow: hidden;
    display: flex;
}

.vea-hero-image-wrap .wp-block-image {
    margin: 0;
    width: 100%;
}

.vea-hero-image-wrap img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
}

.vea-hero-panel {
    width: 50%;
    min-width: 388px;
    background: var(--vea-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.vea-hero-panel-cta {
    align-items: flex-start;
    text-align: left;
}

@media (min-width: 1024px) {
    .vea-hero-grid {
        flex-wrap: nowrap;
    }

    .vea-hero-image-wrap {
        width: 69%;
    }

    .vea-hero-panel {
        width: 31%;
        min-width: 0;
    }

    .vea-hero-cta .vea-hero-link-group {
        width: 100%;
    }

    .vea-hero-cta .vea-hero-link-group .vea-btn {
        width: 100%;
    }
}

.vea-suptag {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: 0.125em;
    text-transform: uppercase;
    font-weight: 400;
}

.vea-tagline {
    margin: 0 0 16px;
    font-family: "Playfair Display", georgia, serif;
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.023em;
    text-transform: none;
    font-weight: 400;
    white-space: pre-line;
    max-width: 750px;
}

@media (min-width: 1024px) {
    .vea-tagline {
        font-size: 38px;
    }
}

@media (min-width: 1280px) {
    .vea-tagline {
        font-size: 44px;
    }
}

@media (min-width: 1536px) {
    .vea-tagline {
        font-size: 48px;
    }
}

.vea-subtagline {
    margin: 0 0 16px;
    max-width: 750px;
    color: #575757;
}

.vea-kicker {
    margin: 0 0 12px;
    color: var(--vea-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.vea-kicker-light {
    color: rgba(255, 255, 255, 0.78);
}

.vea-section-intro {
    margin: 0 0 24px;
    color: var(--vea-muted);
    max-width: 760px;
}

.vea-hero-link-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 8px;
}

.vea-btn,
.wp-block-button.vea-btn .wp-block-button__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 56px;
    padding: 8px 32px;
    border-radius: 0;
    border: 0;
    background: var(--vea-btn);
    color: #1b1b1b;
    text-transform: uppercase;
    letter-spacing: 0.214em;
    font-size: 14px;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
}

.wp-block-button.vea-btn {
    margin: 0;
}

.vea-btn:hover,
.wp-block-button.vea-btn .wp-block-button__link:hover {
    background: var(--vea-btn-hover);
}

.vea-btn-block {
    width: 100%;
}

.vea-btn-muted {
    background: #e2e2e2;
    color: #1b1b1b;
}

.vea-btn-dark {
    background: var(--vea-dark);
    color: #dbdbdb;
    min-height: 40px;
    padding: 4px 16px;
}

.wp-block-button.vea-btn-dark .wp-block-button__link {
    background: var(--vea-dark);
    color: #dbdbdb;
}

.vea-btn-dark:hover {
    background: var(--vea-dark-hover);
}

.wp-block-button.vea-btn-dark .wp-block-button__link:hover {
    background: var(--vea-dark-hover);
}

.vea-btn-light {
    background: #ffffff;
    color: #000000;
}

.wp-block-button.vea-btn-light .wp-block-button__link {
    background: #ffffff;
    color: #000000;
}

.vea-btn-light:hover {
    background: #ffffff;
}

.wp-block-button.vea-btn-light .wp-block-button__link:hover {
    background: #ffffff;
}

.vea-section {
    padding: 40px 0;
}

.vea-section-border {
    border-top: 1px solid var(--vea-border);
    border-bottom: 1px solid var(--vea-border);
}

.vea-section-title {
    margin: 0 0 32px;
    font-size: 22px;
    line-height: 1.4;
    letter-spacing: 0.125em;
    text-transform: uppercase;
    font-weight: 400;
}

.vea-minor-heading {
    margin: 0 0 24px;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    font-weight: 400;
}

.vea-form-single {
    max-width: 66.666%;
}

.vea-form {
    display: block;
}

.vea-cf7 {
    display: block;
}

.vea-cf7 .wpcf7-form {
    margin: 0;
}

.vea-cf7 .hidden-fields-container {
    display: none !important;
    margin: 0;
    padding: 0;
    border: 0;
}

.vea-cf7 .wpcf7-form p {
    margin: 0;
}

.vea-cf7 .wpcf7-form-control-wrap {
    display: block;
}

.vea-field {
    margin-bottom: 24px;
}

.vea-field-float {
    position: relative;
}

.vea-field input,
.vea-field textarea {
    width: 100%;
    border: solid var(--vea-border);
    border-width: 0 0 1px 0;
    background: transparent;
    color: var(--vea-muted);
    padding: 23px 8px 8px;
    border-radius: 0;
    outline: none;
    font-family: "Open Sans", arial, sans-serif;
    font-size: 16px;
}

.vea-field textarea {
    border-width: 1px;
    border-radius: 3px;
    padding-top: 16px;
    resize: vertical;
}

.vea-field label {
    position: absolute;
    top: 30%;
    left: 8px;
    pointer-events: none;
    transition: all 0.15s ease;
    color: var(--vea-muted);
}

.vea-field-float:focus-within input,
.vea-field-float.has-value input,
.vea-field-float input:focus,
.vea-field-float input.has-value {
    box-shadow: inset 0 0 0 1px currentColor;
}

.vea-field-float:focus-within label,
.vea-field-float.has-value label,
.vea-field-float input:focus + label,
.vea-field-float input.has-value + label {
    top: 8px;
    font-size: 12px;
    color: var(--vea-accent);
}

.vea-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-top: 16px;
}

.vea-actions.center {
    justify-content: center;
}

.vea-cards {
    display: grid;
    gap: 24px;
}

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

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

.vea-card {
    background: var(--vea-soft);
    padding: 32px;
}

.vea-card h4 {
    margin: 0 0 24px;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    font-weight: 400;
}

.vea-card p,
.vea-card li {
    color: var(--vea-muted);
}

.vea-card ul {
    margin: 0;
    padding-left: 24px;
}

.vea-volunteer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 24px;
    align-items: start;
}

.vea-portal-card,
.vea-volunteer-snippet {
    display: grid;
    gap: 16px;
}

.vea-volunteer-snippet {
    padding-top: 8px;
}

.vea-volunteer-snippet h3,
.vea-volunteer-snippet p {
    margin: 0;
}

.vea-donate-panel {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: center;
    justify-items: center;
    background: linear-gradient(135deg, #111111 0%, #3b2c2c 100%);
    color: #ffffff;
    padding: 40px;
    text-align: center;
}

.vea-donate-panel > div:first-child {
    max-width: 760px;
    margin: 0 auto;
}

.vea-donate-panel .vea-section-title,
.vea-donate-panel .vea-section-intro,
.vea-donate-panel li {
    color: #ffffff;
}

.vea-donate-panel .vea-section-title {
    margin-bottom: 16px;
}

.vea-donate-panel .vea-section-intro {
    margin-left: auto;
    margin-right: auto;
}

.vea-donate-list {
    margin: 0 auto;
    padding-left: 20px;
    display: grid;
    gap: 10px;
    text-align: left;
}

.vea-donate-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.vea-card-with-image {
    padding-top: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
}

.vea-card-with-image .wp-block-image {
    margin: 0;
    width: 100%;
}

.vea-card-with-image img {
    width: 100%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    margin: -32px -32px 30px;
    width: calc(100% + 64px);
    display: block;
}

.vea-blog-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.vea-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.vea-blog-card {
    display: flex;
    flex-direction: column;
}

.vea-blog-title {
    margin: 0 0 12px;
    font-family: "Playfair Display", georgia, serif;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0.023em;
    font-weight: 400;
}

.vea-blog-title a {
    color: #1b1b1b;
}

.vea-blog-title a:hover {
    color: #474747;
}

.vea-blog-excerpt {
    margin: 0 0 24px;
    color: var(--vea-muted);
}

.vea-blog-card-foot {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.vea-post-meta {
    margin: 0 0 12px;
    color: var(--vea-muted);
    font-size: 14px;
}

.vea-post-comments {
    color: var(--vea-muted);
    font-size: 14px;
}

.vea-btn-small {
    min-height: 44px;
    padding: 8px 20px;
    font-size: 12px;
    letter-spacing: 0.15em;
}

.vea-blog-intro {
    margin: 0 0 24px;
    color: var(--vea-muted);
}

.vea-blog-pagination {
    margin-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.vea-blog-pagination a {
    color: var(--vea-accent);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 12px;
    font-weight: 700;
}

.vea-post-article {
    max-width: 980px;
    margin: 0 auto;
}

.vea-post-title {
    margin: 0 0 24px;
    font-family: "Playfair Display", georgia, serif;
    font-size: 44px;
    line-height: 1.2;
    letter-spacing: 0.023em;
    font-weight: 400;
}

.vea-post-body {
    color: var(--vea-muted);
    margin-bottom: 24px;
}

.vea-post-body p:first-child {
    margin-top: 0;
}

.vea-comments-list {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

.vea-comment-card {
    padding: 24px;
}

.vea-comment-meta {
    margin: 0 0 8px;
    color: var(--vea-muted);
    font-size: 14px;
}

.vea-comment-text {
    color: #1b1b1b;
}

.vea-comment-form {
    max-width: 760px;
}

.vea-comment-form .submit {
    margin-top: 8px;
}

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

.vea-link-btn {
    border: 0;
    background: transparent;
    color: var(--vea-accent);
    font-size: 16px;
    text-decoration: underline;
    padding: 0;
    cursor: pointer;
}

.vea-file-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}

.vea-file-row label {
    position: static;
    top: auto;
    left: auto;
    pointer-events: auto;
    transition: none;
}

.vea-file-row .vea-link-btn {
    color: var(--vea-accent);
}

.vea-file-row span {
    color: #595959;
    font-size: 12px;
}

.vea-file-row .wpcf7-form-control-wrap {
    position: absolute;
    inset: 0;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.vea-file-row input[type="file"] {
    width: 1px;
    height: 1px;
    opacity: 0;
}

.vea-small-print {
    color: #595959;
    font-size: 12px;
    margin-top: 16px;
}

.vea-cf7-membership .vea-small-print,
.vea-cf7-contact .vea-small-print {
    text-align: center;
}

.vea-cf7 .wpcf7-spinner {
    margin: 12px auto 0;
    display: block;
}

.vea-cf7 .wpcf7-response-output {
    margin: 16px 0 0;
    padding: 12px;
    border-color: var(--vea-border);
    color: var(--vea-muted);
    font-size: 14px;
}

.vea-cf7 .wpcf7-response-output[aria-hidden="true"],
.vea-cf7 .wpcf7-response-output:empty {
    display: none;
}

.vea-cf7 .wpcf7-not-valid-tip {
    font-size: 12px;
    margin-top: 8px;
}

.vea-hours-card {
    text-align: left;
}

.vea-hours-card h4 {
    margin: 0 0 24px;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    font-weight: 400;
}

.vea-hours-card table {
    border-spacing: 0;
    display: inline-table;
    text-align: left;
}

.vea-hours-card .wp-block-table {
    margin: 0;
}

.vea-hours-card td {
    padding: 0 16px 8px 0;
    color: var(--vea-muted);
    white-space: nowrap;
}

.vea-hours-card tr td:first-child {
    font-weight: 700;
    white-space: normal;
}

.vea-subscribe {
    padding: 40px 0;
    background:
        linear-gradient(to bottom, rgba(0, 0, 0, 0.24), rgba(0, 0, 0, 0.24)),
        url("../images/subscribe-bg.jpg") center / cover no-repeat;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
}

.vea-subscribe h2 {
    margin: 0 0 32px;
    color: #fff;
    font-family: "Playfair Display", georgia, serif;
    letter-spacing: 0.031em;
    text-transform: uppercase;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 400;
}

.vea-subscribe-form {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: stretch;
}

.vea-subscribe-form .vea-field {
    margin: 4px 24px 4px 0;
    flex: 1;
    min-width: 260px;
    height: 100%;
}

.vea-subscribe-form .vea-field input {
    color: #fff;
    border-color: #fff;
    margin-right: 24px;
    height: 100%;
}

.vea-subscribe-form .vea-field label {
    color: #fff;
}

.vea-subscribe-form .vea-field-float:focus-within label,
.vea-subscribe-form .vea-field-float.has-value label,
.vea-subscribe-form .vea-field-float input:focus + label,
.vea-subscribe-form .vea-field-float input.has-value + label {
    color: #fff;
}

.vea-footer {
    padding: 56px 0 48px;
    background: #f5f0ea;
}

.vea-footer-inner {
    display: grid;
    gap: 24px;
}

.vea-footer-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.vea-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.vea-footer-links a {
    color: var(--vea-text);
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vea-business-name {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.083em;
    font-size: 12px;
    color: #1b1b1b;
}

.vea-compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.vea-compliance-item {
    background: rgba(255, 255, 255, 0.72);
    padding: 20px;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.vea-compliance-item span {
    display: block;
    margin-bottom: 10px;
    color: var(--vea-accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.vea-compliance-item p {
    margin: 0;
    color: var(--vea-text);
}

.vea-footer-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.vea-footer-meta p {
    margin: 0;
    color: #595959;
}

.vea-support-dock {
    position: fixed;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
    z-index: 9998;
    width: min(420px, calc(100vw - 120px));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 20px;
    background: rgba(17, 17, 17, 0.96);
    color: #ffffff;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
    text-align: center;
}

.vea-support-dock-copy {
    width: 100%;
    text-align: center;
}

.vea-support-dock-copy p {
    margin: 0;
}

.vea-support-dock-title {
    color: rgba(255, 255, 255, 0.7);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.vea-support-dock-text {
    margin-top: 6px;
    font-size: 14px;
    line-height: 1.45;
}

.vea-cookie-banner {
    position: fixed;
    right: 0;
    bottom: 24px;
    z-index: 10000;
    width: 400px;
    max-height: 500px;
    overflow-y: auto;
    background: #fff;
    border-radius: 7px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
    padding: 24px;
    margin: 24px;
    transition: all 1s ease-in;
}

.vea-cookie-banner.hidden {
    display: none;
}

.vea-cookie-banner h4 {
    margin: 0 0 16px;
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: 0.045em;
    text-transform: uppercase;
    font-weight: 400;
}

.vea-cookie-banner p {
    margin: 0;
    color: var(--vea-muted);
}

.vea-cookie-banner .vea-btn {
    margin-top: 24px;
}

.vea-chat-fab {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 65px;
    height: 65px;
    border: 0;
    border-radius: 50%;
    background: #e2e2e2;
    color: var(--vea-text);
    box-shadow: 0 3px 18px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    z-index: 9999;
}

.vea-chat-fab:hover {
    background: #d4d4d4;
}

.vea-fallback {
    padding: 40px 0;
}

.vea-fallback-title {
    margin-top: 0;
    font-family: "Playfair Display", georgia, serif;
}

@media (max-width: 1023px) {
    .vea-social {
        display: none;
    }

    .vea-logo-link {
        width: 70%;
    }

    .vea-menu-toggle {
        display: flex;
    }

    .vea-hero-image-wrap,
    .vea-hero-panel {
        width: 100%;
        min-width: 0;
    }

    .vea-tagline {
        font-size: 38px;
    }

    .vea-form-single {
        max-width: 83.333%;
        margin-left: 8.333%;
    }

    .vea-volunteer-grid,
    .vea-compliance-grid,
    .vea-donate-panel {
        grid-template-columns: 1fr;
    }

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

    .vea-post-title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .vea-container {
        width: calc(100% - 48px);
    }

    .vea-header-inner {
        padding: 24px 0;
    }

    .vea-logo {
        font-size: 28px;
    }

    .vea-tagline {
        font-size: 32px;
    }

    .vea-hero-panel {
        padding: 32px 24px;
    }

    .vea-hero-link-group,
    .vea-footer-head,
    .vea-footer-meta {
        flex-direction: column;
        align-items: flex-start;
    }

    .vea-form-single {
        max-width: 100%;
        margin: 0 auto;
    }

    #membership .vea-minor-heading {
        text-align: center;
    }

    #about .vea-card-with-image {
        padding-top: 24px;
    }

    #about .vea-card-with-image img {
        margin: 0 0 24px;
        width: 100%;
        aspect-ratio: auto;
    }

    .vea-cards-3,
    .vea-cards-2,
    .vea-blog-grid,
    .vea-contact-grid,
    .vea-compliance-grid {
        grid-template-columns: 1fr;
    }

    .vea-subscribe-form .vea-field {
        margin-right: 0;
    }

    .vea-cookie-banner {
        width: calc(100% - 32px);
        margin: 16px;
        border-radius: 0;
        max-height: 300px;
    }

    .vea-blog-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .vea-blog-card-foot {
        flex-direction: column;
        align-items: flex-start;
    }

    .vea-post-title {
        font-size: 32px;
    }

    .vea-support-dock {
        left: 50%;
        bottom: 16px;
        transform: translateX(-50%);
        width: calc(100vw - 32px);
        padding: 16px;
        flex-direction: column;
        align-items: center;
    }

    .vea-support-dock .vea-btn {
        width: min(100%, 280px);
    }

    .vea-chat-fab {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
    }

    .vea-donate-panel {
        padding: 32px 24px;
    }

    .vea-donate-list {
        width: min(100%, 28rem);
    }

    .vea-hero-link-group {
        width: 100%;
    }

    .vea-hero-link-group .vea-btn {
        width: 100%;
    }
}
