/**
 * Shared Component Styles
 *
 * Reusable patterns used across multiple blocks and templates.
 * Loaded after main.css, before block-specific CSS.
 */

/* ---- Outline Button ---- */
.wlh-btn-outline,
.wp-block-button.is-style-outline--1 .wp-block-button__link {
    font-family: var(--wp--preset--font-family--heading);
    font-size: var(--wp--preset--font-size--body);
    text-transform: uppercase;
    font-weight: 600;
    padding: .5rem 1rem;
    background: transparent;
    border: 2px solid var(--wp--preset--color--light-green);
    color: var(--wp--preset--color--light-green);
    text-decoration: none;
    border-radius: 0;
}

.wlh-btn-outline:hover,
.wp-block-button.is-style-outline--1 .wp-block-button__link:hover {
    background-color: var(--wp--preset--color--light-green);
    color: var(--wp--preset--color--dark-green);
    text-decoration: none;
}

/* ---- Date Display (mm . dd . yyyy with bullet separators) ---- */
.wlh-date {
    display: block;
    font-weight: 600;
    line-height: 1;
}

.wlh-date__month::after,
.wlh-date__day::after {
    content: " \25AA\FE0E";
}

/* ---- Content Width Constraint ---- */
@media screen and (min-width: 1024px) {
    .wlh-content-narrow {
        max-width: 66%;
    }
}
