/*
Theme Name:     Extendable Child — The Temple of Harm Reduction
Theme URI:      https://templeofharmreduction.org
Description:    Child theme for Extendable, customized for The Temple of Harm Reduction. Black & gold sacred aesthetic. Warm dark palette, Cinzel display + Inter body, occult-restraint design language.
Author:         The Temple of Harm Reduction
Author URI:     https://templeofharmreduction.org
Template:       extendable
Version: 0.9.5
Text Domain:    extendable-tohr
Tags:           accessibility-ready, block-styles, full-site-editing
*/

/* =========================================================================
   TEMPLE OF HARM REDUCTION — Design System
   ------------------------------------------------------------------------
   Palette (CSS custom props mirror theme.json for non-block-editor contexts)
   ========================================================================= */
:root {
    --tohr-black:    #0F0D0B;
    --tohr-ink:      #1A1714;
    --tohr-line:     #2A2520;
    --tohr-cream:    #E8DFD2;
    --tohr-bone:     #C9BFB0;
    --tohr-gold:     #B89556;
    --tohr-gold-hi:  #D4B26E;
    --tohr-gold-lo:  #6B5535;

    --tohr-font-display: 'Cinzel', 'Trajan Pro', 'Times New Roman', serif;
    --tohr-font-serif:   'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --tohr-font-sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* =========================================================================
   1. GLOBAL RESET — force black background regardless of parent theme defaults
   ========================================================================= */
html,
body,
body.wp-singular {
    background-color: var(--tohr-black) !important;
    color: var(--tohr-cream);
    font-family: var(--tohr-font-sans);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.wp-site-blocks,
.is-root-container,
main,
.wp-block-group {
    background-color: transparent;
}

/* =========================================================================
   2. TYPOGRAPHY — sacred display, refined body
   ========================================================================= */
h1, h2, h3,
.wp-block-heading h1,
.wp-block-heading h2,
.wp-block-heading h3,
.wp-block-post-title,
.wp-block-site-title {
    font-family: var(--tohr-font-display);
    font-weight: 500;
    color: var(--tohr-cream);
    text-transform: none;
    letter-spacing: 0.02em;
    line-height: 1.2;
}

h1, .wp-block-post-title { letter-spacing: 0.04em; }
h3 { letter-spacing: 0.08em; color: var(--tohr-gold); }

h4 {
    font-family: var(--tohr-font-serif);
    font-style: italic;
    font-weight: 500;
    color: var(--tohr-bone);
    letter-spacing: 0.02em;
}

h5, h6 {
    font-family: var(--tohr-font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--tohr-gold);
    font-size: 0.75rem;
}

p, li {
    color: var(--tohr-cream);
    line-height: 1.7;
}

p { font-size: 1.05rem; }

/* Eyebrow / kicker style for small label text */
.is-style-eyebrow {
    font-family: var(--tohr-font-sans);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-size: 0.7rem;
    color: var(--tohr-gold);
    font-weight: 600;
}

/* =========================================================================
   3. LINKS
   ========================================================================= */
a {
    color: var(--tohr-gold);
    text-decoration: none;
    transition: color 0.25s ease, border-color 0.25s ease;
}

a:hover,
a:focus {
    color: var(--tohr-gold-hi);
}

/* Body content links — subtle underline */
.entry-content a:not(.wp-element-button):not(.wp-block-button__link),
.wp-block-post-content a:not(.wp-element-button):not(.wp-block-button__link) {
    border-bottom: 1px solid rgba(184, 149, 86, 0.4);
}

.entry-content a:not(.wp-element-button):not(.wp-block-button__link):hover,
.wp-block-post-content a:not(.wp-element-button):not(.wp-block-button__link):hover {
    border-bottom-color: var(--tohr-gold-hi);
}

/* =========================================================================
   4. HEADER & NAVIGATION
   ========================================================================= */
.wp-block-template-part[data-area="header"],
header.wp-block-template-part {
    background-color: var(--tohr-black);
    border-bottom: 1px solid var(--tohr-line);
    padding-block: 1.25rem;
}

.wp-block-site-title a,
.wp-block-site-title {
    color: var(--tohr-cream) !important;
    font-family: var(--tohr-font-display);
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    text-decoration: none;
}

.wp-block-site-logo img {
    max-height: 64px;
    width: auto;
}

/* Nav links */
.wp-block-navigation,
.wp-block-navigation .wp-block-navigation-item__content,
.wp-block-navigation a {
    color: var(--tohr-cream) !important;
    font-family: var(--tohr-font-sans);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.22em;
}

.wp-block-navigation a:hover,
.wp-block-navigation .current-menu-item a {
    color: var(--tohr-gold) !important;
}

/* Mobile menu modal */
.wp-block-navigation__responsive-container.is-menu-open {
    background-color: var(--tohr-black) !important;
}

.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation a {
    color: var(--tohr-cream) !important;
}

/* Hide the redundant H1 site title when logo is present (logo speaks for the brand) */
header .wp-block-site-title h1 {
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    font-weight: 500;
}

/* =========================================================================
   5. BUTTONS — sacred restraint, gold-outlined
   ========================================================================= */
.wp-block-button .wp-block-button__link,
.wp-element-button,
button:not(.wp-block-navigation__responsive-container-open):not(.wp-block-navigation__responsive-container-close),
input[type="submit"] {
    background-color: transparent !important;
    color: var(--tohr-gold) !important;
    border: 1px solid var(--tohr-gold) !important;
    border-radius: 0 !important;
    font-family: var(--tohr-font-sans);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-size: 0.78rem;
    padding: 0.95rem 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.wp-block-button .wp-block-button__link:hover,
.wp-element-button:hover,
button:not(.wp-block-navigation__responsive-container-open):not(.wp-block-navigation__responsive-container-close):hover,
input[type="submit"]:hover {
    background-color: var(--tohr-gold) !important;
    color: var(--tohr-black) !important;
    border-color: var(--tohr-gold) !important;
}

/* Filled variant — gold by default */
.wp-block-button.is-style-fill .wp-block-button__link {
    background-color: var(--tohr-gold) !important;
    color: var(--tohr-black) !important;
}

.wp-block-button.is-style-fill .wp-block-button__link:hover {
    background-color: var(--tohr-gold-hi) !important;
    border-color: var(--tohr-gold-hi) !important;
}

/* =========================================================================
   6. DIVIDERS & ORNAMENTS — hairline gold separators
   ========================================================================= */
hr,
.wp-block-separator {
    border: none;
    border-top: 1px solid var(--tohr-line);
    margin: 3rem auto;
    max-width: 100%;
    opacity: 1;
}

.wp-block-separator.is-style-wide {
    border-top-color: var(--tohr-gold-lo);
}

.wp-block-separator.is-style-dots {
    border: none;
    color: var(--tohr-gold);
    line-height: 1;
    height: auto;
}

.wp-block-separator.is-style-dots::before {
    content: "✦   ✦   ✦";
    color: var(--tohr-gold);
    font-size: 1rem;
    letter-spacing: 1em;
    font-family: 'Inter', 'Apple Symbols', 'Segoe UI Symbol', 'Noto Sans Symbols 2', sans-serif;
}

/* =========================================================================
   7. FORMS — inputs styled to match the dark palette
   ========================================================================= */
input[type="text"],
input[type="email"],
input[type="search"],
input[type="url"],
input[type="tel"],
input[type="number"],
input[type="password"],
textarea,
select {
    background-color: var(--tohr-ink);
    color: var(--tohr-cream);
    border: 1px solid var(--tohr-line);
    border-radius: 0;
    padding: 0.85rem 1rem;
    font-family: var(--tohr-font-sans);
    font-size: 0.95rem;
    transition: border-color 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--tohr-gold);
}

::placeholder {
    color: var(--tohr-bone);
    opacity: 0.5;
}

/* =========================================================================
   8. FOOTER
   ========================================================================= */
.wp-block-template-part[data-area="footer"],
footer.wp-block-template-part {
    background-color: var(--tohr-black);
    border-top: 1px solid var(--tohr-line);
    padding-block: 3rem 2rem;
    color: var(--tohr-bone);
}

footer .wp-block-site-title,
footer .wp-block-site-title a {
    color: var(--tohr-cream) !important;
    font-family: var(--tohr-font-display);
    letter-spacing: 0.15em;
}

footer .wp-block-social-links .wp-social-link {
    background-color: transparent !important;
    color: var(--tohr-gold) !important;
}

footer .wp-block-social-links .wp-social-link svg {
    fill: var(--tohr-gold);
}

footer .wp-block-social-links .wp-social-link:hover svg {
    fill: var(--tohr-gold-hi);
}

/* =========================================================================
   9. PAGE / POST CONTENT WRAPPERS
   ========================================================================= */
.wp-block-post-title {
    color: var(--tohr-cream);
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 2rem;
}

/* Remove the lavender title banner from the parent theme */
.wp-block-cover.has-background-dim,
.wp-block-cover {
    background-color: var(--tohr-black) !important;
}

/* Make any background-tertiary / background-alt sections respect the dark theme */
.has-tertiary-background-color,
.has-background-alt-background-color {
    background-color: var(--tohr-ink) !important;
    color: var(--tohr-cream);
}

/* =========================================================================
   10. SELECTION
   ========================================================================= */
::selection {
    background-color: var(--tohr-gold);
    color: var(--tohr-black);
}

/* =========================================================================
   11. SCROLLBAR (webkit)
   ========================================================================= */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--tohr-black); }
::-webkit-scrollbar-thumb { background: var(--tohr-line); }
::-webkit-scrollbar-thumb:hover { background: var(--tohr-gold-lo); }

/* =========================================================================
   12. UTILITY — Temple ornament block (for use in hero sections)
   ========================================================================= */
.tohr-ornament {
    text-align: center;
    color: var(--tohr-gold);
    font-size: 1.5rem;
    letter-spacing: 1em;
    margin: 2rem 0;
    user-select: none;
}

.tohr-ornament::before { content: "✦   ✦   ✦"; }

/* =========================================================================
   13. WOOCOMMERCE — Shop, product cards, single product, cart
   ========================================================================= */

/* Shop archive — frame the placeholder image area */
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
    background: #1a1614;
    border: 1px solid var(--tohr-line);
    padding: 1.5rem;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}
.woocommerce ul.products li.product:hover a img,
.woocommerce-page ul.products li.product:hover a img {
    border-color: var(--tohr-gold-lo);
}

/* Product card spacing + hairline separation */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    text-align: left;
    margin-bottom: 3rem;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    color: var(--tohr-gold);
    font-family: 'Cinzel', serif !important;
    font-size: 1.1rem !important;
    letter-spacing: 0.08em;
    padding: 1rem 0 0.25rem 0 !important;
}

.woocommerce ul.products li.product .price,
.woocommerce-page ul.products li.product .price {
    color: var(--tohr-ink-mid) !important;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 0.95rem !important;
    margin-bottom: 0.75rem;
}

/* Buttons — gold filled */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
    background: var(--tohr-gold) !important;
    color: var(--tohr-black) !important;
    font-family: 'Cinzel', serif !important;
    letter-spacing: 0.15em !important;
    font-weight: 500 !important;
    border-radius: 0 !important;
    padding: 0.85rem 1.5rem !important;
    text-transform: uppercase;
    transition: background 0.3s ease;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button.alt:hover {
    background: var(--tohr-gold-lo) !important;
}

/* Single product page */
.woocommerce div.product .product_title {
    color: var(--tohr-gold);
    font-family: 'Cinzel', serif !important;
    letter-spacing: 0.08em;
}
.woocommerce div.product p.price,
.woocommerce div.product span.price {
    color: var(--tohr-ink) !important;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem !important;
}
.woocommerce div.product .woocommerce-product-details__short-description {
    color: var(--tohr-ink-mid);
    font-style: italic;
    border-left: 2px solid var(--tohr-gold-lo);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
    background: transparent !important;
    border: 1px solid var(--tohr-line) !important;
    border-radius: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
    border-color: var(--tohr-gold-lo) !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
    color: var(--tohr-gold) !important;
    font-family: 'Cinzel', serif !important;
}

/* Hide spurious no products found notice on shop archive */
.woocommerce-shop .woocommerce-info,
.woocommerce-shop .woocommerce-no-products-found {
    display: none;
}

/* Hide Related products until we have categories */
.woocommerce div.product .related.products {
    display: none;
}

/* Cart + checkout */
.woocommerce table.shop_table {
    border-color: var(--tohr-line) !important;
    color: var(--tohr-ink);
}
.woocommerce table.shop_table th {
    color: var(--tohr-gold);
    font-family: 'Cinzel', serif !important;
    letter-spacing: 0.08em;
}

/* Breadcrumb */
.woocommerce-breadcrumb {
    color: var(--tohr-ink-mid);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}
.woocommerce-breadcrumb a {
    color: var(--tohr-gold-lo);
}

/* Shop ordering dropdown */
.woocommerce .woocommerce-ordering select {
    background: var(--tohr-black) !important;
    color: var(--tohr-ink) !important;
    border: 1px solid var(--tohr-line) !important;
    font-family: 'Inter', sans-serif;
    padding: 0.5rem 1rem;
}

/* Quantity inputs */
.woocommerce .quantity input.qty {
    background: var(--tohr-black) !important;
    color: var(--tohr-cream) !important;
    -webkit-text-fill-color: var(--tohr-cream) !important;
    caret-color: var(--tohr-gold) !important;
    border: 1px solid var(--tohr-line) !important;
    padding: 0.5rem;
}

/* Tint product-grid thumbnails to match the dark shop treatment. */
.woocommerce ul.products li.product a img.attachment-woocommerce_thumbnail,
.woocommerce-page ul.products li.product a img.attachment-woocommerce_thumbnail {
    filter: invert(0.85) sepia(0.4) saturate(0.6) hue-rotate(15deg) brightness(0.7);
    opacity: 0.5;
}

/* Product galleries must show the source photography without color effects. */
.woocommerce div.product div.images img,
.woocommerce-page div.product div.images img {
    filter: none !important;
    opacity: 1 !important;
}

/* Hide the spurious 'No products' block-theme notice */
.wp-block-query-no-results {
    display: none !important;
}

/* =========================================================================
   14. HOME — Three Pillars columns horizontal gap
   ========================================================================= */
.wp-block-columns.is-layout-flex {
    column-gap: 3rem;
}
@media (max-width: 781px) {
    .wp-block-columns.is-layout-flex {
        column-gap: 0;
        row-gap: 2.5rem;
    }
}

/* =========================================================================
   15. HOME HERO — Ghosted sigil background
   ========================================================================= */

.tohr-hero.tohr-hero--emblem {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.tohr-hero.tohr-hero--emblem::before {
    content: "";
    position: absolute;
    top: calc(50% + 2.5rem);
    left: 50%;
    width: min(86vh, 887px);
    height: min(86vh, 887px);
    transform: translate(-50%, -50%);
    background-image: url('/wp-content/uploads/2026/01/ToHR-logo-trans.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    opacity: 0.045;
    pointer-events: none;
    z-index: 0;
    /* tint the white sigil toward gold so it reads as 'temple' not 'watermark' */
    filter: sepia(1) hue-rotate(5deg) saturate(2.5) brightness(0.95) blur(0.5px);
}

/* Lift hero content above the sigil */
.tohr-hero.tohr-hero--emblem > * {
    position: relative;
    z-index: 1;
}

/* Mobile: slightly smaller and softer so it doesn't crowd the type */
@media (max-width: 781px) {
    .tohr-hero.tohr-hero--emblem::before {
        width: min(74vh, 517px);
        height: min(74vh, 517px);
        opacity: 0.035;
    }
}

/* Honor reduced motion — opacity static anyway, but in case we ever add float */
@media (prefers-reduced-motion: reduce) {
    .tohr-hero.tohr-hero--emblem::before { animation: none !important; }
}

/* SHOP and DONATE nav actions — visible at a glance on desktop and mobile. */
.thr-nav-shop a,
li.thr-nav-shop a,
.wp-block-navigation .thr-nav-shop a {
    border: 1px solid var(--wp--preset--color--accent-2, #c7a455) !important;
    color: var(--wp--preset--color--accent-2, #c7a455) !important;
    padding: 0.4rem 1rem !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    transition: background 0.2s, color 0.2s;
}
.thr-nav-shop a:hover,
.thr-nav-shop a:focus-visible {
    background: var(--wp--preset--color--accent-2, #c7a455) !important;
    color: #111 !important;
}
.thr-nav-donate a,
li.thr-nav-donate a,
.wp-block-navigation .thr-nav-donate a {
    background: var(--wp--preset--color--accent-2, #c7a455) !important;
    color: #111 !important;
    padding: 0.4rem 1rem !important;
    border-radius: 999px !important;
    font-weight: 600 !important;
    letter-spacing: 0.05em !important;
    transition: filter 0.2s;
}
.thr-nav-donate a:hover { filter: brightness(1.1); }


/* =========================================================================
   16. HEADER NAV — Fit on one line + submenu (dropdown) styling
   ========================================================================= */

/* --- Chevron toggle button: neutralize theme's gold-pill button inheritance ---
   The Navigation block renders a <button> for submenu toggles that picks up
   button styling from the theme; we always want it transparent with just a
   caret glyph. */
header nav.wp-block-navigation button.wp-block-navigation-submenu__toggle,
header nav.wp-block-navigation button.wp-block-navigation__submenu-icon.wp-block-navigation-submenu__toggle {
    background: transparent !important;
    border: 0 !important;
    color: currentColor !important;
    padding: 0 0.2em !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    filter: none !important;
    width: auto !important;
    height: auto !important;
    font-weight: inherit !important;
    letter-spacing: inherit !important;
}
header nav.wp-block-navigation button.wp-block-navigation-submenu__toggle svg {
    fill: currentColor !important;
    stroke: currentColor !important;
}

/* --- Desktop layout: keep all top-level items on one line --- */
@media (min-width: 1024px) {
    /* Nav container: tighter gap so 6 items + Donate pill fit alongside logo/cart */
    header .wp-block-navigation,
    header .wp-block-navigation .wp-block-navigation__container {
        gap: 1.5rem !important;
        flex-wrap: nowrap !important;
    }
    header .wp-block-group.alignwide {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    /* Items don't shrink; labels don't wrap */
    header .wp-block-navigation .wp-block-navigation-item {
        flex: 0 0 auto !important;
    }
    header .wp-block-navigation li > a,
    header .wp-block-navigation .wp-block-navigation-item__content {
        white-space: nowrap !important;
    }
}

/* --- Submenu panel: dark warm surface, sized to content --- */
header nav.wp-block-navigation .wp-block-navigation__submenu-container {
    background-color: #1a1512 !important;
    border: 1px solid rgba(199, 164, 85, 0.25) !important;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    padding: 0.4rem 0 !important;
    min-width: 0 !important;    /* override WP core's default 200px */
    width: max-content !important;
    margin-top: 0.6rem !important;
}

/* Submenu links: compact, uppercase, gold-wash on hover */
header nav.wp-block-navigation .wp-block-navigation__submenu-container li {
    width: 100%;
}
header nav.wp-block-navigation .wp-block-navigation__submenu-container li > a {
    padding: 0.5rem 1.1rem !important;
    color: #E8DDC9 !important;
    font-size: 0.9rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color 0.15s, color 0.15s;
}
header nav.wp-block-navigation .wp-block-navigation__submenu-container li > a:hover,
header nav.wp-block-navigation .wp-block-navigation__submenu-container li > a:focus {
    background-color: rgba(199, 164, 85, 0.12);
    color: #C7A455 !important;
}

/* --- Hover-gap bridge: keep panel open when mouse crosses parent→panel --- */
@media (min-width: 1024px) {
    header nav.wp-block-navigation li.wp-block-navigation-submenu {
        position: relative;
    }
    /* Invisible strip below parent link */
    header nav.wp-block-navigation li.wp-block-navigation-submenu::after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        height: 0.6rem;
    }
    /* Invisible strip above panel — anchored to panel so it moves with it */
    header nav.wp-block-navigation .wp-block-navigation__submenu-container::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: -0.6rem;
        height: 0.6rem;
    }
}


/* =========================================================================
   17. UI POLISH PASS — semantics, responsive rhythm, cards, forms, focus
   ========================================================================= */

/* Site-title block now renders as non-heading text; preserve lowercase brand casing. */
.tohr-site-brand,
.tohr-site-brand a {
    font-family: var(--tohr-font-display);
    font-weight: 500;
    color: var(--tohr-cream) !important;
    text-transform: none;
    letter-spacing: 0.02em;
    line-height: 1.2;
    margin: 0;
    text-decoration: none;
}
.tohr-site-brand a:hover,
.tohr-site-brand a:focus-visible { color: var(--tohr-gold-hi) !important; }

/* Shared page/archive header rhythm for PHP templates and future page patterns. */
.tohr-page-header,
.tohr-projects-header,
.tohr-gi-header {
    text-align: center;
    max-width: 880px;
    margin: 0 auto clamp(2.25rem, 5vw, 4rem);
    padding-inline: 1rem;
}
.tohr-eyebrow,
.tohr-card-kicker {
    font-family: var(--tohr-font-sans);
    color: var(--tohr-gold);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin: 0 0 0.85rem;
}
.tohr-page-header h1,
.tohr-projects-header h1,
.tohr-gi-header h1 {
    text-wrap: balance;
}
.tohr-page-intro,
.tohr-projects-intro,
.tohr-gi-context {
    color: var(--tohr-bone);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.75;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

/* Mobile rhythm: keep the legally-required large cookie banner, make content around it tighter. */
@media (max-width: 600px) {
    .tohr-hero,
    .tohr-page-header,
    .tohr-projects-header,
    .tohr-gi-header {
        padding-inline: 1rem !important;
    }
    .tohr-hero {
        padding-top: clamp(1.5rem, 7vw, 2.75rem) !important;
        padding-bottom: clamp(2rem, 8vw, 3.25rem) !important;
    }
    .tohr-hero h1,
    .tohr-page-header h1,
    .tohr-projects-header h1,
    .tohr-gi-header h1 {
        font-size: clamp(2rem, 10vw, 3rem) !important;
        line-height: 1.08;
    }
    .wp-block-buttons,
    .tohr-card-ctas {
        gap: 0.75rem !important;
    }
    .wp-block-button,
    .wp-block-button__link,
    .tohr-cta-button {
        width: 100%;
        text-align: center;
    }
}

/* Shared content card system for Updates, Projects, Shop notices, related links, and form callouts. */
.tohr-content-card,
.tohr-project-card,
.woocommerce ul.products li.product,
.wp-block-post-template > li {
    background: linear-gradient(180deg, rgba(26, 23, 20, 0.98), rgba(18, 15, 13, 0.98));
    border: 1px solid rgba(184, 149, 86, 0.24);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}
.tohr-content-card {
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: 4px;
}
.tohr-content-card:hover,
.tohr-project-card:hover,
.woocommerce ul.products li.product:hover {
    border-color: rgba(212, 178, 110, 0.55);
}
.tohr-card-title,
.tohr-card-title a,
.wp-block-post-title a,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
    text-wrap: balance;
}
.tohr-text-link,
.tohr-card-action a {
    color: var(--tohr-gold);
    border-bottom: 1px solid rgba(184, 149, 86, 0.45);
}
.tohr-text-link:hover,
.tohr-card-action a:hover {
    color: var(--tohr-gold-hi);
    border-bottom-color: var(--tohr-gold-hi);
}

/* Updates archive. */
.tohr-updates-archive {
    max-width: 1040px;
    margin: 0 auto;
    padding: clamp(3rem, 8vw, 5.5rem) 1.5rem;
}
.tohr-updates-list {
    display: grid;
    gap: 1.5rem;
}
.tohr-update-card .tohr-card-title {
    margin-top: 0;
    margin-bottom: 0.85rem;
}
.tohr-update-card .tohr-card-blurb p {
    color: var(--tohr-bone);
    margin-bottom: 0;
}

/* Projects placeholder treatment: intentional, not missing. */
.tohr-card-image-placeholder {
    position: relative;
    background:
        radial-gradient(circle at center, rgba(184, 149, 86, 0.13), transparent 58%),
        linear-gradient(135deg, #1a1714 0%, #0f0d0b 100%) !important;
    border-bottom: 1px solid rgba(184, 149, 86, 0.28) !important;
    overflow: hidden;
}
.tohr-card-image-placeholder::before {
    content: "✦";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-family: 'Inter', 'Apple Symbols', 'Segoe UI Symbol', sans-serif;
    font-size: clamp(3rem, 12vw, 6rem);
    color: rgba(184, 149, 86, 0.08);
    pointer-events: none;
}
.tohr-card-image-placeholder span {
    position: relative;
    z-index: 1;
}

/* CTA hierarchy and focus states. */
.wp-block-button__link,
.tohr-cta-button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button {
    min-height: 44px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
}
.tohr-cta-button:not(.tohr-cta-primary),
.wp-block-button.is-style-outline .wp-block-button__link {
    background: transparent !important;
    color: var(--tohr-gold) !important;
    border: 1px solid var(--tohr-gold) !important;
}
.tohr-cta-button:not(.tohr-cta-primary):hover,
.wp-block-button.is-style-outline .wp-block-button__link:hover {
    background: rgba(184, 149, 86, 0.12) !important;
    color: var(--tohr-gold-hi) !important;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.wp-block-navigation a:focus-visible,
.wp-block-button__link:focus-visible,
.tohr-cta-button:focus-visible {
    outline: 2px solid var(--tohr-gold-hi) !important;
    outline-offset: 4px !important;
    box-shadow: 0 0 0 4px rgba(184, 149, 86, 0.18) !important;
}

/* Forms: Contact shortcode and Get Involved form. */
.tohr-gi-form,
.thr-contact-form,
.tohr-contact-form,
form[class*="contact"] {
    background: rgba(26, 23, 20, 0.72);
    border: 1px solid rgba(184, 149, 86, 0.22);
    padding: clamp(1.25rem, 4vw, 2rem);
}
.tohr-gi-field label,
.thr-contact-form label,
.tohr-contact-form label,
form[class*="contact"] label {
    color: var(--tohr-cream);
    font-weight: 700;
    letter-spacing: 0.04em;
}
.tohr-gi-help,
.thr-contact-form .description,
.tohr-contact-form .description {
    color: var(--tohr-bone);
    font-size: 0.95rem;
    margin-top: 0.35rem;
}
.tohr-gi-form input,
.tohr-gi-form textarea,
.thr-contact-form input,
.thr-contact-form textarea,
.tohr-contact-form input,
.tohr-contact-form textarea,
form[class*="contact"] input,
form[class*="contact"] textarea {
    width: 100%;
    min-height: 44px;
    background: #0f0d0b;
    color: var(--tohr-cream);
    border: 1px solid rgba(184, 149, 86, 0.28);
    padding: 0.85rem 1rem;
}
.tohr-gi-error,
.thr-contact-error,
.tohr-contact-error {
    border: 1px solid rgba(255, 120, 100, 0.55);
    background: rgba(120, 35, 25, 0.22);
    color: #ffd9d2;
    padding: 1rem;
    margin-bottom: 1rem;
}
.tohr-gi-success,
.thr-contact-success,
.tohr-contact-success {
    border: 1px solid rgba(184, 149, 86, 0.45);
    background: rgba(184, 149, 86, 0.1);
    padding: clamp(1.25rem, 4vw, 2rem);
}

/* Footer tap targets and mobile stacking. */
footer .wp-block-navigation a,
footer .wp-block-social-link a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}
@media (max-width: 781px) {
    footer .tohr-footer-main,
    footer .wp-block-group.alignwide {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center;
        gap: 1.25rem !important;
    }
    footer .wp-block-navigation__container {
        justify-content: center !important;
        gap: 0.75rem 1rem !important;
    }
}


/* =========================================================================
   18. SINGLE UPDATE TEMPLATE
   ========================================================================= */
.tohr-single-update {
    max-width: 980px;
    margin: 0 auto;
    padding: clamp(3rem, 8vw, 5.5rem) 1.5rem;
}
.tohr-update-article {
    max-width: 760px;
    margin: 0 auto;
}
.tohr-back-link {
    margin: 0 0 2rem;
    font-size: 0.9rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.tohr-back-link a {
    color: var(--tohr-gold);
    border-bottom: 1px solid rgba(184, 149, 86, 0.4);
}
.tohr-update-single-header {
    text-align: left;
    padding-inline: 0;
    margin-bottom: clamp(2rem, 5vw, 3.25rem);
}
.tohr-update-date {
    color: var(--tohr-bone);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 1rem;
}
.tohr-update-content {
    font-size: 1.08rem;
    line-height: 1.8;
}
.tohr-update-content p {
    margin-bottom: 1.35rem;
}
.tohr-update-footer {
    margin-top: clamp(2.5rem, 6vw, 4rem);
}
.tohr-update-footer h2 {
    color: var(--tohr-gold);
    margin-top: 0;
}
@media (max-width: 600px) {
    .tohr-single-update {
        padding-top: 2.25rem;
    }
    .tohr-update-single-header h1 {
        font-size: clamp(2rem, 10vw, 2.8rem) !important;
    }
}


/* Single update CTA row spacing fix. */
.tohr-update-footer .tohr-card-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}
.tohr-update-footer .tohr-card-ctas .tohr-cta-button {
    margin: 0;
    padding-inline: 1rem;
}
@media (max-width: 600px) {
    .tohr-update-footer .tohr-card-ctas .tohr-cta-button {
        width: 100%;
    }
}


/* =========================================================================
   19. MOBILE NAV OVERLAY — centered, unclipped, intentional CTA
   ========================================================================= */
@media (max-width: 781px) {
    html.has-modal-open,
    body.has-modal-open {
        overflow-x: hidden !important;
    }

    header .wp-block-navigation__responsive-container.is-menu-open {
        inset: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        min-width: 0 !important;
        overflow-x: hidden !important;
        background: rgba(10, 9, 8, 0.98) !important;
        border-left: 1px solid rgba(184, 149, 86, 0.18);
        box-sizing: border-box;
    }

    header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog,
    header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box;
        padding-left: clamp(1.25rem, 6vw, 2rem) !important;
        padding-right: clamp(1.25rem, 6vw, 2rem) !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container {
        width: min(100%, 25rem) !important;
        max-width: calc(100vw - 2.5rem) !important;
        margin: clamp(2.75rem, 8vw, 4rem) auto 0 !important;
        padding: 0 !important;
        align-items: stretch !important;
        gap: 0 !important;
        box-sizing: border-box;
    }

    header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item {
        width: 100% !important;
        max-width: 100% !important;
        align-items: stretch !important;
        box-sizing: border-box;
        border-top: 1px solid rgba(184, 149, 86, 0.14);
    }

    header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-item__content,
    header .wp-block-navigation__responsive-container.is-menu-open li > a {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        box-sizing: border-box;
        padding: 1.05rem 0.85rem !important;
        text-align: center !important;
        white-space: normal !important;
        overflow-wrap: anywhere;
        letter-spacing: clamp(0.14em, 3.6vw, 0.22em) !important;
        font-size: clamp(0.92rem, 4.1vw, 1.18rem) !important;
        line-height: 1.25 !important;
    }

    /* First nav item is Join the Temple. Make it a real, centered CTA button. */
    header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > li:first-child {
        border-top: 0;
        padding: 0 0 1.2rem !important;
    }

    header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > li:first-child > a,
    header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__container > li:first-child > .wp-block-navigation-item__content {
        width: min(100%, 22rem) !important;
        margin: 0 auto !important;
        padding: 0.95rem 1.15rem !important;
        background: var(--tohr-gold) !important;
        color: var(--tohr-black) !important;
        border: 1px solid var(--tohr-gold-hi) !important;
        box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset, 0 10px 26px rgba(0,0,0,0.32);
        font-weight: 700 !important;
        white-space: nowrap !important;
        overflow-wrap: normal !important;
        letter-spacing: clamp(0.1em, 2.6vw, 0.16em) !important;
        font-size: clamp(0.82rem, 3.7vw, 1rem) !important;
    }

    header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu {
        align-items: stretch !important;
    }

    header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu > .wp-block-navigation-item__content,
    header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation-submenu > a {
        justify-content: center !important;
    }

    header .wp-block-navigation__responsive-container.is-menu-open button.wp-block-navigation-submenu__toggle {
        position: absolute !important;
        right: 0.25rem !important;
        top: 0.72rem !important;
        background: transparent !important;
        border: 0 !important;
        box-shadow: none !important;
        padding: 0.5rem !important;
        color: var(--tohr-cream) !important;
    }

    header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 0 !important;
        margin: 0.25rem auto 0.75rem !important;
        padding: 0.35rem 0 !important;
        border-color: rgba(184, 149, 86, 0.25) !important;
        box-sizing: border-box;
    }

    header .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__submenu-container li > a {
        justify-content: center !important;
        padding: 0.8rem 0.75rem !important;
        font-size: clamp(0.78rem, 3.4vw, 0.95rem) !important;
        letter-spacing: clamp(0.1em, 2.8vw, 0.16em) !important;
    }

    header .wp-block-navigation__responsive-container-close {
        top: 1rem !important;
        right: 1rem !important;
        border-radius: 999px !important;
        background: rgba(255,255,255,0.06) !important;
    }
}

/* ==========================================================================
   TOHR LAUNCH POLISH - audit implementation 2026-07-16
   ========================================================================== */

.tohr-emergency-panel {
    background: linear-gradient(180deg, rgba(184, 149, 86, 0.10), rgba(15, 13, 11, 0));
}
.tohr-emergency-panel__title {
    color: var(--tohr-gold, #B89556);
    text-align: center;
    margin-bottom: 1.25rem;
}
.tohr-emergency-panel__grid {
    gap: 1.5rem;
}
.tohr-emergency-panel__grid .wp-block-column {
    border: 1px solid rgba(184, 149, 86, 0.28);
    background: rgba(15, 13, 11, 0.48);
    padding: 1.25rem;
}
.tohr-emergency-panel__grid h3 {
    margin-top: 0;
    color: var(--tohr-cream, #E8DFD2);
    font-size: 1rem;
}
.tohr-emergency-panel__note {
    color: #C9BFB0;
    font-size: 0.9rem;
    text-align: center;
    margin-top: 1.25rem;
}

.woocommerce-shop .woocommerce-ordering {
    display: none !important;
}
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}
.woocommerce ul.products li.product a img,
.woocommerce-page ul.products li.product a img {
    aspect-ratio: 1 / 1;
    object-fit: contain;
}
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button,
.woocommerce ul.products li.product a[href^="mailto:"],
.woocommerce-page ul.products li.product a[href^="mailto:"] {
    margin-top: auto;
}
.woocommerce .woocommerce-result-count {
    color: #C9BFB0;
}

main form input[type="checkbox"] {
    width: 1.15rem;
    height: 1.15rem;
    min-width: 1.15rem;
    accent-color: var(--tohr-gold, #B89556);
    vertical-align: middle;
}
main form label,
main form .thr-form-consent,
main form p:has(input[type="checkbox"]) {
    line-height: 1.45;
}
main form input:focus,
main form textarea:focus,
main form select:focus {
    outline: 2px solid rgba(184, 149, 86, 0.75);
    outline-offset: 2px;
}

/* ==========================================================================
   FOOTER NAV POLISH - contact link + compact separators 2026-07-16
   ========================================================================== */
footer nav.wp-block-navigation,
footer .wp-block-navigation .wp-block-navigation__container {
    gap: 0 !important;
    row-gap: 0.35rem !important;
    justify-content: center;
}
footer .wp-block-navigation .wp-block-navigation__container > li {
    display: inline-flex !important;
    align-items: center;
    flex: 0 0 auto;
}
footer .wp-block-navigation .wp-block-navigation__container > li + li::before {
    content: "•";
    color: rgba(184, 149, 86, 0.78);
    font-size: 0.68rem;
    line-height: 1;
    margin: 0 0.55rem;
}
footer .wp-block-navigation .wp-block-navigation-item__content,
footer .wp-block-navigation a {
    font-size: clamp(0.68rem, 0.62rem + 0.18vw, 0.78rem) !important;
    letter-spacing: 0.08em !important;
    line-height: 1.45;
}
@media (max-width: 600px) {
    footer .wp-block-navigation .wp-block-navigation__container {
        justify-content: center;
    }
    footer .wp-block-navigation .wp-block-navigation__container > li + li::before {
        margin: 0 0.42rem;
    }
}

/* ==========================================================================
   MOBILE FOOTER NAV ALIGNMENT - stacked links, no drifting bullets 2026-07-17
   ========================================================================== */
@media (max-width: 600px) {
    footer nav.wp-block-navigation,
    footer .wp-block-navigation .wp-block-navigation__container {
        width: 100% !important;
    }
    footer .wp-block-navigation .wp-block-navigation__container {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.52rem !important;
        max-width: 22rem;
        margin-inline: auto !important;
        padding-inline: 1rem !important;
    }
    footer .wp-block-navigation .wp-block-navigation__container > li {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100%;
        text-align: center;
    }
    footer .wp-block-navigation .wp-block-navigation__container > li + li::before {
        content: none !important;
        display: none !important;
    }
    footer .wp-block-navigation .wp-block-navigation-item__content,
    footer .wp-block-navigation a {
        min-height: 0 !important;
        padding: 0.12rem 0 !important;
        text-align: center;
        line-height: 1.35 !important;
        letter-spacing: 0.075em !important;
        white-space: normal !important;
    }
}

/* ==========================================================================
   FOOTER NAV ALIGNMENT - remove wrapping bullet separators 2026-07-17
   ========================================================================== */
footer nav.wp-block-navigation,
footer .wp-block-navigation .wp-block-navigation__container {
    width: 100% !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.7rem 1.35rem !important;
    row-gap: 0.7rem !important;
}
footer .wp-block-navigation .wp-block-navigation__container > li {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
footer .wp-block-navigation .wp-block-navigation__container > li + li::before {
    content: none !important;
    display: none !important;
    margin: 0 !important;
}
footer .wp-block-navigation .wp-block-navigation-item__content,
footer .wp-block-navigation a {
    min-height: 0 !important;
    padding: 0.08rem 0 !important;
    text-align: center;
}
@media (max-width: 600px) {
    footer .wp-block-navigation .wp-block-navigation__container {
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 0.52rem !important;
        max-width: 22rem;
        margin-inline: auto !important;
        padding-inline: 1rem !important;
    }
    footer .wp-block-navigation .wp-block-navigation__container > li {
        width: 100%;
    }
}

/* ==========================================================================
   HEADER ABOUT DROPDOWN ALIGNMENT - chevron inline, panel right-aligned 2026-07-17
   ========================================================================== */
@media (min-width: 1024px) {
    header nav.wp-block-navigation li.wp-block-navigation-submenu {
        position: relative !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.16rem !important;
    }
    header nav.wp-block-navigation li.wp-block-navigation-submenu > a.wp-block-navigation-item__content {
        display: inline-flex !important;
        align-items: center !important;
        width: auto !important;
        white-space: nowrap !important;
    }
    header nav.wp-block-navigation li.wp-block-navigation-submenu > button.wp-block-navigation-submenu__toggle,
    header nav.wp-block-navigation button.wp-block-navigation__submenu-icon.wp-block-navigation-submenu__toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: 0.1rem !important;
        position: static !important;
        flex: 0 0 auto !important;
    }
    header nav.wp-block-navigation li.wp-block-navigation-submenu > .wp-block-navigation__submenu-container {
        left: auto !important;
        right: 0 !important;
        transform: none !important;
        margin-top: 0.6rem !important;
        transform-origin: top right;
    }
}

/* ==========================================================================
   HEADER ABOUT DROPDOWN ALIGNMENT - panel starts at ABOUT text 2026-07-17
   ========================================================================== */
@media (min-width: 1024px) {
    header nav.wp-block-navigation li.wp-block-navigation-submenu {
        position: relative !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.16rem !important;
    }
    header nav.wp-block-navigation li.wp-block-navigation-submenu > a.wp-block-navigation-item__content {
        display: inline-flex !important;
        align-items: center !important;
        width: auto !important;
        white-space: nowrap !important;
    }
    header nav.wp-block-navigation li.wp-block-navigation-submenu > button.wp-block-navigation-submenu__toggle,
    header nav.wp-block-navigation button.wp-block-navigation__submenu-icon.wp-block-navigation-submenu__toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: 0.1rem !important;
        position: static !important;
        flex: 0 0 auto !important;
    }
    header nav.wp-block-navigation li.wp-block-navigation-submenu > .wp-block-navigation__submenu-container {
        left: -0.85rem !important;
        right: auto !important;
        transform: none !important;
        margin-top: 0.6rem !important;
        transform-origin: top left;
    }
}

/* ========================================================================== 
   HOMEPAGE COMMERCE ACTIONS - shop launch 2026-07-30
   ========================================================================== */
.tohr-hero-actions {
    gap: 0.75rem !important;
    align-items: stretch !important;
}
.tohr-hero-actions .wp-block-button__link {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    min-width: 11.5rem;
    min-height: 52px;
    padding: 0.85rem 1.35rem !important;
    box-sizing: border-box;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.tohr-hero-actions .tohr-hero-shop .wp-block-button__link,
.tohr-hero-actions .tohr-hero-donate .wp-block-button__link {
    border: 1px solid #c9a961 !important;
    background: #c9a961 !important;
    color: #0f0d0b !important;
}
.tohr-hero-actions .tohr-hero-shop .wp-block-button__link:hover,
.tohr-hero-actions .tohr-hero-shop .wp-block-button__link:focus-visible,
.tohr-hero-actions .tohr-hero-donate .wp-block-button__link:hover,
.tohr-hero-actions .tohr-hero-donate .wp-block-button__link:focus-visible {
    border-color: #e0c276 !important;
    background: #e0c276 !important;
    color: #0f0d0b !important;
}
.tohr-hero-actions .tohr-hero-join .wp-block-button__link {
    border-color: rgba(201, 169, 97, 0.8) !important;
    background: rgba(15, 13, 11, 0.45) !important;
    color: #e8dfd2 !important;
}
.tohr-hero-actions .wp-block-button__link:focus-visible {
    outline: 3px solid #fff8ec;
    outline-offset: 3px;
}
@media (max-width: 600px) {
    .tohr-hero-actions {
        width: 100%;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 0.65rem !important;
    }
    .tohr-hero-actions .wp-block-button,
    .tohr-hero-actions .wp-block-button__link {
        width: 100%;
    }
    .tohr-hero-actions .wp-block-button__link {
        min-height: 50px;
    }
}

/* Footer contact details */
.tohr-footer-contact p {
    margin-block: 0;
    line-height: 1.6;
}
.tohr-footer-contact a {
    overflow-wrap: anywhere;
}

