/* nav.breadcrumbs */
.al-sec-nav-breadcrumbs {
    margin-top:30px;
}

/* content.pageHeading */
.al-sec-content-pageHeading .wrap {
    padding-top: clamp(22px, 5vw, 52px) !important;
    padding-bottom: clamp(10px, 2vw, 20px);
}

.al-sec-content-pageHeading .display {
    display: flex;
    align-items: center;
    gap: clamp(16px, 3vw, 28px);
    font-size: clamp(30px, 5.5vw, 48px) !important;
    line-height: 1.12;
    letter-spacing: -0.015em;
    animation: alPageHeadingIn 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

/* editorial hairline extending from the title to the edge */
.al-sec-content-pageHeading .display::after {
    content: "";
    flex: 1;
    min-width: 40px;
    height: 1px;
    background: currentColor;
    opacity: 0.18;
    transform-origin: left center;
    animation: alPageHeadingRule 0.9s 0.15s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes alPageHeadingIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes alPageHeadingRule {
    from { transform: scaleX(0); }
    to   { transform: scaleX(1); }
}

@media (prefers-reduced-motion: reduce) {
    .al-sec-content-pageHeading .display,
    .al-sec-content-pageHeading .display::after {
        animation: none;
    }
}

@media (max-width: 480px) {
    .al-sec-content-pageHeading .display {
        gap: 14px;
    }
}

/* content.richText */
.al-sec-content-richText {
    font-size: 16px;
    line-height: 1.7;
}