/*
Theme Name: Friends of High Cliff State Park
Theme URI: https://www.friendsofhighcliff.org/
Author: SCM Marketing Solutions
Author URI: https://scmmarketing.com/
Description: Custom hand-coded theme for Friends of High Cliff State Park (FOHC). Forest-green palette, Vimeo hero, ACF Pro (Local JSON), custom Events / Photo gallery / Alert post types.
Version: 0.9.0
Requires at least: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: fohc
*/

/* ==========================================================================
   FOHC theme styles
   Note: Critical above-the-fold (hero) CSS is inlined in front-page.php for
   performance, following the SCM Core Web Vitals pattern. This file holds the
   full site styles and is enqueued normally.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
    /* Brand palette */
    --fohc-green:        #102F19; /* primary forest green */
    --fohc-green-700:    #1c4a29; /* lighter green for hovers / accents */
    --fohc-green-500:    #2f6b40; /* mid green */
    --fohc-green-100:    #e8efe9; /* pale green wash */
    --fohc-white:        #ffffff;
    --fohc-off-white:    #f6f8f6;
    --fohc-ink:          #16231a; /* body text (near-black green) */
    --fohc-muted:        #5b6b5f; /* secondary text */
    --fohc-line:         #d8e0d9; /* hairline borders */
    --fohc-amber:        #f2c14e; /* alert / notice accent */
    --fohc-amber-bg:     #fdf6e3;
    --fohc-lime:         #7cbf4f; /* bright lime from the logo ring */
    --fohc-lime-dark:    #689f40;

    /* Type */
    --fohc-font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    --fohc-font-head: Georgia, "Times New Roman", serif;

    /* Layout */
    --fohc-maxw: 1140px;
    --fohc-gutter: clamp(1rem, 4vw, 3rem);
    --fohc-radius: 6px;
    --fohc-shadow: 0 6px 24px rgba(16, 47, 25, 0.12);
}

/* ---------- Reset-ish base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: var(--fohc-font-body);
    font-size: 18px;
    line-height: 1.65;
    color: var(--fohc-ink);
    background: var(--fohc-white);
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: var(--fohc-green-500); text-decoration: underline; text-underline-offset: 2px; }
a:hover { color: var(--fohc-green); }

h1, h2, h3, h4 {
    font-family: var(--fohc-font-head);
    line-height: 1.18;
    color: var(--fohc-green);
    margin: 0 0 0.5em;
    font-weight: 700;
}
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
p { margin: 0 0 1.25em; }

/* ---------- Layout helpers ---------- */
.fohc-container {
    width: 100%;
    max-width: var(--fohc-maxw);
    margin-inline: auto;
    padding-inline: var(--fohc-gutter);
}
.fohc-section { padding-block: clamp(2.5rem, 6vw, 5rem); }
.fohc-section--tint { background: var(--fohc-off-white); }
.fohc-section--green { background: var(--fohc-green); color: var(--fohc-white); }
.fohc-section--green h2, .fohc-section--green h3 { color: var(--fohc-white); }
.fohc-section__head { text-align: center; max-width: 720px; margin: 0 auto 2.5rem; }
.fohc-section__head p { color: var(--fohc-muted); font-size: 1.1rem; }
.fohc-section--green .fohc-section__head p { color: rgba(255,255,255,0.85); }

.fohc-grid { display: grid; gap: 1.75rem; }
@media (min-width: 700px) {
    .fohc-grid--3 { grid-template-columns: repeat(3, 1fr); }
    .fohc-grid--2 { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Buttons ---------- */
.fohc-btn {
    display: inline-block;
    font-family: var(--fohc-font-body);
    font-weight: 600;
    font-size: 1rem;
    line-height: 1;
    padding: 0.9em 1.6em;
    border-radius: var(--fohc-radius);
    text-decoration: none;
    cursor: pointer;
    border: 2px solid var(--fohc-green);
    background: var(--fohc-green);
    color: var(--fohc-white);
    transition: background .2s ease, color .2s ease, transform .1s ease;
}
.fohc-btn:hover { background: var(--fohc-green-700); border-color: var(--fohc-green-700); color: var(--fohc-white); transform: translateY(-1px); }
.fohc-btn--ghost { background: transparent; color: var(--fohc-green); }
.fohc-btn--ghost:hover { background: var(--fohc-green); color: var(--fohc-white); }
.fohc-btn--on-dark { background: var(--fohc-white); color: var(--fohc-green); border-color: var(--fohc-white); }
.fohc-btn--on-dark:hover { background: transparent; color: var(--fohc-white); }
.fohc-btn--outline-on-dark { background: transparent; color: var(--fohc-white); border-color: var(--fohc-white); }
.fohc-btn--outline-on-dark:hover { background: var(--fohc-white); color: var(--fohc-green); border-color: var(--fohc-white); }

/* Hero button row (two subtle buttons over the video) */
.fohc-hero__buttons { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }

/* ---------- Gravity Forms submit button (brand lime) ----------
   To use the amber/yellow instead, swap --fohc-lime -> --fohc-amber and
   --fohc-lime-dark -> #e0ad33 below. */
.gform_wrapper .gform_footer input[type="submit"],
.gform_wrapper .gform_footer button[type="submit"],
.gform_wrapper .gform-footer button.gform_button,
.gform_wrapper input.gform_button,
.gform_wrapper button.gform_button {
    background: var(--fohc-lime) !important;
    color: var(--fohc-green) !important;
    border: 2px solid var(--fohc-lime) !important;
    border-radius: var(--fohc-radius) !important;
    font-family: var(--fohc-font-body) !important;
    font-weight: 700 !important;
    font-size: 1rem !important;
    line-height: 1 !important;
    padding: 0.85em 1.7em !important;
    cursor: pointer;
    box-shadow: none !important;
    transition: background .2s ease, border-color .2s ease, transform .1s ease;
}
.gform_wrapper .gform_footer input[type="submit"]:hover,
.gform_wrapper .gform_footer button[type="submit"]:hover,
.gform_wrapper input.gform_button:hover,
.gform_wrapper button.gform_button:hover {
    background: var(--fohc-lime-dark) !important;
    border-color: var(--fohc-lime-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

/* Multi-file upload "Select files" button + drop-area accent (icon/links) */
.gform_wrapper {
    --gf-color-primary: #7cbf4f;
    --gf-color-primary-rgb: 124, 191, 79;
    --gf-color-primary-contrast: #102F19;
    --gf-color-primary-darker: #689f40;
    --gf-color-primary-lighter: #8fcb66;
}
.gform_wrapper .gform_button_select_files,
.gform_wrapper .button.gform_button_select_files,
.gform_wrapper .gform_drop_area .gform_button_select_files {
    background: var(--fohc-lime) !important;
    color: var(--fohc-green) !important;
    border: 2px solid var(--fohc-lime) !important;
    border-radius: var(--fohc-radius) !important;
    font-weight: 700 !important;
    cursor: pointer;
    transition: background .2s ease, border-color .2s ease;
}
.gform_wrapper .gform_button_select_files:hover {
    background: var(--fohc-lime-dark) !important;
    border-color: var(--fohc-lime-dark) !important;
    color: #fff !important;
}
.gform_wrapper .gform_drop_area svg,
.gform_wrapper .gform_drop_area .gform-icon { color: var(--fohc-lime-dark) !important; fill: var(--fohc-lime-dark) !important; }

/* ---------- Header / nav ---------- */
.fohc-site-header {
    position: sticky; top: 0; z-index: 50;
    background: var(--fohc-green);
    color: var(--fohc-white);
}
.fohc-site-header__inner {
    display: flex; align-items: center; justify-content: space-between;
    gap: .75rem; min-height: 72px;
}
.fohc-logo { display: flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--fohc-white); }
.fohc-logo__mark { flex: 0 0 auto; line-height: 0; }
.fohc-logo__mark img { height: 50px; width: 50px; border-radius: 50%; object-fit: contain; }
.fohc-logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.fohc-logo__l1 { font-family: var(--fohc-font-head); font-weight: 700; font-size: 1.15rem; color: #fff; }
.fohc-logo__l2 { font-family: var(--fohc-font-body); font-weight: 600; font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--fohc-amber); margin-top: 2px; }
@media (max-width: 520px) {
	.fohc-logo__mark img { height: 44px; width: 44px; }
	.fohc-logo__l1 { font-size: 1.05rem; }
	.fohc-logo__l2 { font-size: .62rem; letter-spacing: .14em; }
}
.fohc-nav ul { list-style: none; display: flex; flex-wrap: wrap; justify-content: flex-end; align-items: center; gap: .4rem .85rem; margin: 0; padding: 0; }
.fohc-nav a { color: var(--fohc-white); text-decoration: none; font-weight: 600; font-size: .88rem; }
.fohc-nav a:hover { color: var(--fohc-amber); }
.fohc-nav .current-menu-item > a { color: var(--fohc-amber); }
.fohc-nav { margin-left: auto; } /* push nav (and the donate button after it) to the right */
.fohc-header-donate {
    flex: 0 0 auto; margin-left: .5rem;
    padding: .5em 1em; border-radius: var(--fohc-radius);
    background: var(--fohc-amber); color: var(--fohc-green); border: 2px solid var(--fohc-amber);
    font-weight: 700; font-size: .9rem; text-decoration: none; white-space: nowrap;
    transition: background .2s ease, border-color .2s ease, transform .1s ease;
}
.fohc-header-donate:hover { background: #e6b43e; border-color: #e6b43e; color: var(--fohc-green); transform: translateY(-1px); }
.fohc-menu-toggle { display: none; background: transparent; border: 0; color: #fff; font-size: 1.5rem; cursor: pointer; }
@media (max-width: 1080px) {
    .fohc-menu-toggle { display: block; order: 3; }
    .fohc-nav { display: none; width: 100%; order: 4; margin-left: 0; }
    .fohc-nav.is-open { display: block; }
    .fohc-logo { order: 1; }
    .fohc-header-donate { order: 2; margin-left: auto; }
    .fohc-site-header__inner { flex-wrap: wrap; padding-block: .75rem; }
    .fohc-nav ul { flex-direction: column; align-items: stretch; justify-content: flex-start; gap: .25rem; width: 100%; }
    .fohc-nav li { border-top: 1px solid rgba(255,255,255,0.15); }
    .fohc-nav a { display: block; padding: .65rem 0; }
}

/* ---------- Alert / closure block ---------- */
.fohc-alerts { background: var(--fohc-amber-bg); border-bottom: 1px solid var(--fohc-line); }
.fohc-alert {
    display: grid; gap: 1.25rem; align-items: center;
    padding-block: 1.5rem;
}
@media (min-width: 760px) {
    .fohc-alert--has-image { grid-template-columns: minmax(280px, 380px) 1fr; align-items: center; }
}
.fohc-alert__media { position: relative; text-align: center; }
.fohc-alert__media .fohc-alert__zoom { display: inline-block; max-width: 100%; }
.fohc-alert__zoom { display: block; position: relative; cursor: zoom-in; line-height: 0; }
.fohc-alert__media img { width: 100%; height: auto; display: block; border-radius: var(--fohc-radius); box-shadow: var(--fohc-shadow); }
.fohc-alert__zoom-hint {
    position: absolute; bottom: 8px; right: 8px;
    background: rgba(16, 47, 25, 0.82); color: #fff;
    font-size: .72rem; line-height: 1; font-weight: 600;
    padding: .35em .6em; border-radius: 4px;
    opacity: 0; transition: opacity .2s ease; pointer-events: none;
}
.fohc-alert__zoom:hover .fohc-alert__zoom-hint,
.fohc-alert__zoom:focus-visible .fohc-alert__zoom-hint { opacity: 1; }
.fohc-alert__badge {
    display: inline-block; background: var(--fohc-amber); color: #5a4300;
    font-weight: 700; font-size: .8rem; letter-spacing: .05em; text-transform: uppercase;
    padding: .3em .7em; border-radius: 4px; margin-bottom: .6rem;
}
/* Badge colors by alert type */
.fohc-alert__badge--amber  { background: #f2c14e; color: #5a4300; }
.fohc-alert__badge--orange { background: #df7f2f; color: #fff; }
.fohc-alert__badge--green  { background: var(--fohc-lime); color: var(--fohc-green); }
.fohc-alert__badge--red    { background: #c62d1f; color: #fff; }
.fohc-alert__badge--blue   { background: #2f6fae; color: #fff; }
.fohc-alert__badge--gray   { background: #d7ddd5; color: #33453a; }
/* Matching left accent stripe on the card */
.fohc-alert { border-left: 5px solid transparent; padding-left: 1.1rem; }
.fohc-alert--amber  { border-left-color: #f2c14e; }
.fohc-alert--orange { border-left-color: #df7f2f; }
.fohc-alert--green  { border-left-color: var(--fohc-lime); }
.fohc-alert--red    { border-left-color: #c62d1f; }
.fohc-alert--blue   { border-left-color: #2f6fae; }
.fohc-alert--gray   { border-left-color: #b9c2b6; }
.fohc-alert__title { color: var(--fohc-green); margin: 0 0 .35rem; }
.fohc-alert__body { color: var(--fohc-ink); }
.fohc-alert__body > *:last-child { margin-bottom: 0; }

/* Alerts slider (home page, when more than one active notice) */
.fohc-alert-slider { position: relative; }
/* Inset the slides so the arrows sit in the side margins, not over the text. */
.fohc-alert-slider__viewport { overflow: hidden; margin-inline: 46px; }
.fohc-alert-slider__track { display: flex; transition: transform .5s ease; will-change: transform; }
.fohc-alert-slider__slide { flex: 0 0 100%; min-width: 100%; }
.fohc-alert-slider__dots { display: flex; justify-content: center; gap: .5rem; padding: .7rem 0 1.4rem; }
.fohc-alert-slider__dot {
    width: 10px; height: 10px; padding: 0; border: 0; border-radius: 50%;
    background: rgba(16,47,25,.25); cursor: pointer; transition: background .2s ease;
}
.fohc-alert-slider__dot.is-active { background: var(--fohc-green); }
.fohc-alert-slider__arrow {
    position: absolute; top: 50%; transform: translateY(-50%); z-index: 2;
    width: 36px; height: 36px; border: 0; border-radius: 50%; cursor: pointer;
    background: rgba(255,255,255,.9); color: var(--fohc-green); font-size: 1.5rem; line-height: 1;
    box-shadow: 0 1px 6px rgba(16,47,25,.22);
}
.fohc-alert-slider__arrow:hover { background: #fff; }
.fohc-alert-slider__arrow--prev { left: 3px; }
.fohc-alert-slider__arrow--next { right: 3px; }
@media (max-width: 760px) {
    .fohc-alert-slider__arrow { display: none; }
    .fohc-alert-slider__viewport { margin-inline: 0; } /* full width, no arrow gutter on phones */
}

/* ---------- Cards (events / generic) ---------- */
.fohc-card {
    background: var(--fohc-white);
    border: 1px solid var(--fohc-line);
    border-radius: var(--fohc-radius);
    overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: 0 2px 8px rgba(16,47,25,0.05);
}
.fohc-card__media img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.fohc-card__body { padding: 1.25rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; flex: 1; }
.fohc-card__date { font-size: .85rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--fohc-green-500); }
.fohc-card__title { margin: 0; font-size: 1.25rem; }
.fohc-card__meta { font-size: .95rem; color: var(--fohc-muted); }

/* ---------- Leadership / board profiles ---------- */
.fohc-leaders { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); }
.fohc-leader {
    text-align: center; background: var(--fohc-white);
    border: 1px solid var(--fohc-line); border-radius: var(--fohc-radius);
    padding: 1.6rem 1.25rem; box-shadow: 0 2px 8px rgba(16,47,25,0.05);
}
.fohc-leader__photo { width: 118px; height: 118px; border-radius: 50%; object-fit: cover; display: block; margin: 0 auto 1rem; }
.fohc-leader__photo--initials {
    display: flex; align-items: center; justify-content: center;
    background: var(--fohc-green); color: #fff;
    font-family: var(--fohc-font-head); font-weight: 700; font-size: 2.2rem; letter-spacing: .02em;
}
.fohc-leader__name { margin: 0; font-size: 1.2rem; color: var(--fohc-green); }
.fohc-leader__role {
    margin: .15rem 0 .7rem; color: var(--fohc-green-500);
    font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase;
}
.fohc-leader__bio { margin: 0 0 .7rem; font-size: .95rem; color: var(--fohc-ink); }
.fohc-leader__email { margin: 0; font-size: .9rem; }

/* ---------- Partners / sponsors logos ---------- */
.fohc-partners { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 1.75rem 2.5rem; }
.fohc-partner { display: inline-flex; align-items: center; justify-content: center; }
.fohc-partner__logo { max-height: 84px; width: auto; max-width: 210px; object-fit: contain; }
a.fohc-partner { transition: transform .12s ease, opacity .15s ease; }
a.fohc-partner:hover { transform: translateY(-2px); opacity: .85; }

/* ---------- Gallery ---------- */
.fohc-gallery { display: grid; gap: .9rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .fohc-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1000px) { .fohc-gallery { grid-template-columns: repeat(4, 1fr); } }
.fohc-gallery__item { position: relative; display: block; border-radius: var(--fohc-radius); overflow: hidden; background: var(--fohc-green-100); }
.fohc-gallery__item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .3s ease; }
.fohc-gallery__item:hover img { transform: scale(1.04); }
.fohc-gallery__credit {
    position: absolute; left: 0; right: 0; bottom: 0;
    font-size: .78rem; color: #fff; padding: .8rem .6rem .5rem;
    background: linear-gradient(to top, rgba(16,47,25,.8), rgba(16,47,25,0));
    opacity: 0; transition: opacity .25s ease;
}
.fohc-gallery__item:hover .fohc-gallery__credit { opacity: 1; }

/* ---------- Photo strip (page body) ---------- */
.fohc-photostrip { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 700px) { .fohc-photostrip { grid-template-columns: repeat(3, 1fr); } }
.fohc-photostrip__item { margin: 0; border-radius: var(--fohc-radius); overflow: hidden; box-shadow: 0 2px 8px rgba(16,47,25,0.08); }
.fohc-photostrip__item img { width: 100%; height: 100%; aspect-ratio: 4/3; object-fit: cover; display: block; }

/* ---------- Who We Are intro (image + text) ---------- */
.fohc-wwa-intro { display: grid; gap: 2rem; align-items: center; }
@media (min-width: 820px) { .fohc-wwa-intro { grid-template-columns: minmax(0, 0.9fr) 1.1fr; } }
.fohc-wwa-intro__media img { width: 100%; height: 100%; max-height: 460px; object-fit: cover; border-radius: var(--fohc-radius); box-shadow: var(--fohc-shadow); }
.fohc-wwa-intro__text > *:last-child { margin-bottom: 0; }

/* ---------- Page / prose ---------- */
.fohc-prose { max-width: 760px; margin-inline: auto; }
.fohc-prose img { border-radius: var(--fohc-radius); margin-block: 1.5rem; }
.fohc-page-hero { background: var(--fohc-green); color: #fff; padding-block: clamp(2.5rem, 6vw, 4.5rem); text-align: center; }
.fohc-page-hero h1 { color: #fff; margin: 0; }
.fohc-page-hero p { color: rgba(255,255,255,0.85); margin: .5rem 0 0; font-size: 1.15rem; }
/* Social icons at the top of interior pages (inside the green hero) */
.fohc-hero-social { display: flex; justify-content: center; gap: .6rem; margin: 1.1rem 0 0; }
.fohc-hero-social__link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.12); color: #fff;
    transition: background .15s ease, color .15s ease, transform .1s ease;
}
.fohc-hero-social__link:hover { background: var(--fohc-amber); color: var(--fohc-green); transform: translateY(-1px); }
.fohc-hero-social__link svg { display: block; }

/* ---------- Footer ---------- */
.fohc-site-footer {
    background: #0b2113; /* deeper than the brand green so it reads as a distinct band */
    color: rgba(255,255,255,0.82);
    padding-block: 3rem 1.5rem;
    font-size: .95rem;
    border-top: 4px solid var(--fohc-green-500); /* clear divider from any green section above */
}
.fohc-site-footer a { color: #fff; text-decoration: none; }
.fohc-site-footer a:hover { color: var(--fohc-amber); text-decoration: underline; }
.fohc-site-footer__cols { display: grid; gap: 2.5rem; }
@media (min-width: 820px) { .fohc-site-footer__cols { grid-template-columns: 2.2fr 1fr 1fr; } }
.fohc-site-footer__brand { display: flex; gap: 1rem; align-items: flex-start; }
.fohc-site-footer__emblem { flex: 0 0 auto; line-height: 0; }
.fohc-site-footer__emblem img { width: 76px; height: 76px; border-radius: 50%; object-fit: contain; }
.fohc-site-footer__brand p { margin: 0 0 .6rem; max-width: 42ch; }
.fohc-site-footer__addr { color: rgba(255,255,255,0.6); font-size: .9rem; }
.fohc-site-footer h4 { color: var(--fohc-amber); font-family: var(--fohc-font-body); font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin: .2rem 0 .9rem; }
.fohc-site-footer ul { list-style: none; margin: 0; padding: 0; }
.fohc-site-footer li { margin-bottom: .55rem; }
.fohc-site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.14); margin-top: 2.5rem; padding-top: 1.25rem; font-size: .85rem; color: rgba(255,255,255,0.55); }

/* Social icons + member login button (footer) */
.fohc-social { display: flex; gap: .6rem; margin: .25rem 0 1.1rem; }
.fohc-social__link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.08); color: #fff !important;
    transition: background .15s ease, color .15s ease, transform .1s ease;
}
.fohc-social__link:hover { background: var(--fohc-lime); color: var(--fohc-green) !important; text-decoration: none; transform: translateY(-1px); }
.fohc-social__link svg { display: block; }
.fohc-login-btn {
    display: inline-flex; align-items: center; gap: .5rem;
    padding: .55em 1.1em; border-radius: 999px;
    background: var(--fohc-lime); color: var(--fohc-green) !important;
    font-weight: 700; font-size: .9rem; text-decoration: none !important;
    border: 2px solid var(--fohc-lime); transition: background .15s ease, border-color .15s ease, transform .1s ease;
}
.fohc-login-btn:hover { background: var(--fohc-lime-dark); border-color: var(--fohc-lime-dark); color: var(--fohc-green) !important; transform: translateY(-1px); }

/* ---------- Utilities ---------- */
.fohc-center { text-align: center; }
.fohc-mt { margin-top: 1.5rem; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); width: 1px; height: 1px; overflow: hidden; }
