/*B5v2.1 082025*/
/* --- 1. Global & Root --- */
@import url("https://use.typekit.net/hge5yto.css");
:root {
  --white: #FFFFFF;
  --black: #000000;
  --primary: #A6192E; /*BRAND COLOR — Red*/
  --secondary: #00313C; /*BRAND COLOR — Nordic*/
  --success: #62B5E5; /*BRAND COLOR — Sky Blue*/
  --light: #D9D9D6; /*BRAND COLOR — Soft Gray*/
  --dark: #53565A; /*BRAND COLOR — Gray*/
  --danger: color-mix(in srgb, var(--primary), var(--black) 10%);
  --warning: #FFB81C; /*BRAND COLOR — Gold*/
  --info: #A5D0DC; /*BRAND COLOR — Light Blue*/
}
*{ box-sizing: border-box; }
html, body { background-color: var(--white); font-family: "proxima-nova", sans-serif; font-size: 16px; font-weight: 400; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: inherit; text-decoration: none !important; }
a:hover { color: var(--primary); }
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6, .display-2 { font-family: "museo-slab", serif; font-weight: 700; }
ul { list-style: none; margin: 0; padding: 0; }
p { color: var(--black); line-height: 25px; }
img { max-width: 100%; height: auto; }
ul.square-list { margin-inline-start: 20px; }
ul.square-list > li { list-style-type: square; }
.object-fit-cover { width: 100%; height: 100%; object-fit: cover; }
:focus-visible { outline: 2px dashed var(--primary); outline-offset: 1px; }
.offscreen { position: absolute; height: 1px; width: 1px; overflow: hidden; clip-path: inset(1px 1px 1px 1px); }
.skip-to-content.offscreen:focus { position: relative; display: inline; }
legend { font-size: 16px; margin-top: 15px; }
.form-group { margin-bottom: 15px !important; }

/* --- 2. Utilities --- */
.bg-dark { background-color: var(--black) !important; color: var(--white) !important; }
.bg-primary { background-color: var(--primary) !important; }
.bg-secondary { background-color: var(--secondary) !important; }
.bg-success { background-color: var(--success) !important; }
.bg-danger { background-color: var(--danger) !important; }
.bg-warning { background-color: var(--warning) !important; }
.bg-info { background-color: var(--info) !important; }
.bg-light { background-color: var(--light) !important; }
.bg-white { background-color: var(--white) !important; }
.bg-black { background-color: var(--black) !important; }
.text-primary { color: var(--primary) !important; }
.text-secondary { color: var(--secondary) !important; }
.text-success { color: var(--success) !important; }
.text-danger { color: var(--danger) !important; }
.text-warning { color: var(--warning) !important; }
.text-info { color: var(--info) !important; }
.text-dark { color: var(--dark) !important; }
.text-light { color: var(--light) !important; }
.text-white { color: var(--white) !important; }
.text-black { color: var(--black) !important; }
.border-primary { border-color: var(--primary) !important; }
.border-secondary { border-color: var(--secondary) !important; }
.border-success { border-color: var(--success) !important; }
.border-danger { border-color: var(--danger) !important; }
.border-warning { border-color: var(--warning) !important; }
.border-info { border-color: var(--info) !important; }
.border-dark { border-color: var(--dark) !important; }
.border-light { border-color: var(--light) !important; }
.border-white { border-color: var(--white) !important; }
.border-black { border-color: var(--black) !important; }

/* --- 3. Header (Revised for Flexible Height) --- */
.background-header { position: fixed !important; top: 0 !important; left: 0; right: 0; z-index: 100; transition: all .5s ease; }
.header-area { background-color: var(--primary); position: relative; transition: all .5s ease; z-index: 100; }
.header-area .main-nav { display: flex; align-items: center; justify-content: space-between; padding: 5px 0; }
.header-area .main-nav .logo { flex-shrink: 0; }
.header-area .main-nav a.logo > img { display: block; height: 30px; width: auto; }
.header-area .main-nav .nav { display: none; align-items: center; gap: 4px; }
.header-area .main-nav .nav li a { display: block; background-color: transparent; color: var(--white); font-family: "museo-slab", serif; font-size: 15px; font-weight: 700; padding: 10px 15px; transition: all 0.3s ease; }
.header-area .main-nav .nav li:hover a, .header-area .main-nav .nav li a.active { background-color: var(--secondary); color: var(--white) !important; }
.background-header .main-nav .nav li:hover a, .background-header .main-nav .nav li a.active { background-color: var(--secondary); color: var(--white) !important; }
.header-area .main-nav .nav li.has-sub { position: relative; padding-right: 15px; }
.header-area .main-nav .nav li.has-sub:after { color: var(--white); content: "\f107"; font-family: FontAwesome; font-size: 12px; position: absolute; right: 0; top: 50%; transform: translateY(-50%); }
.header-area .main-nav .nav li.has-sub:hover ul.sub-menu { opacity: 1; transform: translateY(0); visibility: visible; z-index: 1; }
.header-area .main-nav .nav li.has-sub ul.sub-menu { background: var(--white); box-shadow: 0 2px 28px rgba(0,0,0,.06); opacity: 0; position: absolute; top: 100%; transform: translateY(1em); transition: all .3s; visibility: hidden; width: 200px; }
.header-area .main-nav .nav li.has-sub ul.sub-menu li a { color: var(--black) !important; font-size: 13px; font-weight: 400; padding: 10px 20px; border-bottom: 1px solid var(--info); }
.header-area .main-nav .nav li.has-sub ul li a:hover { background: var(--success); color: var(--primary) !important; padding-left: 25px; }
.header-area .main-nav .menu-trigger { cursor: pointer; display: block; height: 40px; position: absolute; right: 10px; top: 50%; transform: translateY(-50%); text-indent: -9999em; width: 32px; z-index: 99; border: 0; background: transparent; padding: 0; }
.header-area .main-nav .menu-trigger span, .header-area .main-nav .menu-trigger span:before, .header-area .main-nav .menu-trigger span:after { background-color: var(--white); display: block; height: 2px; position: absolute; transition: all 0.4s; width: 30px; }
.header-area .main-nav .menu-trigger span:before, .header-area .main-nav .menu-trigger span:after { content: ""; }
.header-area .main-nav .menu-trigger span { top: 16px; }
.header-area .main-nav .menu-trigger span:before { top: -10px; transform-origin: 33% 100%; }
.header-area .main-nav .menu-trigger span:after { top: 10px; transform-origin: 33% 0; }
.header-area .main-nav .menu-trigger.active span { background-color: transparent; }
.header-area .main-nav .menu-trigger.active span:before { background-color: var(--white); transform: translateY(6px) translateX(1px) rotate(45deg); }
.header-area .main-nav .menu-trigger.active span:after { background-color: var(--white); transform: translateY(-6px) translateX(1px) rotate(-45deg); }
.sub-header {font-size:.84rem;}

/* --- 4. Page Sections & Components --- */
section.heading-page, section.landing-header, section.donor-header { background-repeat: no-repeat; background-size: cover; min-height: 420px; display: flex; align-items: flex-end; padding: 60px 0 0; text-align: left; }
section.heading-page { background-image: url(/assets/images/heading-bg.jpg); background-position: center 10%; }
section.landing-header { background-image: url(/assets/images/landing-bg.jpg); background-position: center 15%; }
section.donor-header { background-image: url(/assets/images/donor-bg.jpg); background-position: center center; }
section.heading-page .container, section.landing-header .container, section.donor-header .container { background-color: var(--primary); clip-path: polygon(0 0, 85% 0, 100% 100%, 0 100%); padding: 2.5rem 3rem; }
section.heading-page .container > *, section.landing-header .container > *, section.donor-header .container > * { max-width: 640px; }
section.heading-page h6, section.heading-page .h6, section.landing-header h6, section.landing-header .h6, section.donor-header h6, section.donor-header .h6 { color: var(--white); font-size: 15px; letter-spacing: 1px; margin-top: 0; margin-bottom: .5rem; }
section.heading-page h2, section.heading-page .h2, section.landing-header h2, section.landing-header .h2, section.donor-header h2, section.donor-header .h2 { color: var(--white); font-size: 36px; letter-spacing: 1px; margin: 0; position: relative; padding-bottom: 16px; display: inline-block; }
section.heading-page h2:after, section.heading-page .h2:after, section.landing-header h2:after, section.landing-header .h2:after, section.donor-header h2:after, section.donor-header .h2:after { content: ""; position: absolute; left: 0; bottom: 0; width: 60px; height: 3px; background-color: var(--warning); }
section.landing-page, section.donor-page, section.downloads-page { padding-top: 30px; padding-bottom: 0; }
.main-banner { position: relative; max-height: 600px; overflow: hidden; background-color: var(--black); height: calc(100vh - 41px); }
#bg-video { width: 100%; height: 600px; z-index: 0; overflow: hidden; }
.owl-main.owl-carousel .owl-item img { width: 100%; height: 600px; object-fit: cover; }
.video-overlay { background: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 0%); position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.main-banner .caption { width: 100%; background-color: color-mix(in srgb, var(--secondary) 80%, transparent); z-index: 2; pointer-events: all; text-align: left; color: var(--white) !important; }
.main-banner .caption p, .main-banner .caption h1 { color: var(--white) !important; }
.main-banner .caption .eyebrow { font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 4px; opacity: .9; }
.main-banner .caption h1 { font-size: 30px; line-height: 1.2; margin-bottom: 8px; }
.main-banner .caption p { font-size: 15px; margin-bottom: 0; }
.main-banner .caption .scroll-to-section { margin-top: 14px; }
.services { margin-top: -135px; position: absolute; width: 100%; }
.services .item { background: var(--primary); background-position: center; background-repeat: no-repeat; background-size: cover; border-radius: 20px; color: var(--white); padding: 40px; text-align: center; }
.services .item .icon { margin: 0 auto; max-width: 100px; }
.services .item p { color: var(--white); font-size: 13px; }
.services .item p.h4 > a { color: var(--white); font-size: 18px; font-weight: 700; margin: 25px 0 15px; }
.owl-custom-nav .owl-nav { display: none; }
.owl-custom-nav .owl-nav .owl-prev span, .owl-custom-nav .owl-nav .owl-next span { opacity: 0; }
.owl-custom-nav .owl-nav .owl-prev, .owl-custom-nav .owl-nav .owl-next { position: absolute; top: 50%; transform: translateY(-50%); outline: none; transition: opacity .5s; }
.owl-custom-nav .owl-nav .owl-prev:before, .owl-custom-nav .owl-nav .owl-next:before { background-color: var(--white); border-radius: 50%; color: var(--black); display: inline-block; font-family: 'FontAwesome'; font-size: 25px; font-weight: 700; height: 50px; line-height: 50px; width: 50px; }
.owl-custom-nav .owl-nav .owl-prev:hover, .owl-custom-nav .owl-nav .owl-next:hover { opacity: 0.9; }
.owl-custom-nav .owl-nav .owl-prev { left: -80px; }
.owl-custom-nav .owl-nav .owl-prev:before { content: '\f104'; }
.owl-custom-nav .owl-nav .owl-next { right: -85px; }
.owl-custom-nav .owl-nav .owl-next:before { content: '\f105'; }
.image-extend-right-wrapper { width: 100%; }
.image-extend-right-wrapper img { width: 100%; height: auto; display: block; }
/* Angled two-tone card section (planned-giving / society blocks) — ONE shared shape behind both card rows */
.angled-card-section { position: relative; padding: 90px 0; overflow: hidden; }
.angled-card-section .angled-bg { position: absolute; inset: 0; background-color: color-mix(in srgb, var(--light) 70%, transparent); z-index: 0; }
.angled-card-section .angled-bg:after { content: ""; position: absolute; top: 0; right: 0; width: 360px; height: 360px; max-width: 30%; aspect-ratio: 1 / 1; background-color: var(--white); clip-path: polygon(0 0, 100% 0, 100% 100%); }
.angled-card-section .container { position: relative; z-index: 1; }
.angled-card-img { width: 100%; aspect-ratio: 1 / 1; background-size: cover; background-position: center; }
.angled-card-section h2 { color: var(--primary); font-size: 28px; margin-bottom: 20px; position: relative; padding-bottom: 16px; }
.angled-card-section h2:after { content: ""; position: absolute; left: 0; bottom: 0; width: 60px; height: 3px; background-color: var(--warning); }
.angled-card-section .btn-primary { display: inline-flex; align-items: center; gap: 8px; }
@media (max-width: 991px) { .angled-card-img { aspect-ratio: 16 / 9; } }
.contact-form-section { position: relative; padding: 90px 0; overflow: hidden; }
.contact-form-section .angled-bg { position: absolute; inset: 0; background-color: color-mix(in srgb, var(--light) 70%, transparent); z-index: 0; }
.contact-form-section .angled-bg:after { content: ""; position: absolute; top: 0; right: 0; width: 72px; height: 72px; max-width: 12%; aspect-ratio: 1 / 1; background-color: var(--white); clip-path: polygon(0 0, 100% 0, 100% 100%); }
.contact-form-section .container { position: relative; z-index: 1; }
.contact-form-section .card { box-shadow: 0 15px 35px rgba(0,0,0,0.1); }
.contact-form-section h2 { color: var(--primary); position: relative; padding-bottom: 16px; display: inline-block; }
.contact-form-section h2:after { content: ""; position: absolute; left: 0; bottom: 0; width: 60px; height: 3px; background-color: var(--warning); }
.contact-us { background-color: var(--white); padding: 40px 0; }
.contact-us-panel { position: relative; background-color: var(--primary); padding: 3rem; overflow: hidden; }
.contact-us-panel:after { content: ""; position: absolute; top: 0; right: 0; width: 72px; height: 72px; max-width: 12%; aspect-ratio: 1 / 1; background-color: var(--white); clip-path: polygon(0 0, 100% 0, 100% 100%); }
.contact-us-panel .row { position: relative; z-index: 1; }
.contact-us .card { height: 100%; }
.contact-us .card .card-body { padding: 2.5rem; }
.contact-us h2 { color: var(--primary); position: relative; padding-bottom: 16px; display: inline-block; }
.contact-us h2:after { content: ""; position: absolute; left: 0; bottom: 0; width: 60px; height: 3px; background-color: var(--warning); }
.contact-us .card.contact-card { position: relative; }
.contact-us .card.contact-card .card-body { padding: 2.5rem 2.5rem 2.5rem 7.5rem; }
.contact-photo { position: absolute; top: 0; left: 0; width: 90px; height: 90px; object-fit: cover; clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%); }
.contact-eyebrow { letter-spacing: 1.5px; font-weight: bold; }
section.upcoming-how-to-give { position: relative; background-color: var(--info); padding: 70px 0; overflow: hidden; text-align: center; }
section.upcoming-how-to-give:after { content: ""; position: absolute; top: 0; right: 0; width: 72px; height: 72px; max-width: 12%; aspect-ratio: 1 / 1; background-color: color-mix(in srgb, var(--light) 70%, white); clip-path: polygon(0 0, 0 100%, 100% 100%); transform: rotate(180deg); }
section.upcoming-how-to-give:before { content: ""; position: absolute; bottom: 0; left: 0; width: 72px; height: 72px; max-width: 12%; aspect-ratio: 1 / 1; background-color: var(--white); clip-path: polygon(0 0, 0 100%, 100% 100%); }
section.upcoming-how-to-give .container { position: relative; z-index: 1; }
section.upcoming-how-to-give h2 { display: inline-block; position: relative; padding-bottom: 16px; }
section.upcoming-how-to-give h2:after { content: ""; position: absolute; left: 50%; bottom: 0; transform: translateX(-50%); width: 60px; height: 3px; background-color: var(--warning); }
section.upcoming-how-to-give p { max-width: 700px; margin-left: auto; margin-right: auto; }
section.how-to-give-cards { background-color: var(--white); padding: 70px 0; }
/* Card Base & Hover Interaction */
.transition { transition: all 0.35s ease-in-out; }
.give-item { position: relative; display: flex; flex-direction: column; background-color: var(--warning); clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%); border-radius: 0; padding: 1px; }
.give-item .down-content { position: relative; flex: 1 1 auto; background-color: var(--white); clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%); }
.give-item-lead-in {letter-spacing: 1.5px;font-weight:bold;}
.give-item:hover { transform: translateY(-8px); box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important; }
/* Icon & Icon Box Styling */
.give-icon { fill: var(--white) !important; height:18px; width:18px; transition: all 0.3s ease-in-out; }
.icon-box { position: absolute; top: 0; left: 0; background: var(--warning) !important; border: none !important; border-radius: 0; clip-path: polygon(0 0, 100% 0, 100% 80%, 80% 100%, 0 100%); display: inline-flex; align-items: center; justify-content: center; height: 44px; width: 44px; transition: all 0.3s ease-in-out; }
.give-item:hover .icon-box { background: var(--primary) !important; transform: scale(1.05); }
.give-item:hover .give-icon { fill: var(--white) !important; }
.our-courses .item .down-content { background-color: var(--white); height: 100%; }
.our-courses .item .down-content h3.h4 { border-bottom: 1px solid var(--light); color: var(--primary); font-size: 18px; padding: 25px; text-align: center; font-weight: 700; }
.our-courses .item .down-content .info { padding: 25px; }
.our-courses .item .down-content .info ul li { display: inline-block; margin-right: 1px; }
.our-courses .item .down-content .info ul li i { color: var(--primary); font-size: 14px; }
.our-courses .item .down-content .info span { color: var(--primary); display: inline-block; font-size: 15px; font-weight: 700; text-align: right; width: 100%; }
.our-courses .owl-dots { display: inline-block; margin-top: 40px; text-align: center; width: 100%; }
.our-courses .owl-dots .owl-dot { background-color: var(--white); border-radius: 50%; height: 7px; margin: 0px 5px; outline: none; transition: all .5s; width: 7px; }
.our-courses .owl-dots .active { border-radius: 4px; height: 8px; width: 24px; }
.services .owl-stage, #donors .owl-stage { display: flex; }
.services .owl-item, #donors .owl-item { display: flex; align-items: stretch; }
.services .item, #donors .item { height: 100%; }
.donors-section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.5rem; }
.donor-controls { display: flex; align-items: center; gap: 10px; }
.donor-controls .custom-nav-btn { background: none; border: none; color: var(--info); font-size: 24px; cursor: pointer; padding: 5px; line-height: 1; }
.donor-controls .custom-nav-btn:hover { color: var(--dark); }
.donor-controls .owl-stop-button { width: 40px; height: 40px; background-color: var(--info); border: none; border-radius: 50%; color: var(--dark); font-size: 16px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background-color .3s; }
.donor-controls .owl-stop-button:hover { background-color: #ddd; }
#donors .card {border-radius: 0;}
section.contact-us #contact input:not([type='submit']) { background-color: var(--white); border: none; height: 40px; margin-bottom: 10px; outline: none; padding: 0px 15px; width: 100%; }
section.contact-us #contact textarea { background-color: var(--white); border: none; border-radius: 20px; color: #7a7a7a; font-size: 13px; margin-bottom: 30px; max-height: 180px; min-height: 140px; outline: none; padding: 15px; width: 100%; }
section.contact-us #contact button { background-color: var(--primary); border: none; color: var(--white); display: inline-block; font-size: 13px; font-weight: 700; outline: none; padding: 12px 30px; transition: all .3s; }
section.contact-us #contact button:hover { opacity: 0.9; }
section.contact-us .right-info-2 { background-color: var(--white); z-index: 2; pointer-events: all; text-align: left; color: var(--dark) !important; }
.contact-image { border-radius: 50%; max-width: 125px; margin-bottom: 1em; }
#radio1, #radio2, #radio3 { height: 15px !important; display: inline-block; width: auto !important; margin-bottom: 0 !important; }
#contactForm label, label { display: inline-block !important; }
._checkbox-radio { display: flex; }
._checkbox-radio input { width: 15px !important; height: 15px !important; }
.donor-image-wrapper { position: relative; overflow: hidden; width: 100%; padding-top: 75%; }
.donor-image-wrapper img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover;border-radius:0}

/* --- 5. Buttons --- */
.btn { border-radius: 0px; text-align: left !important;font-weight:bold; }
.btn-primary {color: var(--white);border-color: var(--primary); background-color: var(--primary); cursor: pointer; transition: all 0.2s ease-in-out; }
.btn-primary:hover, .btn-primary:focus { color: var(--white); background-color: var(--black); border-color: var(--black); text-decoration: none; }
.btn-primary:focus { outline: 0; box-shadow: 0 0 0 0.25rem var(--light); }
.btn-primary:disabled, .btn-primary.disabled { color: var(--primary); background-color: transparent; border-color: var(--primary); opacity: 0.65; cursor: not-allowed; pointer-events: none; }

/* --- 6. Footer --- */
.footer-section { background-color: var(--secondary); color: var(--white); font-size: .75rem; padding: 1rem; }
.footer-section h2, .footer-section p, .footer-section li, .footer-section small { color: var(--white); }
.footer-section a { color: var(--white); text-decoration: underline !important; }
.footer-section a:hover { color: var(--warning); }
.footer-section .border-top { border-color: rgba(255,255,255,0.25) !important; }
.footer-logo { display: inline-block; margin-bottom: 15px; }
.footer-logo img { display: block; height: 32px; width: auto; }

/* --- 7. Media Queries --- */
@media (max-width: 991px) { .mobile-top-fix { margin-top: 30px; } .mobile-bottom-fix { margin-bottom: 30px; } .mobile-bottom-fix-big { margin-bottom: 60px; } .h-100 { height: auto !important; } .main-banner .caption h2 { font-size: 22px; margin-bottom: 10px; margin-top: 10px; } .services { margin-top: -135px; } section.upcoming-how-to-give { padding: 20px 0 0; } section.upcoming-how-to-give .categories { margin: 0 0 30px; } section.contact-us #contact { margin-bottom: 30px; } section.society-section { padding: 30px 0; } section.our-courses, section.contact-us { padding-top: 30px; padding-bottom: 20px; } }
@media (max-width: 767px) { .header-area { padding: 0 15px; } .header-area .main-nav .nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; width: 100%; background: var(--white); } .header-area .main-nav .nav li { width: 100%; padding: 0 !important; border-bottom: 1px solid var(--info); } .header-area .main-nav .nav li:first-child { border-top: 1px solid var(--info); } .header-area .main-nav .nav li a { color: var(--dark) !important; padding: 15px 20px !important; height: auto !important; line-height: normal !important; } .header-area .main-nav .nav li a:hover { background: var(--success) !important; color: var(--primary) !important; } .header-area .main-nav .nav li.has-sub ul.sub-menu { display: none; } .display-2 { font-size: calc(1.2rem + 1.9vw); } .donor-controls { display: none; } }
@media (min-width: 768px) { .header-area .main-nav .nav { display: flex !important; } .header-area .main-nav .menu-trigger { display: none !important; } .owl-nav { display: none; } }
@media (min-width: 992px) { .image-extend-right-wrapper { width: calc(100% + 100px); } .image-extend-right-wrapper img { max-width: none; } .header-area .main-nav a.logo > img { height: 60px;} }
@media (min-width: 1006px) { .owl-custom-nav .owl-nav { display: block !important; } }

/* --- Mobile/tablet QA pass (does not touch lg/xl desktop, >=992px) --- */
@media (max-width: 991px) {
  /* Headings ~15-20% smaller */
  .angled-card-section h2, .contact-us h2, .contact-form-section h2 { font-size: 23px; }
  section.heading-page h2, section.heading-page .h2, section.landing-header h2, section.landing-header .h2, section.donor-header h2, section.donor-header .h2 { font-size: 29px; }
  .give-item h3.h4 { font-size: 20px; }
  section.upcoming-how-to-give h2 { font-size: 23px; }

  /* Oversized section padding creating large gaps — cut roughly in half again */
  .angled-card-section { padding: 15px 0; }
  .contact-form-section { padding: 15px 0 0; }
  .contact-form-section .card-body { padding-bottom: 0.5rem !important; }
  .contact-us-panel { padding: .75rem; }
  .contact-us { padding: 0 0 15px; }
  section.upcoming-how-to-give { padding: 15px 0 30px; }
  section.how-to-give-cards { padding: 15px 0; }

  /* How to Give intro: text was running edge-to-edge into the corner notches, and too
     close to the bottom edge */
  section.upcoming-how-to-give .container { padding: 20px 24px 30px; }

  /* "Join Now" / "Document Your Gift" buttons touch when they wrap to stacked lines */
  .list-inline-item { margin-bottom: 10px; }

  /* Contact card: the absolute-positioned corner photo + 7.5rem reserved padding-left
     only works at wide widths; below desktop it squeezes text into a sliver. */
  .contact-us .card.contact-card .card-body { padding: 2.5rem; }
  .contact-photo { position: static; display: block; margin: 0 0 15px; }

  /* Contact form photo: skip it below desktop rather than stack a tall photo above the form */
  .contact-form-section .angled-card-img { display: none; }
}

/* Nav switches to the horizontal desktop layout at 768px (see min-width:768px rule below),
   but at 768-991px there isn't room for full-size nav text + the logo on one line, so it wraps. */
@media (min-width: 768px) and (max-width: 991px) {
  .header-area .main-nav .nav li a { font-size: 12px; padding: 10px 8px; }
}

/* How-to-give icon badge: sized against p-xl-5 (48px) padding, which only applies at
   xl (1200px+). Below that, p-4 (16px) padding isn't enough clearance and the icon
   overlaps the eyebrow label — fix applies through tablet too since the bug does.
   Indenting just the eyebrow line (rather than pushing all the content down) keeps it
   on the same row as the icon instead of wasting vertical space. */
@media (max-width: 1199.98px) {
  .give-item .give-item-lead-in { padding-left: 55px; }
}

/* --- 8. Print Styles --- */
@media print {
  .print-header { padding-bottom: 10px; border-bottom: 1px solid var(--light); }
  .print-logo { height: 50px; width: auto; margin: 0; }
  .print-header-title { font-family: "museo-slab", serif; font-size: 14px; font-weight: 700; color: var(--primary); }
  .print-header-text { font-size: 10px; color: var(--dark); letter-spacing: .2px; }
  body, p, blockquote { font-size: 13px; line-height: 18px; }
  h1, .h1 { font-size: 28px; }
  h2, .h2 { font-size: 21px; }
  h3, .h3 { font-size: 18px; }
  h4, .h4 { font-size: 16px; }
  h5, .h5 { font-size: 14px; }
  h6, .h6 { font-size: 12px; }
  .mb-3 { margin-bottom: 10px !important; }
  .container { width: 100% !important; max-width: 100% !important; }
  .footer-section, .header-area, .sub-header, section.heading-page { display: none !important; }
  footer .btn { display: none !important; }
  html { height: 100%; }
  body { display: flex; flex-direction: column; min-height: 100%; }
  main { flex: 1 0 auto; }
  footer { flex-shrink: 0; padding-top: 2em; }
  footer .container, footer p { margin: 0 !important; padding: 0 !important; }
}
@page { size: 8.5in 11in; margin: .5in; }