.lgl-hero {
    position: relative;
    background: var(--navy);
    padding-block: clamp(100px, 14vw, 140px) clamp(48px, 7vw, 72px);
    overflow: hidden;
}
.lgl-hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 10% 20%, rgba(255, 130, 16, 0.38) 0%, transparent 48%),
        radial-gradient(ellipse at 85% 70%, rgba(3, 152, 158, 0.32) 0%, transparent 52%),
        radial-gradient(circle at 65% 10%, rgba(248, 62, 12, 0.18) 0%, transparent 38%);
    z-index: 0;
}
.lgl-hero .wrapper {
    position: relative;
    z-index: 1;
    max-width: 760px;
}
.lgl-hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.28em;
    color: var(--orange);
    margin-bottom: 20px;
}
.lgl-hero__eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--orange);
    flex-shrink: 0;
}
.lgl-hero__heading {
    color: #ffffff;
    margin-bottom: 20px;
}
.lgl-hero__sub {
    color: rgba(255, 255, 255, 0.78);
    max-width: 620px;
    font-size: clamp(1rem, 1.6vw, 1.12rem);
    line-height: 1.75;
    margin-bottom: 24px;
}
.lgl-hero__date {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--orange);
    background: rgba(255, 130, 16, 0.12);
    border: 1px solid rgba(255, 130, 16, 0.32);
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin: 0;
}
.lgl-body {
    background: var(--cream);
    padding-block: clamp(40px, 6vw, 72px) clamp(56px, 8vw, 96px);
}
.lgl-body__wrapper {
    max-width: 820px;
}
.lgl-doc {
    background: #ffffff;
    border: 2px solid var(--pub-border);
    border-radius: var(--radius-lg);
    padding: clamp(28px, 5vw, 56px);
    box-shadow: 4px 4px 0 rgba(27, 41, 60, 0.08);
}
.lgl-section {
    padding-block: clamp(20px, 2.5vw, 28px);
    border-bottom: 1px solid var(--pub-border-light);
}
.lgl-section:first-child {
    padding-top: 0;
}
.lgl-section:last-child {
    padding-bottom: 0;
    border-bottom: none;
}
.lgl-section__heading {
    font-family: var(--font-display);
    font-size: clamp(1.25rem, 2.4vw, 1.7rem);
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 14px;
    line-height: 1.2;
    letter-spacing: -0.015em;
}
.lgl-section p {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--pub-text-secondary);
    margin-bottom: 14px;
}
.lgl-section p:last-child {
    margin-bottom: 0;
}
.lgl-list {
    list-style: none;
    margin: 0 0 16px;
    padding: 0;
}
.lgl-list li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    font-size: 0.96rem;
    line-height: 1.7;
    color: var(--pub-text-secondary);
}
.lgl-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--orange);
}
.lgl-list li:last-child {
    margin-bottom: 0;
}
.lgl-deflist {
    margin: 0 0 16px;
}
.lgl-deflist dt {
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--navy);
    margin-top: 16px;
    margin-bottom: 6px;
    line-height: 1.3;
}
.lgl-deflist dt:first-child {
    margin-top: 0;
}
.lgl-deflist dd {
    margin: 0 0 4px;
    padding-left: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--pub-text-secondary);
}
.lgl-link {
    color: var(--teal);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(3, 152, 158, 0.4);
    text-underline-offset: 3px;
    transition: color var(--transition-fast), text-decoration-color var(--transition-fast);
}
.lgl-link:hover,
.lgl-link:focus-visible {
    color: var(--teal-deep);
    text-decoration-color: var(--teal);
}
.lgl-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 12px 22px;
    background: var(--orange);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.92rem;
    border: 2px solid var(--navy);
    border-radius: var(--radius-pill);
    box-shadow: 4px 4px 0 var(--navy);
    text-decoration: none;
    transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}
.lgl-cta:hover,
.lgl-cta:focus-visible {
    background: var(--red-orange);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--navy);
    color: #ffffff;
}
@media (max-width: 640px) {
    .lgl-doc {
        border-radius: var(--radius-md);
    }
    .lgl-section__heading {
        margin-bottom: 12px;
    }
    .lgl-list li {
        padding-left: 18px;
    }
    .lgl-list li::before {
        top: 10px;
        width: 6px;
        height: 6px;
    }
}
