.epp-fh-wrap { line-height: 1.2; }

.epp-fh-heading {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    line-height: inherit;
}

.epp-fh-normal {
    display: inline;
}

/* ── Gradient ── */
.epp-fh-fancy--gradient {
    --epp-fh-c1: var(--epp-primary, #7c3aed);
    --epp-fh-c2: #ec4899;
    --epp-fh-angle: 135deg;
    display: inline;
    background: linear-gradient(var(--epp-fh-angle), var(--epp-fh-c1), var(--epp-fh-c2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Outline / Stroke ── */
.epp-fh-fancy--outline {
    display: inline;
    color: transparent;
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--epp-primary, #7c3aed);
}

/* ── Highlight ── */
.epp-fh-fancy--highlight {
    display: inline;
    background-color: #fde68a;
    padding: 0 6px 2px;
    border-radius: 3px;
}

/* ── Animated Underline ── */
.epp-fh-fancy--underline {
    display: inline;
    position: relative;
}
.epp-fh-fancy--underline::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 3px;
    border-radius: 2px;
    background-color: var(--epp-primary, #7c3aed);
    transition: width .5s ease;
}
.epp-fh-wrap:hover .epp-fh-fancy--underline::after,
.epp-fh-fancy--underline.epp-animated::after {
    width: 100%;
}

/* ── Shadow ── */
.epp-fh-fancy--shadow {
    --epp-fh-sx:    3px;
    --epp-fh-sy:    3px;
    --epp-fh-sblur: 12px;
    --epp-fh-sc:    rgba(124,58,237,.4);
    display: inline;
    text-shadow: var(--epp-fh-sx) var(--epp-fh-sy) var(--epp-fh-sblur) var(--epp-fh-sc);
}

/* ── Separator ── */
.epp-fh-separator {
    display: block;
    width: 60px;
    border: none;
    border-top: 2px solid #e2e8f0;
    margin: 12px auto;
}

/* ── Heading Link ── */
.epp-fh-link {
    display: inline-block;
    text-decoration: none;
    color: inherit;
    width: 100%;
}
.epp-fh-link:hover { text-decoration: none; }

/* ── Sub Heading ── */
.epp-fh-sub {
    margin: 12px 0 0;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--epp-gray-500, #6b7280);
}
