#aboutus-hero {
    position: relative;
}
#aboutus-hero::after {
    content: "";
    display: none;
    width: 100%;
    height: 2px;
    background: #cccccc;
    position: absolute;
    left: 0;
    bottom: 0;
    margin-top: 0;
}
#aboutus-hero {
    /* Page header v2 (2026-02-25)
       Previous header styles were:
       - height: 160px
       - padding-top: 70px
       - white title with shadow
    */
    min-height: 210px; /* +50px from previous 160px */
    height: auto;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    justify-content: stretch;
    gap: 0;
    background: transparent;
}
/* About Us page: hero image as background with fade */
/* About Us page: combined heading styling */
/* Title styling for About Us / Our Mission */
#aboutus-hero h2 {
    color: #fff;
    text-shadow: none;
    font-weight: bold;
    letter-spacing: 0.01em;
    font-size: 28px;
    line-height: 1.1;
    margin: 0;
    text-align: left;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
}

#aboutus-hero .page-header__subcopy {
    color: #fff;
    text-shadow: none;
    margin: 0;
    max-width: 820px;
    font-family: 'Segoe UI', Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.35;
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: none;
    hyphens: none;
    -ms-hyphens: none;
}

#aboutus-hero .page-header__subcopy a,
#aboutus-hero .page-header__subcopy a:visited {
    color: #fff;
    text-decoration: underline;
}

#aboutus-hero .page-header__text {
    width: 100%;
    padding: 18px 2px 18px 32px;
    background: #000;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 10px;
}

#aboutus-hero .page-header__image {
    width: 100%;
    position: relative;
    background-color: #000;
    background-image: var(--page-hero-image);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

@media (min-width: 781px) {
    #aboutus-hero {
        min-height: 230px;
        grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
    }

    /* Desktop/tablet: left-side fade into hero image */
    #aboutus-hero .page-header__image::before {
        top: 0;
        left: 0;
        bottom: 0;
        width: 90px;
        background: linear-gradient(to right, rgba(0,0,0,1) 0%, rgba(0,0,0,0.85) 25%, rgba(0,0,0,0) 100%);
    }
}

@media (max-width: 780px) {
    #aboutus-hero {
        grid-template-columns: 1fr;
    }
    #aboutus-hero .page-header__text {
        padding-left: 32px;
        padding-right: 32px;
        padding-bottom: 10px;
    }
    #aboutus-hero .page-header__image {
        min-height: 200px;
        margin-top: -1px;
        background-position: center top;
    }
    #aboutus-hero .page-header__image::before {
        display: block;
        top: 0;
        left: 0;
        right: 0;
        bottom: auto;
        height: 70px;
        background: linear-gradient(to bottom, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.45) 35%, rgba(0,0,0,0) 100%);
    }
}

#aboutus-hero .page-header__image::before {
    content: "";
    position: absolute;
    pointer-events: none;
}

#aboutus-hero .page-header__image::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 18px;
    background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 100%);
    opacity: var(--page-hero-topshade-opacity, 0);
    pointer-events: none;
}

@media (max-width: 700px) {
    #aboutus-hero .page-header__text {
        padding-left: 32px;
        padding-right: 32px;
        padding-bottom: 10px;
    }
    #aboutus-hero .page-header__image {
        min-height: 140px;
    }
    #aboutus-hero .page-header__image::before {
        height: 60px;
    }
    #aboutus-hero h2 {
        font-size: 24px;
    }
}

/* Content text styling */
#aboutus-content {
    font-size: 1.15em;
    color: #222;
    line-height: 1.7;
}

/* Kindle-style text justification for main content paragraphs */
#aboutus-content p {
    text-align: justify;
    text-justify: inter-word;
    -webkit-hyphens: none;
    hyphens: none;
    -ms-hyphens: none;
}

/* Do not justify the donate section (keeps heading centered) */
#aboutus-content .page-donate p {
    text-align: center;
    text-justify: auto;
    -webkit-hyphens: none;
    hyphens: none;
    -ms-hyphens: none;
}
#aboutus-content ul {
    margin-top: 0;
    padding-left: 22px;
    list-style-type: disc;
}
#aboutus-content li {
    margin-bottom: 0.5em;
}
/* About Us page improved layout and spacing */
.aboutus-flex-fixed {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 0;
}
.aboutus-content-row {
    display: block !important;
    width: 100% !important;
}
.aboutus-heroimage-fixed {
    display: block !important;
    width: 100% !important;
    margin-top: 32px !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    box-sizing: border-box;
    background: none !important; /* Remove debug background */
    min-height: 0 !important;
}
.aboutus-heroimage-fixed img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(20,26,14,0.13);
    display: block;
}
/* About Us page: align hero image with first paragraph */
.aboutus-flex-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
}
.aboutus-flex-row > div:first-child {
    flex: 3 1 0;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.aboutus-flex-row > div:first-child p,
.aboutus-flex-row > div:first-child ul {
    margin-top: 0;
    margin-bottom: 18px;
}
.aboutus-heroimage {
    flex: 1 1 0;
    min-width: 0;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}
.aboutus-heroimage img {
    width: 100%;
    height: auto;
    max-width: 340px;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(20,26,14,0.13);
}
@media (max-width: 900px) {
    .aboutus-flex-row {
        flex-direction: column;
    }
    .aboutus-heroimage {
        justify-content: center;
        margin-top: 24px;
    }
    .aboutus-heroimage img {
        max-width: 98vw;
    }
}
/* About Us page hero image layout */
.aboutus-flex {
    display: flex;
    flex-direction: row;
    gap: 32px;
}
.aboutus-main {
    flex: 3 1 0;
    min-width: 0;
}

/* Center and enlarge Ways to Give cards */

.give-grid {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    gap: 72px;
    justify-content: center;
}

.give-card {
    width: 320px;
    min-width: 0;
    border-radius: 20px;
}

@media (max-width: 700px) {
    .give-grid {
        gap: 56px;
    }
    .give-card {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        min-width: 0;
        max-width: none;
        display: block;
    }
}

.give-card {
    width: 320px;
    min-width: 0;
    border-radius: 20px;
}

@media (max-width: 700px) {
    .give-grid {
        gap: 56px;
        margin-left: 0;
        margin-right: 0;
        justify-content: flex-start;
    }
    .give-card {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        min-width: 0;
        max-width: none;
        display: block;
    }
}

.give-card__media img {
    height: 180px;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

.give-card__body {
    padding: 18px 20px;
}

.give-card__title {
    font-size: 20px;
}

.give-card__copy {
    font-size: 15px;
}
html {
    box-sizing: border-box;
    overflow-y: scroll;
    scrollbar-gutter: stable both-edges;
}

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

body	{ margin: 0px; background: url(images/bg-grad-2.jpg) repeat-x #3D4F2B; min-height: calc(100vh + 1px); }

body::after {
    content: "";
    display: block;
    height: 1px;
}

img {
    max-width: 100%;
    height: auto;
}

html.layout-pending body {
    visibility: hidden;
}

.layout-shell {
    clear: both;
    float: none;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
}

.layout-main {
    float: none;
    width: 100%;
    margin-bottom: 24px;
}

.layout-content-frame {
    float: none;
    width: 100%;
    background-color: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(20, 26, 14, 0.14);
    overflow: hidden;
}

.give-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 360px));
    gap: 32px;
    margin: 32px auto 0 auto;
    width: 100%;
    align-items: stretch;
    justify-content: center;
    justify-items: center;
}
@media (min-width: 701px) {
    .give-card:first-child {
        grid-column: 1;
        justify-self: center;
    }
    .give-card:last-child {
        grid-column: 2;
        justify-self: center;
        margin-right: 0;
    }
}

.give-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 22px 46px rgba(18, 23, 12, 0.28);
}

.give-card__media {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.give-card__media img,
.give-card__media iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.give-card__body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
    padding: 16px 18px;
    background: #ffffff;
}

.give-card__title {
    font-size: 18px;
    font-weight: 700;
    color: #31411f;
    margin: 0;
}

.give-card__copy {
    margin: 0;
    font-size: 15px;
    color: #4b5c33;
    line-height: 1.5;
}

.give-card__action {
    margin-top: auto;
    width: 100%;
    display: flex;
    justify-content: center;
}

.give-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: linear-gradient(180deg, #6f8b4a 0%, #4f692f 100%);
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.give-card__cta:hover,
.give-card__cta:focus {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(58, 80, 32, 0.24);
    background: linear-gradient(180deg, #7b9c52 0%, #5d7538 100%);
    color: #ffffff;
}

.give-card__cta:focus-visible {
    outline: 3px solid rgba(111, 139, 74, 0.65);
    outline-offset: 3px;
}

.give-card__form-wrapper button,
.give-card__form-wrapper input[type="submit"],
.give-card__form-wrapper .neonButton {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0 !important;
    width: auto !important;
    align-self: center !important;
    margin: 0 auto !important;
    padding: 12px 22px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    text-align: center !important;
    white-space: nowrap !important;
    color: #ffffff !important;
    background: linear-gradient(180deg, #6f8b4a 0%, #4f692f 100%) !important;
    border: none !important;
    border-radius: 999px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease !important;
}

.give-card__form-wrapper button::before,
.give-card__form-wrapper button::after,
.give-card__form-wrapper input[type="submit"]::before,
.give-card__form-wrapper input[type="submit"]::after,
.give-card__form-wrapper .neonButton::before,
.give-card__form-wrapper .neonButton::after {
    content: none !important;
}

.give-card__form-wrapper button:hover,
.give-card__form-wrapper button:focus,
.give-card__form-wrapper input[type="submit"]:hover,
.give-card__form-wrapper input[type="submit"]:focus,
.give-card__form-wrapper .neonButton:hover,
.give-card__form-wrapper .neonButton:focus {
    transform: translateY(-1px) !important;
    box-shadow: 0 8px 18px rgba(58, 80, 32, 0.24) !important;
    background: linear-gradient(180deg, #7b9c52 0%, #5d7538 100%) !important;
    color: #ffffff !important;
}

.give-card__form-wrapper button:focus-visible,
.give-card__form-wrapper input[type="submit"]:focus-visible,
.give-card__form-wrapper .neonButton:focus-visible {
    outline: 3px solid rgba(111, 139, 74, 0.65) !important;
    outline-offset: 3px !important;
}

.give-card__form-wrapper button *,
.give-card__form-wrapper input[type="submit"] *,
.give-card__form-wrapper .neonButton * {
    font: inherit !important;
    letter-spacing: inherit !important;
    text-transform: inherit !important;
    line-height: inherit !important;
    color: inherit !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    background: none !important;
}

.give-card__form-wrapper button span,
.give-card__form-wrapper button strong,
.give-card__form-wrapper input[type="submit"] span,
.give-card__form-wrapper .neonButton span,
.give-card__form-wrapper .neonButton strong {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
}

.give-card--form {
    background: #ffffff;
    box-shadow: 0 26px 56px rgba(16, 21, 11, 0.32);
}

.give-card--form .give-card__media {
    box-shadow: none;
}

.give-card--form .give-card__title {
    font-size: 16px;
}

.give-card--form .give-card__cta {
    width: 100%;
    justify-content: center;
}

.give-card__form-wrapper {
    width: 100%;
}

.give-card__form-wrapper script {
    width: 100%;
}

@media (max-width: 720px) {
    .give-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.video-preview {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(20, 26, 14, 0.16);
}

.video-preview__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.video-preview__cta {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #ffffff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: linear-gradient(180deg, rgba(17, 24, 11, 0.2) 0%, rgba(17, 24, 11, 0.65) 100%);
    transition: background 0.25s ease;
}

.video-preview__play {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: #4f692f;
    font-size: 32px;
    box-shadow: 0 16px 30px rgba(19, 24, 14, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.video-preview__label {
    font-size: 15px;
    letter-spacing: 0.1em;
}

.video-preview__cta:hover,
.video-preview__cta:focus {
    background: linear-gradient(180deg, rgba(17, 24, 11, 0.3) 0%, rgba(17, 24, 11, 0.75) 100%);
}

.video-preview__cta:hover .video-preview__play,
.video-preview__cta:focus .video-preview__play {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 20px 40px rgba(19, 24, 14, 0.32);
    background: #ffffff;
}

.video-preview__cta:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: 4px;
}

.video-fallback {
    margin-top: 18px;
    text-align: center;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #3b4a28;
}

.video-fallback a {
    color: #4f692f;
    font-weight: 700;
    text-decoration: none;
}

.video-fallback a:hover,
.video-fallback a:focus {
    text-decoration: underline;
}

.layout-footer-text {
    text-align: center;
    font-family: arial;
    font-size: 12px;
    padding-bottom: 20px;
    padding-left: 12px;
    padding-right: 12px;
    line-height: 1.4;
}

.layout-footer-primary {
    color: white;
}

.layout-footer-secondary {
    color: #CCCCCC;
}

#headerwrap	{ width:574px; height:auto; padding-top:0; padding-bottom:22px; float:left; position:relative; z-index:1000;}
#header	{ position:relative;height:185px;}
#header a	{ color:#CCCCCC;}
#headerwrap img { display:block; }

#awardtext { width:358px; float:left; padding-left:26px; padding-top:72px; font-family:arial; font-size:12px; color:black; font-weight:bold; text-align:center; }
#award { width:358px; height:91px; float:left; padding-left:26px; padding-top:5px;}

#search	{ width:365px; height:35px; float:left; padding-left:10px; padding-top:10px; background-color:transparent;}
#search .inputbox	{ float:left; width:325px; height:35px; background:url(../../../images/M_images/searchBG.png) no-repeat; border:0px; text-indent:10px; color:#999999; font-family:georgia; }
#search .button { float:left; width:38px; height:35px; background-color:transparent; border:0px; }

#wrapper	{background: url(images/bg2.jpg) top center no-repeat; min-height:100vh; padding: 14px 16px 48px; }
#wrapper2	{width:100%; max-width:960px; margin:0 auto; }
#leftbg { width:100%; background:none; }
#rightbg { width:100%; background:none; }
#inner { float:none; width:100%; box-sizing: border-box; }

#notfront-right {
    float: none;
    position: relative;
    z-index: 1000;
    width: 100%;
    max-width: 960px;
    background: #ffffff;
}

#notfront-right.homepage-shell {
    background: none;
    padding: 0;
}

.homepage {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding: 24px 40px 32px;
    box-sizing: border-box;
}

.homepage-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
    color: #31411f;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.homepage-intro h1 {
    margin: 0;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.homepage-intro p {
    margin: 0;
    font-size: 18px;
    color: #556645;
    line-height: 1.5;
}

.home-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    align-items: stretch;
}

.home-card {
    display: flex;
    flex-direction: column;
        background: none; 
    background: #ffffff;
    box-shadow: 0 12px 34px rgba(25, 33, 18, 0.26);
    overflow: hidden;
    min-height: 0;
    transition: box-shadow 0.18s ease;
    border-radius: 20px;
}

.home-card:hover,
.home-card:focus-within {
    box-shadow: 0 18px 48px rgba(25, 33, 18, 0.34);
}

.home-card__media {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, #faf6eb 0%, #f0ece0 100%);
    border-bottom: 1px solid rgba(65, 81, 45, 0.12);
    border-radius: 20px 20px 0 0 !important;
}

.home-card__media::before {
    content: "";
    display: block;
    padding-top: 62.5%;
    border-radius: inherit;
}

.home-card__media img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: contain;
    border-radius: 20px 20px 0 0 !important;
    box-shadow: 0 12px 30px rgba(22, 28, 16, 0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.home-card__media:hover img,
.home-card__media:focus img {
    box-shadow: 0 20px 48px rgba(22, 28, 16, 0.28);
}

.home-card__media--content-width {
    padding: 0;
    background: none;
    border-bottom: none;
    border-radius: 20px 20px 0 0 !important;
}

.home-card__media--content-width::before {
    display: none;
}

.home-card__media--content-width img {
    position: static;
    width: 100%;
    height: auto;
    max-height: 260px;
    transform: none;
    object-fit: contain;
    object-position: center top;
    border-radius: 20px 20px 0 0 !important;
    box-shadow: 0 10px 26px rgba(22, 28, 16, 0.2);
}

.home-card__media--content-width:hover img,
.home-card__media--content-width:focus img {
    box-shadow: 0 18px 40px rgba(22, 28, 16, 0.28);
}

.home-card__media--golf img {
    filter: none;
}

.home-card__body {
    padding: 16px 18px 20px;
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #3b4a28;
    font-family: Arial, sans-serif;
}

.home-card__title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #2b381c;
    letter-spacing: 0.01em;
}

.home-card__copy {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
    color: #4e5d35;
}

.home-card__cta {
    align-self: flex-start;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
    background: linear-gradient(180deg, #6f8b4a 0%, #4f692f 100%);
    border-radius: 999px;
    text-decoration: none;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.home-card__cta:hover,
.home-card__cta:focus {
    transform: translateY(-1px);
    box-shadow: 0 6px 12px rgba(58, 80, 32, 0.18);
    background: linear-gradient(180deg, #7b9c52 0%, #5d7538 100%);
    color: #ffffff;
    text-decoration: none;
}

.home-card__cta svg {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

@media (max-width: 720px) {
    .homepage {
        padding: 20px 20px 24px;
    }
}
#content-container {
    float: none;
    padding: 10px 32px 0;
    width: 100%;
    background-color: white;
    font-family: arial;
    font-size: 16px;
    line-height: 1.4;
    color: #3b3b3b;
    box-sizing: border-box;
}
#rightbar { float:right; text-align:center; width:250px; background:url(images/rightbarbg.jpg) repeat-y right; }
#rightbar_inner { text-align:center; padding-top:15px; }
#outercontainer { float:left; width:957px; }

.news_shell { clear:left; float:left; width:610px; border-bottom:1px solid #CCCCCC; padding-bottom:20px; }
.news_photo { float:left; height:177px; width:180px; padding-top:20px; }
.news_text { float:left; padding-left:20px; width:410px; padding-top:20px; }


#mainnavwrap {
    clear: both;
    float: none;
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    margin-top: 6px;
    border-radius: 15px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f2ea 60%, #e5e1d2 100%);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 14px;
    --nav-text: #31411f;
    --nav-subtitle: rgba(49, 65, 31, 0.75);
    --nav-subtitle-hover: rgba(49, 65, 31, 0.9);
    --nav-base-top: #f9f7f0;
    --nav-base-bottom: #ebe7d5;
    --nav-hover-top: #e4dfca;
    --nav-hover-bottom: #d6cdb6;
    --nav-active-top: #dcd4be;
    --nav-active-bottom: #ccc3aa;
    --nav-border: #d8d2c2;
}

#mainnav {
    width: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mainnav__header {
    display: none;
}

.mainnav__brand {
    display: none;
    align-items: center;
    text-decoration: none;
    gap: 12px;
}

.mainnav__brand img {
    display: block;
    height: 54px;
    width: auto;
}

.mainnav__toggle {
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
            margin-bottom: 14px;
    padding: 14px 20px;
    background: none;
    border: none;
    color: var(--nav-text);
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.mainnav__toggle:focus-visible {
    outline: 3px solid rgba(255, 255, 255, 0.85);
    outline-offset: 3px;
}

.mainnav__toggle-box {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
}

.mainnav__toggle-line {
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: var(--nav-text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.mainnav__toggle-label {
    font-size: 15px;
    letter-spacing: 0.08em;
}

.mainnav--open .mainnav__toggle-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mainnav--open .mainnav__toggle-line:nth-child(2) {
    opacity: 0;
}

.mainnav--open .mainnav__toggle-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mainnav__menu {
    width: 100%;
    background: #ffffff;
    border-radius: 15px;
    overflow: hidden;
}

.layout-nav-divider {
    display: none;
}
#mainnavul {
    height: auto;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-decoration: none;
}
#heroimage {
    max-width: 960px;
    margin: 0 auto 12px;
    overflow: hidden;
}

#heroimage img {
    width: 100%;
    height: 193px;
    object-fit: cover;
    object-position: top center;
    display: block;
}

.video-hero {
    max-width: 960px;
    margin: 0 auto 16px;
}

.article-content #content-container > p:first-child,
.article-content > p:first-child {
    margin-top: 0;
}

.page-donate {
    max-width: 640px;
    margin: 32px auto 0;
    padding: 24px 26px 28px;
    background: rgba(244, 241, 232, 0.72);
    border-radius: 24px;
    box-shadow: 0 18px 48px rgba(25, 30, 18, 0.18);
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
    clear: both;
}

.page-donate__heading {
    margin: 0;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #31411f;
    text-align: center;
    text-justify: auto;
    -webkit-hyphens: none;
    hyphens: none;
    -ms-hyphens: none;
}

.page-donate__form {
    display: flex;
    justify-content: center;
}

.page-donate__form > * {
    width: 100%;
}

.page-donate__form form {
    width: 100%;
    display: flex;
    justify-content: center;
}

.page-donate__form form .give-card__cta {
    width: auto;
}

.page-donate__extras {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    color: #3b4a28;
    line-height: 1.6;
}

.page-donate__extras a {
    color: #4f692f;
    font-weight: 700;
    text-decoration: none;
}

.page-donate__extras a:hover,
.page-donate__extras a:focus {
    text-decoration: underline;
}

.page-donate__extras-media {
    margin-top: 18px;
}

.page-donate__extras-media img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(19, 24, 14, 0.18);
}

#content-container ul {
    width: 100%;
    padding: 0 0 0 18px;
    margin: 0;
    font-family: arial;
    font-size: 16px;
    color: #3b3b3b;
    box-sizing: border-box;
}
#content-container ul li { line-height:15px; padding-bottom:10px; }

#content-container .secondarytitle { font-weight:bold; font-size:24px; color:black; }
#content-container .thirdtitle {
    font-weight: bold;
    font-size: 18px;
    color: #4f692f;
}

#aboutus-content .thirdtitle {
    font-weight: bold;
    font-size: 18px;
    color: #4f692f;
}

#aboutus-content .work-section {
    margin-bottom: 32px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    --work-img-w: 300px;
    --work-img-max-h: 200px;
    --work-media-order: 2;
    --work-body-order: 1;
}

#aboutus-content .work-section__media {
    order: var(--work-media-order);
    flex: 0 0 auto;
    width: auto;
    max-width: var(--work-img-w);
    align-self: flex-start;
}

#aboutus-content .work-section__body {
    order: var(--work-body-order);
    flex: 1 1 auto;
    min-width: 0;
}

#aboutus-content .work-section__image {
    width: auto;
    height: auto;
    max-height: var(--work-img-max-h);
    max-width: 100%;
    margin: 0 0 14px 0;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(20,26,14,0.13);
    display: block;
}

#aboutus-content .work-section--education {
    --work-img-max-h: 250px;
}

@media (min-width: 801px) {
    #aboutus-content .work-section {
        margin-bottom: 44px;
        align-items: center;
    }

    #aboutus-content .work-section--education .work-section__media {
        max-width: none;
    }

    #aboutus-content .work-section--education .work-section__image {
        width: auto;
        height: 250px;
        max-height: none;
        max-width: 100%;
        margin: 0;
        border-radius: 18px;
    }

    #aboutus-content .work-section--encouragement .work-section__media {
        max-width: none;
    }

    #aboutus-content .work-section--encouragement .work-section__image {
        width: auto;
        height: 250px;
        max-height: none;
        max-width: 100%;
        margin: 0;
        border-radius: 18px;
    }

    #aboutus-content .work-section--water .work-section__media {
        max-width: var(--work-img-w);
        width: var(--work-img-w);
        height: 250px;
        overflow: hidden;
        border-radius: 18px;
        box-shadow: 0 8px 24px rgba(20,26,14,0.13);
    }

    #aboutus-content .work-section--water .work-section__image {
        width: 103%;
        height: 250px;
        max-height: none;
        max-width: none;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        object-fit: cover;
        object-position: left center;
        display: block;
    }

    #aboutus-content .work-section--eggs .work-section__media {
        max-width: none;
        background: transparent !important;
        padding: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    #aboutus-content .work-section--eggs .work-section__image {
        width: auto;
        height: 250px;
        max-height: none;
        max-width: 100%;
        margin: 0;
        border-radius: 18px !important;
        clip-path: inset(0 round 18px);
        box-shadow: 0 8px 24px rgba(20,26,14,0.13) !important;
        background: transparent !important;
        display: block;
    }

    #aboutus-content .work-section--families .work-section__media {
        max-width: none;
        height: 200px;
        overflow: hidden;
        border-radius: 18px;
        box-shadow: 0 8px 24px rgba(20,26,14,0.13);
    }

    #aboutus-content .work-section--families .work-section__image {
        width: auto;
        height: 250px;
        max-height: none;
        max-width: 100%;
        margin: 0;
        border-radius: 0;
        box-shadow: none;
        position: relative;
        top: -25px;
        display: block;
    }
}

#aboutus-content .work-section--encouragement {
    --work-img-max-h: 180px;
    --work-media-order: 1;
    --work-body-order: 2;
}

#aboutus-content .work-section--families {
    --work-img-max-h: 170px;
}

#aboutus-content .work-section--water {
    --work-img-max-h: 210px;
    --work-media-order: 1;
    --work-body-order: 2;
}

#aboutus-content .work-section--eggs {
    --work-img-max-h: 170px;
}

#aboutus-content .work-section--commitment {
    display: block;
}

@media (max-width: 800px) {
    #aboutus-content .work-section {
        flex-direction: column;
        gap: 14px;
    }

    #aboutus-content .work-section__body {
        order: 1;
        max-width: none;
    }

    #aboutus-content .work-section__media {
        order: 2;
        max-width: none;
    }

    #aboutus-content .work-section__image {
        width: auto;
        max-width: min(520px, 100%);
        max-height: 320px;
        margin: 14px auto 18px auto;
    }

    #aboutus-content .work-section--education .work-section__image {
        width: 100%;
        max-width: none;
        height: 340px;
        max-height: none;
        margin: 0 0 18px 0;
        object-fit: cover;
        object-position: center 18%;
    }

    #aboutus-content .work-section--encouragement .work-section__image {
        width: 100%;
        max-width: none;
        height: 340px;
        max-height: none;
        margin: 0 0 18px 0;
        object-fit: cover;
        object-position: center 27%;
    }

    #aboutus-content .work-section--families .work-section__image {
        width: 100%;
        max-width: none;
        height: 340px;
        max-height: none;
        margin: 0 0 18px 0;
        object-fit: cover;
        object-position: center;
    }

    #aboutus-content .work-section--water .work-section__image {
        width: 100%;
        max-width: none;
        height: auto;
        max-height: none;
        margin: 0 0 18px 0;
    }

    #aboutus-content .work-section--eggs .work-section__media {
        width: 100%;
        max-width: none;
        align-self: stretch;
        padding: 0 !important;
        margin: 0 !important;
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        overflow: visible !important;
    }

    #aboutus-content .work-section--eggs .work-section__image {
        width: 100%;
        max-width: none;
        height: 340px;
        max-height: none;
        margin: 0 0 18px 0;
        border-radius: 18px !important;
        box-shadow: 0 8px 24px rgba(20,26,14,0.13) !important;
        background: transparent !important;
        clip-path: inset(0 round 18px);
        object-fit: cover;
        object-position: center 18%;
        display: block;
    }
}

#aboutus-content .work-section__body > p:first-child {
    margin-top: 0;
    margin-bottom: 6px;
}

#aboutus-content .work-section__body > p:first-child + p {
    margin-top: 0;
}
#content-container .yearselection { font-weight:bold; font-size:18px; text-align:center; }
#content-container .yearselection a { padding:15px; }

    .linkbarul {
        margin: 0;
        padding: 0 32px;
        list-style: none;
        display: flex;
        flex-wrap: nowrap;
        align-items: stretch;
    justify-content: space-evenly;
    gap: 0;
        width: 100%;
        box-sizing: border-box;
    }
    .linkbarul li {
        position: relative;
        margin: 0;
        padding: 0;
        display: flex;
        flex: 1 1 0;
        min-width: 0;
        justify-content: center;
    }
    .linkbarul li::after {
        content: "";
        position: absolute;
        top: 12px;
        bottom: 12px;
        right: 0;
        width: 1px;
        background: rgba(0, 0, 0, 0.32);
        pointer-events: none;
    }
    .linkbarul li:last-child::after {
        display: none;
    }
    .linkbarul li a {
        position: relative;
        z-index: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
	flex: 1 1 auto;
    padding: 12px 24px 12px;
    margin: 0;
    width: 100%;
        border-radius: 12px 12px 0 0;
        color: var(--nav-text);
        letter-spacing: 0.8px;
        text-transform: uppercase;
        text-decoration: none;
        background: none;
        border: none;
        box-shadow: none;
        transition: color 0.2s ease;
        line-height: 1.05;
    min-height: 60px;
        text-align: center;
        font-weight: 800;
        white-space: nowrap;
    }
    .linkbarul li a::before {
        content: "";
        position: absolute;
        inset: 6px 12px;
        border-radius: 12px;
        background: linear-gradient(180deg, #d8d8d8 0%, #bfbfbf 100%);
        opacity: 0;
        transition: opacity 0.2s ease;
        z-index: -1;
    }
    .linkbarul li a::after {
        content: var(--subtitle, "");
        display: block;
        font-size: 12px;
        font-style: italic;
        font-weight: 500;
        letter-spacing: 0.08em;
        text-transform: none;
    line-height: 1.25;
    margin-top: -2px;
    color: var(--nav-subtitle-hover);
    opacity: 0.88;
    }
    .linkbarul li a:hover,
    .linkbarul li a:focus {
        color: var(--nav-text);
        outline: none;
    }
    .linkbarul li a:hover::before,
    .linkbarul li a:focus::before {
        opacity: 1;
    }
    .linkbarul li a:hover::after,
    .linkbarul li a:focus::after {
        color: var(--nav-subtitle-hover);
        opacity: 1;
    }

    @media (max-width: 1024px) {
        #wrapper {
            padding: 14px 20px 42px;
            background-size: cover;
        }

        #wrapper2,
        #rightbg,
        .layout-content-frame,
        #mainnavwrap,
        #inner,
        #notfront-right {
            max-width: 100%;
        }

        #leftbg,
        #rightbg,
        #notfront-right {
            background: none;
        }

        .layout-shell {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        #content-container,
        #rightbar,
        #outercontainer,
        .news_shell,
        .news_photo,
        .news_text {
            float: none;
            width: 100%;
        }

        #content-container {
            padding: 20px 16px;
            box-sizing: border-box;
        }

        #rightbar {
            margin-top: 24px;
            background: none;
        }

        #headerwrap,
        #awardtext,
        #award {
            float: none;
            width: 100%;
            text-align: center;
            padding-left: 0;
        }

        #headerwrap {
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            text-align: left;
            padding-top: 0;
            padding-bottom: 20px;
        }

        #awardtext {
            padding-top: 24px;
        }

        #award {
            padding-top: 16px;
        }
    }

    @media (max-width: 1024px) and (min-width: 901px) {
        .layout-shell {
            gap: 0;
        }

        #headerwrap {
            padding-bottom: 22px;
        }
    }

    @media (max-width: 900px) {
        #headerwrap {
            display: none;
        }

        #mainnavwrap {
            margin-top: 0;
            margin-bottom: 18px;
            background: none;
            box-shadow: none;
            border-radius: 0;
        }

        .layout-shell {
            gap: 12px;
        }

        .mainnav__header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 6px 0 0;
            background: none;
            gap: 12px;
        }

        .mainnav__brand {
            display: inline-flex;
            flex: 1 1 auto;
            max-width: 72%;
        }


        .mainnav__brand img {
            height: 122px;
            margin-bottom: 2px; /* Further reduced space below logo */
        }

        .mainnav__toggle {
            display: inline-flex;
            margin-left: auto;
            width: auto;
            padding: 12px 20px 12px 0;
            margin-top: 7px; /* 2px more than before */
            font-weight: 600;
            font-size: 18px;
            letter-spacing: 0.10em;
        }
        .mainnav__toggle-box {
            gap: 7px;
        }
        .mainnav__toggle-line {
            height: 3px;
            background: #222;
        }

        .mainnav__toggle-box {
            padding: 0;
        }

        .mainnav__menu {
            display: none;
            border-radius: 15px 15px 15px 15px;
            border-top: 1px solid rgba(49, 65, 31, 0.18);
            box-shadow: 0 16px 36px rgba(34, 43, 24, 0.22);
        }

        #mainnav.mainnav--open .mainnav__menu {
            display: block;
            margin-top: 26px;
        }

        .linkbarul {
            padding: 4px 20px 20px;
            flex-direction: column;
            gap: 12px;
        }

        .linkbarul li {
            flex: 1 1 auto;
            width: 100%;
            justify-content: flex-start;
        }

        .linkbarul li::after {
            display: none;
        }

        .linkbarul li a {
            width: 100%;
            white-space: normal;
            padding: 12px 16px;
            border-radius: 12px;
            background: rgba(248, 246, 240, 0.95);
            box-shadow: 0 8px 20px rgba(22, 28, 16, 0.18);
        }

        .homepage {
            padding: 22px 24px 28px;
        }

        .home-grid {
            gap: 24px;
        }
    }

    @media (max-width: 640px) {
        #wrapper {
            padding: 12px 14px 34px;
        }

        .layout-shell {
            gap: 8px;
        }

        .layout-footer-text {
            font-size: 11px;
            line-height: 1.5;
        }

        .mainnav__brand {
            max-width: 78%;
        }

        .mainnav__brand img {
            height: 110px;
        }

        .linkbarul {
            padding: 6px 20px 20px;
            gap: 12px;
        }

        .linkbarul li a {
            padding: 12px 16px;
            font-size: 15px;
            min-height: 0;
        }
    }

    @media (max-width: 540px) {
        .layout-shell {
            gap: 4px;
        }

        .layout-footer-text {
            font-size: 11px;
            line-height: 1.5;
        }

        .mainnav__header {
            padding: 6px 0 0;
        }

        .mainnav__brand img {
            height: 100px;
        }

        .mainnav__toggle {
            padding: 0 20px 0 0;
            gap: 10px;
        }

        #footerwrap {
            padding: 0 12px 24px;
        }

        .homepage {
            padding: 18px 16px 24px;
            gap: 24px;
        }

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

        .home-card__body {
            padding: 14px 16px 8px;
        }

        .home-card__title {
            font-size: 17px;
        }

        .home-card__media--content-width img {
            max-height: 220px;
        }

        .linkbarul {
            padding: 6px 18px 18px;
            gap: 12px;
        }

        .linkbarul li a {
            padding: 12px 16px;
            font-size: 15px;
        }
    }
    .linkbarul li a:focus-visible {
        outline: 3px solid rgba(255, 255, 255, 0.9);
        outline-offset: 2px;
    }
    .linkbarul li a[aria-current="page"],
    .linkbarul li.current a,
    .linkbarul li.active a {
        color: var(--nav-text);
        cursor: default;
    }
    .linkbarul li a[aria-current="page"]::before,
    .linkbarul li.current a::before,
    .linkbarul li.active a::before {
        opacity: 1;
    }
    .linkbarul li a[aria-current="page"]::after,
    .linkbarul li.current a::after,
    .linkbarul li.active a::after {
        color: var(--nav-subtitle-hover);
        opacity: 1;
    }
    .linkbarul li#home a { --subtitle: "start here"; }
    .linkbarul li#aboutus a { --subtitle: "who we are"; }
    .linkbarul li#ourwork a { --subtitle: "what we do"; }
    .linkbarul li#news a { --subtitle: "news updates"; }
    .linkbarul li#waystogive a { --subtitle: "getting involved"; }
	.linkbarul li#contactus a { --subtitle: "say hello"; }

.copy { font-family:georgia; font-size:13px; color:#666666; }
.fp_title { font-family:helvetica; font-weight: bold; font-size: 16px; color:black; }
.fp_date { font-family:georgia; font-size:15px; font-style:italic; font-weight:bold; color:#7F8754; }
.fp_subtitle { font-family:helvetica; font-weight: bold; font-size: 16px; color:black; }


#footerwrap {
    width: 100%;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 16px 32px;
    box-sizing: border-box;
    clear: both;
}

#footer {
    padding: 0;
    color: #666666;
}
