.hm-live { padding: 5rem 0 4rem; }

.hm-live-head {
    text-align: center;
    margin-bottom: 2.5rem;
}
.hm-eyebrow .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 4px rgba(74, 222, 128, 0.18);
    animation: hmPulse 2s ease-in-out infinite;
}
@keyframes hmPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.4); }
    50%      { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}
.hm-live-title { margin: 0 0 0.5rem; }
.hm-live-title a { color: inherit; text-decoration: none; }
.hm-live-title a:hover em {
    text-decoration: underline;
    text-decoration-color: var(--lg-gold-tint-55);
    text-underline-offset: 6px;
}
.hm-live-updated {
    color: var(--lg-muted);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-weight: 400;
    margin: 0;
}
.hm-live-updated span { color: var(--lg-gold-soft); }

.hm-feature { padding: 5rem 0; }
.hm-feature--alt::before {
    background: radial-gradient(50% 60% at 85% 50%, rgba(212, 175, 55, 0.07), transparent 60%);
}

.hm-feature-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 4rem;
    align-items: center;
}
.hm-feature-grid > * { min-width: 0; }
.hm-feature--reverse .hm-feature-grid {
    grid-template-areas: "text image";
}
.hm-feature--reverse .hm-feature-text { grid-area: text; }
.hm-feature--reverse .hm-feature-image { grid-area: image; }

.hm-feature-image {
    position: relative;
    isolation: isolate;
    max-width: 100%;
}
.hm-feature-image figure {
    margin: 0;
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--lg-border-hover);
    box-shadow:
        0 30px 80px -32px rgba(0, 0, 0, 0.6),
        0 12px 28px -18px rgba(212, 175, 55, 0.22);
    transition: transform 0.4s ease;
}
.hm-feature-image figure::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(180deg, transparent 60%, rgba(4, 26, 40, 0.4) 100%);
}
.hm-feature-image img {
    width: 100%;
    height: auto;
    display: block;
}
.hm-feature-image:hover figure { transform: translateY(-4px); }

.hm-feature-text { color: var(--lg-text); }
.hm-feature-title { margin: 0 0 1.5rem; }
.hm-feature-body {
    color: var(--lg-text);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
}
.hm-feature-body p { margin: 0 0 1rem; }
.hm-feature-body p:last-child { margin-bottom: 0; }
.hm-feature-body strong {
    color: #ffffff;
    font-weight: 500;
}

.hm-checklist {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.hm-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--lg-text);
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.hm-feature-close {
    margin-top: 1.5rem;
    color: var(--lg-gold);
    font-family: var(--lg-font-serif);
    font-style: italic;
    font-size: 18px;
    letter-spacing: 0.005em;
}

@media (max-width: 991px) {
    .hm-feature { padding: 3.5rem 0; }
    .hm-feature-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .hm-feature--reverse .hm-feature-grid {
        grid-template-areas: "image" "text";
    }
}
@media (max-width: 575px) {
    .hm-live { padding: 3.5rem 0 2.5rem; }
}
