/* ==========================================================================
   Arbor Law — Single Insight (Post) template styles
   Class-based so any cloned section travels cleanly.
   ========================================================================== */

/* Hide entire Overview section when the post's `overview` field is empty.
   Body class `al-no-overview` is added by the plugin via body_class filter. */
body.al-no-overview .al-insight-overview {
    display: none !important;
}

/* Hide entire Article Content section when the post body is empty. */
body.al-no-content .al-insight-article-section {
    display: none !important;
}

/* Hide entire Author Bio section when no team_member is linked. */
body.al-no-author-bio .al-insight-bio-section {
    display: none !important;
}

/* Hide entire Related Services section when no services are linked. */
body.al-no-related-services .al-insight-rs-section {
    display: none !important;
}

/* Narrow article column — used by Overview, Article Content, etc. */
.al-insight-narrow {
    width: 100%;
    max-width: 800px;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Overview section — body paragraph styling */
.al-insight-overview-text,
.al-insight-overview-text p {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 21px !important;
    line-height: 34px !important;
    color: rgba(31, 35, 40, 0.7) !important;
    margin: 0 !important;
}
.al-insight-overview-text p + p {
    margin-top: 1em !important;
}
@media (max-width: 767px) {
    .al-insight-overview-text,
    .al-insight-overview-text p {
        font-size: 18px !important;
        line-height: 30px !important;
    }
}

/* ---------- Hero — breadcrumb (matches People template style) ---------- */
.al-insight-breadcrumb {
    font-family: "Satoshi", sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0;
    white-space: pre-wrap;
}
.al-insight-breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}
.al-insight-breadcrumb a:hover {
    color: #FFFFFF;
}

/* ---------- Hero — category pills (dynamic from post categories) ---------- */
.al-insight-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.al-insight-cat-pill {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: "Satoshi", sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #FFFFFF;
    line-height: 1;
}

/* ---------- Hero — author mini-row (dynamic via shortcodes) ---------- */
.al-insight-avatar-wrap .al-insight-avatar-img,
.al-insight-avatar-img {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    display: block !important;
}
.al-insight-author-name-wrap,
.al-insight-author-name-wrap p {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: 1.1 !important;
    color: #FFFFFF !important;
    margin: 0 !important;
    padding: 0 !important;
}
.al-insight-author-role-wrap,
.al-insight-author-role-wrap p {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
    color: rgba(255,255,255,0.5) !important;
    margin: 0 !important;
    padding: 0 !important;
}
/* Tighten the Elementor widget container chrome on these wrappers
   so name + role sit flush together and centre cleanly with the avatar. */
.al-insight-author-name-wrap .elementor-widget-container,
.al-insight-author-role-wrap .elementor-widget-container {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
}
/* Strip default text-editor wrapping when used as a single-line shortcode host */
.al-insight-avatar-wrap .elementor-widget-container > p:empty,
.al-insight-author-name-wrap .elementor-widget-container > p:empty,
.al-insight-author-role-wrap .elementor-widget-container > p:empty {
    display: none;
}

/* Author name link — match surrounding white text, subtle hover */
.al-insight-author-name-wrap .al-insight-author-link {
    color: inherit !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
}
.al-insight-author-name-wrap .al-insight-author-link:hover {
    opacity: 0.75;
}

/* Author photo link — keep image circular, smooth hover lift */
.al-insight-avatar-wrap .al-insight-author-photo-link {
    display: inline-block;
    line-height: 0;
    border-radius: 50%;
    overflow: hidden;
    transition: opacity 0.2s ease;
}
.al-insight-avatar-wrap .al-insight-author-photo-link:hover {
    opacity: 0.85;
}

/* Author photo fallback — white circle behind the Arbor Law icon */
.al-insight-avatar-wrap .al-insight-author-photo-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #FFFFFF;
    overflow: hidden;
}
.al-insight-avatar-wrap .al-insight-avatar-img--fallback {
    width: 32px !important;
    height: 32px !important;
    border-radius: 0 !important;
    object-fit: contain !important;
}

/* ==========================================================================
   §3 Article Content — typography for editor-managed post body
   Wrapped in `.al-insight-article` by the [arbor_post_article_content] shortcode.
   ========================================================================== */

.al-insight-article {
    color: rgba(31, 35, 40, 0.7);
}

/* Default vertical rhythm — 24px between any two adjacent siblings */
.al-insight-article > * + * {
    margin-top: 24px !important;
}
.al-insight-article > *:first-child {
    margin-top: 0 !important;
}

/* H2 section heading */
.al-insight-article h2 {
    font-family: "Satoshi", sans-serif;
    font-weight: 700;
    font-size: 34px;
    line-height: 42px;
    color: #1F2328;
    margin: 0;
    padding: 0;
}
.al-insight-article h2::after {
    content: "";
    display: block;
    width: 60px;
    height: 2px;
    background: rgba(16, 85, 90, 0.3);
    margin-top: 12px;
}
/* H3 / H4 fallback for editors using sub-headings */
.al-insight-article h3 {
    font-family: "Satoshi", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #1F2328;
    margin: 0;
    padding: 0;
}
.al-insight-article h4 {
    font-family: "Satoshi", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #1F2328;
    margin: 0;
    padding: 0;
}

/* Body paragraphs + lists */
.al-insight-article p,
.al-insight-article ul,
.al-insight-article ol {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 30px;
    color: rgba(31, 35, 40, 0.7);
    margin: 0;
}
.al-insight-article ul,
.al-insight-article ol {
    padding-left: 24px;
}
.al-insight-article li + li {
    margin-top: 8px;
}
.al-insight-article a {
    color: #10555A;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.al-insight-article strong {
    color: #1F2328;
    font-weight: 700;
}

/* Spacing overrides — match Figma rhythm
   * H2 needs 60px above the heading (when preceded by a sibling)
   * Accent line ::after on H2 means the 26px gap between H2 + first sibling
     is 26px AFTER the accent (so override the default 24px to 26px)
   * Images sit 40px above + below
   * Blockquotes sit 40px above + below
   --------------------------------------------------------------------------- */
.al-insight-article > * + h2 { margin-top: 60px !important; }
.al-insight-article > h2 + * { margin-top: 26px !important; }

.al-insight-article > * + figure,
.al-insight-article > * + img,
.al-insight-article > * + .wp-caption,
.al-insight-article > * + p:has(> img:only-child),
.al-insight-article > * + p:has(> a > img:only-child) {
    margin-top: 40px !important;
}
.al-insight-article > figure + *,
.al-insight-article > img + *,
.al-insight-article > .wp-caption + *,
.al-insight-article > p:has(> img:only-child) + *,
.al-insight-article > p:has(> a > img:only-child) + * {
    margin-top: 40px !important;
}

.al-insight-article > * + blockquote { margin-top: 40px !important; }
.al-insight-article > blockquote + * { margin-top: 40px !important; }

/* Inline images — crop to 2:1 for visual consistency, regardless of upload
   aspect ratio. Classic editor wraps images in <p>; figure block uses figure. */
.al-insight-article img,
.al-insight-article figure,
.al-insight-article .wp-caption {
    max-width: 100%;
    width: 100% !important;
    margin: 0;
}
.al-insight-article p > img,
.al-insight-article p > a > img,
.al-insight-article figure img,
.al-insight-article .wp-caption img {
    display: block;
    width: 100% !important;
    height: 400px !important;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    border-radius: 8px;
}
.al-insight-article p:has(> img:only-child),
.al-insight-article p:has(> a > img:only-child) {
    margin: 0;
    padding: 0;
}
.al-insight-article figcaption,
.al-insight-article .wp-caption-text {
    font-family: "Lato", sans-serif;
    font-size: 13px;
    line-height: 1.4;
    color: rgba(31, 35, 40, 0.5);
    margin-top: 12px;
    text-align: left;
}
@media (max-width: 767px) {
    .al-insight-article p > img,
    .al-insight-article p > a > img,
    .al-insight-article figure img,
    .al-insight-article .wp-caption img {
        height: auto !important;
        aspect-ratio: 16 / 9;
    }
}

/* Blockquote — cream card with left accent bar */
.al-insight-article blockquote {
    background: #F2F1ED;
    border-radius: 8px;
    border-left: 4px solid rgba(16, 85, 90, 0.8);
    padding: 32px 40px;
    margin: 0;
}
.al-insight-article blockquote p {
    font-family: "Lato", sans-serif;
    font-style: italic;
    font-weight: 400;
    font-size: 20px;
    line-height: 32px;
    color: rgba(31, 35, 40, 0.8);
    margin: 0;
}
.al-insight-article blockquote p + p {
    margin-top: 16px;
}
.al-insight-article blockquote cite {
    display: block;
    margin-top: 12px;
    font-family: "Satoshi", sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 14px;
    color: rgba(16, 85, 90, 0.7);
}

/* Tablet / mobile typography scaling */
@media (max-width: 1024px) {
    .al-insight-article h2 { font-size: 28px; line-height: 36px; }
    .al-insight-article > * + h2 { margin-top: 48px !important; }
}
@media (max-width: 767px) {
    .al-insight-article h2 { font-size: 26px; line-height: 34px; }
    .al-insight-article p,
    .al-insight-article ul,
    .al-insight-article ol { font-size: 16px; line-height: 28px; }
    .al-insight-article blockquote { padding: 24px 28px; }
    .al-insight-article blockquote p { font-size: 18px; line-height: 30px; }
    .al-insight-article > * + h2 { margin-top: 40px !important; }
}

/* ==========================================================================
   §4 Author Bio — card pulled from linked team_member
   ========================================================================== */

.al-insight-bio-card {
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 32px;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Eyebrow — project-default pill style (text only, no bg) */
.al-insight-bio-eyebrow {
    font-family: "Satoshi", sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #10555A;
    line-height: 1;
    margin: 0 0 24px;
}

/* Header row — headshot + name/role stack */
.al-insight-bio-header {
    display: flex;
    align-items: center;
    gap: 20px;
}
.al-insight-bio-headshot {
    flex: 0 0 80px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: block;
    line-height: 0;
    transition: opacity 0.2s ease;
}
.al-insight-bio-headshot:hover {
    opacity: 0.85;
}
.al-insight-bio-headshot img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
}
.al-insight-bio-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.al-insight-bio-name {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 700 !important;
    font-size: 24px !important;
    line-height: 1.2 !important;
    color: #1F2328 !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.al-insight-bio-name:hover {
    color: #10555A !important;
}
.al-insight-bio-role {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.3;
    color: #6F8C86;
}

/* Dividers — Arbor Green @ 8% */
.al-insight-bio-divider {
    height: 1px;
    width: 100%;
    background: rgba(16, 85, 90, 0.08);
    margin: 24px 0 16px;
}

/* Contact row — phone / email / linkedin */
.al-insight-bio-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 0;
}
.al-insight-bio-contact-item {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 13px !important;
    line-height: 1.4 !important;
    color: rgba(31, 35, 40, 0.5) !important;
    text-decoration: none !important;
    transition: color 0.2s ease, text-decoration-color 0.2s ease;
}
.al-insight-bio-contact-item:hover {
    color: #10555A !important;
    text-decoration: underline !important;
    text-underline-offset: 2px;
}

/* Bio text — clamped to 3 lines */
.al-insight-bio-text {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 26px;
    color: rgba(31, 35, 40, 0.7);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* "View full profile →" link */
.al-insight-bio-cta {
    display: inline-block;
    margin-top: 20px;
    font-family: "Satoshi", sans-serif !important;
    font-weight: 500 !important;
    font-size: 14px !important;
    line-height: 1.2 !important;
    color: #10555A !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
}
.al-insight-bio-cta:hover {
    opacity: 0.75;
}
.al-insight-bio-cta-arrow {
    display: inline-block;
    transition: transform 0.2s ease;
    margin-left: 4px;
}
.al-insight-bio-cta:hover .al-insight-bio-cta-arrow {
    transform: translateX(3px);
}

/* Tablet / mobile — relax the contact row to wrap, stack header on narrow */
@media (max-width: 600px) {
    .al-insight-bio-card {
        padding: 24px;
    }
    .al-insight-bio-header {
        gap: 16px;
    }
    .al-insight-bio-headshot {
        flex-basis: 64px;
        width: 64px;
        height: 64px;
    }
    .al-insight-bio-name {
        font-size: 20px !important;
    }
    .al-insight-bio-contact {
        flex-direction: column;
        gap: 8px;
    }
}

/* ==========================================================================
   §5 Related Services — 3 service cards from ACF related_services
   ========================================================================== */

/* Title block (eyebrow pill + title + subtitle) — centered */
.al-insight-rs-titleblock {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 60px;
}
.al-insight-rs-eyebrow {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 13px;
    background: rgba(16, 85, 90, 0.08);
    font-family: "Satoshi", sans-serif;
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #10555A;
    line-height: 1;
}
.al-insight-rs-title {
    font-family: "Satoshi", sans-serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.1;
    color: #1F2328;
    margin: 0;
}
.al-insight-rs-subtitle {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 17px;
    line-height: 1.4;
    color: rgba(31, 35, 40, 0.6);
    margin: 0;
}
@media (max-width: 767px) {
    .al-insight-rs-title { font-size: 34px; }
    .al-insight-rs-titleblock { margin-bottom: 40px; }
}

/* Card grid */
.al-rs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
    justify-content: center;
}
.al-rs-grid--1 { grid-template-columns: minmax(0, 400px); justify-content: center; }
.al-rs-grid--2 { grid-template-columns: repeat(2, minmax(0, 400px)); justify-content: center; }

@media (max-width: 1024px) {
    /* Tablet: keep 3 columns per user's spec */
    .al-rs-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
}
@media (max-width: 767px) {
    .al-rs-grid,
    .al-rs-grid--1,
    .al-rs-grid--2 {
        grid-template-columns: minmax(0, 1fr);
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Card — base */
.al-rs-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 24px;
    display: flex;
    flex-direction: column;
    text-decoration: none !important;
    color: inherit;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.al-rs-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10);
}

/* Variant — white with Arbor Green top accent bar */
.al-rs-card--accent {
    background: #FFFFFF;
    padding-top: 27px; /* 24 + 3 for accent bar */
}
.al-rs-card--accent::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: rgba(16, 85, 90, 0.6);
}

/* Variant — cream, no accent */
.al-rs-card--cream {
    background: #F2F1ED;
}

/* Hover slide-in bottom bar (creative touch) */
.al-rs-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 4px;
    width: 0%;
    background: linear-gradient(90deg, #10555A 0%, #6F8C86 100%);
    transition: width 0.4s ease;
}
.al-rs-card:hover::after {
    width: 100%;
}

/* Card image — 352x160 inside 400 card (24px padding each side) */
.al-rs-card-image {
    width: 100%;
    aspect-ratio: 352 / 160;
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 20px;
    background: rgba(31, 35, 40, 0.04);
}
.al-rs-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}
.al-rs-card:hover .al-rs-card-image img {
    transform: scale(1.05);
}

/* Card body — column flex with CTA pinned bottom */
.al-rs-card-body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}
.al-rs-card-title {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    line-height: 1.2 !important;
    color: #1F2328 !important;
    margin: 0 !important;
    transition: color 0.25s ease;
}
.al-rs-card:hover .al-rs-card-title {
    color: #10555A !important;
}
.al-rs-card-accent {
    width: 40px;
    height: 2px;
    background: rgba(16, 85, 90, 0.3);
    margin: 12px 0 14px;
    transition: width 0.3s ease;
}
.al-rs-card:hover .al-rs-card-accent {
    width: 60px;
}
.al-rs-card-desc {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    line-height: 24px !important;
    color: rgba(31, 35, 40, 0.7) !important;
    margin: 0 !important;
    /* Clamp to 4 lines for consistent card heights */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.al-rs-card-cta {
    margin-top: auto;
    padding-top: 20px;
    font-family: "Satoshi", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: #10555A;
}
.al-rs-card-cta-arrow {
    display: inline-block;
    transition: transform 0.25s ease;
    margin-left: 4px;
}
.al-rs-card:hover .al-rs-card-cta-arrow {
    transform: translateX(4px);
}

/* ==========================================================================
   §7 Contact — dark gradient section with text col + form
   ========================================================================== */

.al-contact-section {
    background: radial-gradient(ellipse 1100px 700px at 25% 30%, #394A53 0%, #2C363D 35%, #1F2328 75%) !important;
}

/* Eyebrow on dark bg — project pill style.
   The class lives on the heading widget wrapper; pill chrome goes on the
   inner heading-title so the pill hugs its text instead of stretching to
   the full container width. */
.al-contact-eyebrow {
    align-self: flex-start !important;
    width: auto !important;
}
.al-contact-eyebrow .elementor-heading-title,
.al-contact-eyebrow {
    margin: 0 !important;
}
.al-contact-eyebrow .elementor-widget-container {
    display: inline-block;
    padding: 0 !important;
    margin: 0 !important;
}
.al-contact-eyebrow .elementor-heading-title {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: "Satoshi", sans-serif !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    color: #F2F1ED !important;
    line-height: 1 !important;
}

/* Title — Satoshi Bold 44/52, -1px tracking, white */
.al-contact-title h2,
.al-contact-title .elementor-heading-title {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 700 !important;
    font-size: 44px !important;
    line-height: 52px !important;
    letter-spacing: -1px !important;
    color: #FFFFFF !important;
    margin: 0 !important;
}

/* Subtitle */
.al-contact-subtitle p,
.al-contact-subtitle {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 28px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    margin: 0 !important;
}

/* Contact info trio — 36px line spacing, white@70 */
.al-contact-info-item .elementor-heading-title,
.al-contact-info-item {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
}
.al-contact-info-item a {
    color: inherit !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.al-contact-info-item a:hover {
    color: #FFFFFF !important;
}

/* ---------- Form (cream card, rectangular inputs, pill submit) ---------- */
.al-contact-form .elementor-form {
    background: #F2F1ED;
    border-radius: 4px;
    padding: 32px;
}
.al-contact-form .elementor-field-label {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 500 !important;
    font-size: 12px !important;
    line-height: 1 !important;
    color: #52707F !important;
    margin-bottom: 10px !important;
}
.al-contact-form .elementor-field-group {
    margin-bottom: 20px !important;
}
.al-contact-form .elementor-field-group:last-of-type {
    margin-bottom: 0 !important;
}
.al-contact-form .elementor-field-group .elementor-field {
    background: #F7F7F7 !important;
    border: 1px solid rgba(16, 85, 90, 0.08) !important;
    border-radius: 0 !important;
    padding: 12px 16px !important;
    height: 44px !important;
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    color: #1F2328 !important;
    box-shadow: none !important;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.al-contact-form .elementor-field-group textarea.elementor-field {
    height: 140px !important;
    resize: vertical;
}
.al-contact-form .elementor-field-group .elementor-field:focus {
    border-color: rgba(16, 85, 90, 0.4) !important;
    background: #FFFFFF !important;
    outline: none;
}
.al-contact-form .elementor-field::placeholder {
    color: rgba(31, 35, 40, 0.4) !important;
}

/* Submit button — mirror the .al-btn--on-light variant (Arbor Green pill,
   cream-tinted icon circle that flips to solid cream with green arrow on
   hover). Form's submit lives inside .elementor-button[type="submit"]. */
.al-contact-form .elementor-button[type="submit"] {
    background: #10555A !important;
    color: #F2F1ED !important;
    border: 0 !important;
    border-radius: 999px !important;
    padding: 8px 8px 8px 28px !important;
    min-height: 48px !important;
    font-family: var(--e-global-typography-f720221-font-family, Satoshi), sans-serif !important;
    font-weight: var(--e-global-typography-f720221-font-weight, 500) !important;
    font-size: var(--e-global-typography-f720221-font-size, 16px) !important;
    line-height: var(--e-global-typography-f720221-line-height, 16px) !important;
    letter-spacing: var(--e-global-typography-f720221-letter-spacing, 0.5px) !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
    transition: background .25s ease, color .25s ease;
}
.al-contact-form .elementor-button[type="submit"]:hover,
.al-contact-form .elementor-button[type="submit"]:focus {
    background: #0D4247 !important;
    color: #FFFFFF !important;
}
.al-contact-form .elementor-button[type="submit"] .elementor-button-content-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    gap: 14px !important;
}
.al-contact-form .elementor-button[type="submit"] .elementor-button-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(242, 241, 237, 0.18) !important;
    color: #F2F1ED !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    font-size: 14px !important;
    flex-shrink: 0;
    transition: background .25s ease, color .25s ease;
}
.al-contact-form .elementor-button[type="submit"] .elementor-button-icon svg,
.al-contact-form .elementor-button[type="submit"] .elementor-button-icon svg *,
.al-contact-form .elementor-button[type="submit"] .elementor-button-icon i {
    width: 14px !important;
    height: 14px !important;
    fill: #F2F1ED !important;
    color: #F2F1ED !important;
}
.al-contact-form .elementor-button[type="submit"]:hover .elementor-button-icon {
    background: #F2F1ED !important;
    color: #10555A !important;
}
.al-contact-form .elementor-button[type="submit"]:hover .elementor-button-icon svg,
.al-contact-form .elementor-button[type="submit"]:hover .elementor-button-icon svg *,
.al-contact-form .elementor-button[type="submit"]:hover .elementor-button-icon i {
    fill: #10555A !important;
    color: #10555A !important;
}

/* ---------- File upload field — styled drop zone (matches Figma careers form) ---------- */
.al-contact-form .elementor-field-type-upload {
    position: relative;
}

/* The file input becomes the dashed drop zone box. Native button is hidden and
   the file's text is masked, so only the dashed box is visible. */
.al-contact-form .elementor-field-type-upload .elementor-field {
    display: block !important;
    width: 100% !important;
    height: 140px !important;
    border: 2px dashed rgba(16, 85, 90, 0.15) !important;
    border-radius: 8px !important;
    background-color: transparent !important;
    background-image: url("data:image/svg+xml;utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='48' height='48' viewBox='0 0 48 48'%3E%3Ccircle cx='24' cy='24' r='24' fill='%23E0E8E8'/%3E%3Cpath d='M24 14 L24 30 M16 22 L24 14 L32 22' stroke='%2310555A' stroke-width='2.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
    background-position: center 14px !important;
    background-size: 48px 48px !important;
    background-repeat: no-repeat !important;
    color: transparent !important;
    text-align: center;
    cursor: pointer;
    padding: 78px 20px 20px !important;
    transition: border-color 0.2s ease, background-color 0.2s ease;
    box-shadow: none !important;
}
.al-contact-form .elementor-field-type-upload .elementor-field:hover {
    border-color: rgba(16, 85, 90, 0.45) !important;
    background-color: rgba(16, 85, 90, 0.02) !important;
}
.al-contact-form .elementor-field-type-upload .elementor-field:focus {
    outline: none !important;
    border-color: rgba(16, 85, 90, 0.6) !important;
}

/* Hide the native file picker button (cross-browser) */
.al-contact-form .elementor-field-type-upload .elementor-field::-webkit-file-upload-button,
.al-contact-form .elementor-field-type-upload .elementor-field::file-selector-button {
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    border: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    display: none !important;
}

/* Helper text + constraints — sit visually inside the drop zone, behind the
   input (clicks pass through via pointer-events:none). */
.al-contact-form .elementor-field-type-upload::before,
.al-contact-form .elementor-field-type-upload::after {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    text-align: center;
    white-space: nowrap;
    font-family: "Lato", sans-serif;
    z-index: 0;
}
.al-contact-form .elementor-field-type-upload::before {
    content: "Drag and drop your file(s) here, or click to browse";
    bottom: 38px;
    font-size: 14px;
    color: rgba(31, 35, 40, 0.6);
}
.al-contact-form .elementor-field-type-upload::after {
    content: "PDF, DOC, DOCX (Max 5MB)";
    bottom: 18px;
    font-size: 12px;
    color: rgba(31, 35, 40, 0.4);
}

/* When a file is picked (JS sets .has-file + data-filename), swap the helper
   text for the filename so the user knows their selection was registered. */
.al-contact-form .elementor-field-type-upload.has-file::before {
    content: attr(data-filename);
    color: #10555A;
    font-weight: 700;
    max-width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
}
.al-contact-form .elementor-field-type-upload.has-file::after {
    content: "Click to change file";
    color: rgba(31, 35, 40, 0.5);
}
.al-contact-form .elementor-field-type-upload.has-file .elementor-field {
    border-color: rgba(16, 85, 90, 0.4) !important;
    background-color: rgba(16, 85, 90, 0.04) !important;
}

/* ==========================================================================
   Site Header (clean rebuild — self-contained, no kit/theme inheritance)
   ========================================================================== */

/* Header section — Elementor compiles its own padding/min-height via
   element-id selectors, so we use class selectors only for behaviour
   (sticky bg, hover states) — not for layout. */

.al-header {
    background: #FFFFFF;
    width: 100%;
    z-index: 100;
    transition: background 0.25s ease, box-shadow 0.25s ease;
}

/* Sticky-effects state — Elementor adds .elementor-sticky--effects when scrolled past offset */
.al-header.elementor-sticky--effects {
    background: #FFFFFF !important;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06);
}

/* HOMEPAGE — transparent over hero, swap to white once scrolled OR
   when the user hovers the header / opens the mega menu (so the dropdown
   sits cleanly on a white surface). High-specificity selectors with html
   prefix to beat Elementor's compiled post-172 CSS. */
html body.home .al-header.al-header:not(.elementor-sticky--effects) {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
}
html body.home .al-header.al-header:not(.elementor-sticky--effects):hover,
html body.al-mega-open.home .al-header.al-header:not(.elementor-sticky--effects) {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
    box-shadow: 0 1px 8px rgba(0, 0, 0, 0.06) !important;
}
/* Header is part of the page flow — make sure the hero section sits
   underneath it, not pushed below. The sticky element on Elementor Pro
   reserves space; tell it not to. */
html body.home .e-sticky-spacer { display: none !important; }
html body.home .al-header { margin-bottom: -77px; position: relative; z-index: 100; }
/* Menu items stay Arbor Green throughout (transparent + white states).
   Logo also stays the regular dark green logo (no invert) since the items
   need to be readable on either bg. */
body.home .al-header:not(.elementor-sticky--effects) .al-header-link .elementor-heading-title,
body.home .al-header:not(.elementor-sticky--effects) .al-header-link a,
body.home .al-header:not(.elementor-sticky--effects) .al-header-search-icon i,
body.home .al-header:not(.elementor-sticky--effects) .al-header-menu-icon i {
    color: #10555A !important;
}
body.home .al-header:not(.elementor-sticky--effects) .al-header-logo img {
    filter: none !important;
}

/* Logo */
.al-header .al-header-logo img {
    width: 143px !important;
    height: auto !important;
    max-height: 22px !important;
    object-fit: contain;
    display: block;
    transition: filter 0.25s ease;
}
.al-header .al-header-logo .elementor-widget-container { line-height: 0; padding: 0 !important; margin: 0 !important; }

/* Outer header — force the 3 children to distribute logo / nav / right cluster.
   Header is .e-con-full (no .e-con-inner wrapper) so children are direct. */
.al-header.e-con-full,
.al-header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: space-between !important;
    flex-wrap: nowrap !important;
}

/* Logo + right cluster: content width. Nav: fills the middle and centers. */
.al-header > .al-header-logo,
.al-header > .al-header-right {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: none !important;
}
.al-header > .al-header-nav {
    flex: 1 1 auto !important;
    width: auto !important;
    max-width: none !important;
    justify-content: center !important;
}

/* Nav container — also e-con-full, children are direct */
.al-header .al-header-nav {
    line-height: 1;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 36px !important;
    flex-wrap: nowrap !important;
}
.al-header .al-header-nav > .al-header-link {
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
    width: auto !important;
}

/* Nav heading widgets — Elementor heading rendered as link.
   The dropdown trigger gets vertical padding so its hover area extends
   the full height of the header (no tiny target for mouse drift). */
.al-header .al-header-link { line-height: 1 !important; }
.al-header .al-header-link .elementor-widget-container {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
}
.al-header .al-header-link--has-dropdown .elementor-widget-container {
    padding: 28px 0 !important; /* full header-height hover target */
    margin: -28px 0 !important;  /* but no layout shift */
}
.al-header .al-header-link .elementor-heading-title,
.al-header .al-header-link .elementor-heading-title a {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 1 !important;
    letter-spacing: -0.5px !important;
    color: #10555A !important;
    text-decoration: none !important;
    white-space: nowrap !important;
    margin: 0 !important;
    transition: opacity 0.2s ease;
}
.al-header .al-header-link .elementor-heading-title a:hover,
.al-header .al-header-link:hover .elementor-heading-title { opacity: 0.7; }

/* Chevron after "What We Do" via ::after (no extra widget needed) */
.al-header .al-header-link--has-dropdown .elementor-heading-title::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin-left: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    vertical-align: middle;
}

/* Right cluster — e-con-full, children are direct */
.al-header .al-header-right {
    line-height: 1;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 22px !important;
    flex-wrap: nowrap !important;
}
.al-header .al-header-right > .elementor-widget {
    flex-grow: 0 !important;
    flex-shrink: 0 !important;
    width: auto !important;
}

/* Search + Hamburger Elementor icon widgets */
.al-header .al-header-search-icon,
.al-header .al-header-menu-icon { line-height: 0; }
.al-header .al-header-search-icon .elementor-widget-container,
.al-header .al-header-menu-icon .elementor-widget-container {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;
}
.al-header .al-header-search-icon .elementor-icon,
.al-header .al-header-menu-icon .elementor-icon {
    width: auto !important;
    height: auto !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    color: #10555A !important;
    transition: opacity 0.2s ease;
}
.al-header .al-header-search-icon .elementor-icon i,
.al-header .al-header-menu-icon .elementor-icon i {
    font-size: 22px !important;
    color: #10555A !important;
    transition: opacity 0.2s ease;
}
.al-header .al-header-search-icon .elementor-icon:hover i,
.al-header .al-header-menu-icon .elementor-icon:hover i { opacity: 0.7; }

/* Contact CTA — Elementor button widget styled as a small pill */
.al-header .al-header-cta-btn .elementor-widget-container {
    padding: 0 !important;
    margin: 0 !important;
}
.al-header .al-header-cta-btn .elementor-button {
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    padding: 0 6px 0 18px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background-color: #10555A !important;
    color: #F2F1ED !important;
    font-family: "Satoshi", sans-serif !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    letter-spacing: -0.5px !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    box-shadow: none !important;
    text-decoration: none !important;
    transition: background-color .25s ease, color .25s ease;
}
.al-header .al-header-cta-btn .elementor-button:hover {
    background-color: #0D4247 !important;
    color: #FFFFFF !important;
}
.al-header .al-header-cta-btn .elementor-button-content-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    gap: 12px !important;
    line-height: 1 !important;
}
.al-header .al-header-cta-btn .elementor-button-icon {
    width: 28px !important;
    height: 28px !important;
    border-radius: 50% !important;
    background: rgba(242, 241, 237, 0.18) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    flex-shrink: 0 !important;
    transition: background .25s ease;
}
.al-header .al-header-cta-btn .elementor-button-icon i,
.al-header .al-header-cta-btn .elementor-button-icon svg,
.al-header .al-header-cta-btn .elementor-button-icon svg * {
    font-size: 11px !important;
    width: 11px !important;
    height: 11px !important;
    color: #F2F1ED !important;
    fill: #F2F1ED !important;
    transition: color .25s ease, fill .25s ease;
}
.al-header .al-header-cta-btn .elementor-button:hover .elementor-button-icon {
    background: #F2F1ED !important;
}
.al-header .al-header-cta-btn .elementor-button:hover .elementor-button-icon i,
.al-header .al-header-cta-btn .elementor-button:hover .elementor-button-icon svg,
.al-header .al-header-cta-btn .elementor-button:hover .elementor-button-icon svg * {
    color: #10555A !important;
    fill: #10555A !important;
}

/* Mobile responsive */
@media (max-width: 1024px) {
    .al-header .al-header-nav { display: none !important; }
}
@media (max-width: 600px) {
    .al-header .al-header-cta { display: none !important; }
}

/* ==========================================================================
   "What We Do" mega menu
   ========================================================================== */

/* Invisible backdrop — kept for click-outside detection, no visual dim */
.al-mega-backdrop {
    position: fixed;
    inset: 0;
    background: transparent;
    visibility: hidden;
    pointer-events: none;
    z-index: 90;
}
.al-mega-backdrop.is-open {
    visibility: visible;
    pointer-events: auto;
}

/* Mega menu panel — flush with header bottom (no gap).
   clip-path crops the top of the box-shadow so it only shows on left,
   right and bottom (the seam with the header stays clean). */
.al-mega-menu {
    position: fixed;
    top: 77px;
    left: 240px;
    width: 960px;
    max-width: calc(100vw - 80px);
    background: #FFFFFF;
    border: 1px solid rgba(16, 85, 90, 0.06);
    border-top: 0;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    clip-path: inset(0 -60px -60px -60px);
    overflow: visible;
    z-index: 95;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
/* Tiny safety zone above the menu top edge (catches mouse rounding at the
   header seam). Positioned within the menu's box, before clip-path strips
   anything above 0. */
.al-mega-menu::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    background: transparent;
    pointer-events: auto;
}
/* Inner content needs to clip to the menu's rounded corners (since the
   parent's overflow is now visible to allow the bridge). */
.al-mega-menu > .al-mega-header,
.al-mega-menu > .al-mega-divider-h,
.al-mega-menu > .al-mega-body {
    position: relative;
    z-index: 1;
}
.al-mega-menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Header zone */
.al-mega-header {
    padding: 27px 39px 0;
}
.al-mega-title {
    font-family: "Satoshi", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    color: #10555A;
    margin: 0;
}
.al-mega-accent {
    width: 36px;
    height: 2px;
    background: #6F8C86;
    border-radius: 1px;
    margin-top: 8px;
}
.al-mega-subtitle {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.5;
    color: #1F2328;
    margin: 12px 0 0;
}
.al-mega-divider-h {
    height: 1px;
    background: rgba(16, 85, 90, 0.06);
    margin: 18px 39px 0;
}

/* Body — sidebar tabs + panels */
.al-mega-body {
    display: flex;
    align-items: stretch;
    padding: 18px 0 27px;
    min-height: 320px;
    position: relative;
}
.al-mega-tabs {
    flex: 0 0 222px;
    padding: 0 0 0 39px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.al-mega-tab {
    position: relative;
    -webkit-appearance: none !important;
    appearance: none !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    width: 200px;
    height: 40px;
    padding: 0 16px !important;
    margin: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    border: 0 !important;
    border-radius: 8px !important;
    outline: 0 !important;
    box-shadow: none !important;
    cursor: pointer;
    font-family: "Satoshi", sans-serif !important;
    font-weight: 400 !important;
    font-size: 17px !important;
    line-height: 1 !important;
    color: #1F2328 !important;
    opacity: 0.6;
    text-align: left;
    text-decoration: none !important;
    transition: background 0.2s ease, opacity 0.2s ease, color 0.2s ease;
}
.al-mega-tab:focus,
.al-mega-tab:active {
    outline: 0 !important;
    box-shadow: none !important;
    color: #1F2328 !important;
}
.al-mega-tab .al-mega-tab-arrow {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    color: #6F8C86 !important;
    opacity: 0.5;
    margin-left: 8px;
    transition: color 0.2s ease, opacity 0.2s ease;
}
.al-mega-tab:hover {
    opacity: 1;
    color: #1F2328 !important;
    background: transparent !important;
}
.al-mega-tab.is-active {
    background: rgba(16, 85, 90, 0.06) !important;
    border: 1px solid rgba(16, 85, 90, 0.1) !important;
    font-weight: 500 !important;
    color: #10555A !important;
    opacity: 1;
}
.al-mega-tab.is-active:hover {
    color: #10555A !important;
    background: rgba(16, 85, 90, 0.06) !important;
}
/* Active indicator — 3×24 Arbor Green bar at the left edge of the tab,
   per Figma (sits flush with the tab's left edge, not outside it) */
.al-mega-tab.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 3px;
    height: 24px;
    background: #10555A;
    border-radius: 0 2px 2px 0;
    z-index: 1;
}
.al-mega-tab.is-active .al-mega-tab-arrow {
    color: #10555A !important;
    opacity: 1;
}

/* Vertical divider between tabs and panels */
.al-mega-divider-v {
    width: 1px;
    background: rgba(16, 85, 90, 0.06);
    margin: 0 28px 0 0;
    flex-shrink: 0;
}

/* Panels — only one shown at a time */
.al-mega-panels {
    flex: 1 1 auto;
    padding-right: 39px;
    position: relative;
    min-height: 1px;
}
.al-mega-panel {
    display: none;
}
.al-mega-panel.is-active {
    display: block;
}

/* Items grid — 2 cols, items flex row */
.al-mega-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px 32px;
}
.al-mega-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 6px 8px;
    border-radius: 8px;
    text-decoration: none !important;
    color: inherit;
    transition: background 0.2s ease;
}
.al-mega-item:hover {
    background: rgba(16, 85, 90, 0.04);
}
.al-mega-icon-bg {
    flex: 0 0 34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(16, 85, 90, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #10555A;
    transition: background 0.2s ease;
}
.al-mega-icon-bg i,
.al-mega-icon-bg svg {
    font-size: 13px !important;
    width: 13px;
    height: 13px;
    color: #10555A !important;
    fill: currentColor;
}
.al-mega-item:hover .al-mega-icon-bg {
    background: rgba(16, 85, 90, 0.14);
}
.al-mega-item-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}
.al-mega-item-title {
    font-family: "Satoshi", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    color: #1F2328;
    transition: color 0.2s ease;
}
.al-mega-item:hover .al-mega-item-title {
    color: #10555A;
}
.al-mega-item-desc {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.45;
    color: #6F8C86;
}

/* Hide on mobile / tablet — full-screen menu handles those viewports */
@media (max-width: 1024px) {
    .al-mega-menu, .al-mega-backdrop { display: none !important; }
}

/* Body class hook (no scroll-lock — that caused the page to shift right by
   the scrollbar width on open). Backdrop is position:fixed so scrolling
   behind it doesn't disrupt anything visually. */
body.al-mega-open {}

/* ==========================================================================
   Site Footer (rebuild)
   §A CTA Section + §B Footer Section
   ========================================================================== */

/* §A — CTA Section */
.al-footer-cta {
    background-color: #10555A !important; /* Arbor Green base — user uploads bg image later */
    position: relative;
}

.al-footer-cta-accent {
    width: 60px;
    height: 3px;
    background: rgba(242, 241, 237, 0.4);
    margin: 0 auto;
}

.al-footer-cta-title,
.al-footer-cta-title p {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 400 !important;
    font-size: 56px !important;
    line-height: 54px !important;
    letter-spacing: -0.7px !important;
    color: #F2F1ED !important;
    text-align: center !important;
    margin: 0 !important;
}
.al-footer-cta-title strong,
.al-footer-cta-title b {
    font-weight: 900 !important;
}
@media (max-width: 767px) {
    .al-footer-cta-title,
    .al-footer-cta-title p { font-size: 38px !important; line-height: 42px !important; }
}

.al-footer-cta-subtitle,
.al-footer-cta-subtitle p {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 20px !important;
    line-height: 28px !important;
    color: #FFFFFF !important;
    text-align: center !important;
    margin: 0 !important;
}
@media (max-width: 767px) {
    .al-footer-cta-subtitle,
    .al-footer-cta-subtitle p { font-size: 17px !important; line-height: 26px !important; }
}

/* CTA Button — solid cream pill */
.al-footer-cta-btn-light .elementor-button {
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 10px 0 28px !important;
    border-radius: 28px !important;
    background: #F2F1ED !important;
    color: #10555A !important;
    border: 0 !important;
    box-shadow: none !important;
    font-family: "Satoshi", sans-serif !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 16px !important;
    text-decoration: none !important;
    transition: background .25s ease, color .25s ease;
}
.al-footer-cta-btn-light .elementor-button:hover {
    background: #FFFFFF !important;
}
.al-footer-cta-btn-light .elementor-button-content-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    gap: 16px !important;
}
.al-footer-cta-btn-light .elementor-button-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(16, 85, 90, 0.12) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background .25s ease;
}
.al-footer-cta-btn-light .elementor-button-icon i,
.al-footer-cta-btn-light .elementor-button-icon svg,
.al-footer-cta-btn-light .elementor-button-icon svg * {
    font-size: 14px !important;
    width: 14px !important;
    height: 14px !important;
    color: rgba(16, 85, 90, 0.7) !important;
    fill: rgba(16, 85, 90, 0.7) !important;
}
.al-footer-cta-btn-light .elementor-button:hover .elementor-button-icon {
    background: #10555A !important;
}
.al-footer-cta-btn-light .elementor-button:hover .elementor-button-icon i,
.al-footer-cta-btn-light .elementor-button:hover .elementor-button-icon svg,
.al-footer-cta-btn-light .elementor-button:hover .elementor-button-icon svg * {
    color: #F2F1ED !important;
    fill: #F2F1ED !important;
}

/* CTA Button — transparent outline pill */
.al-footer-cta-btn-outline .elementor-button {
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 10px 0 28px !important;
    border-radius: 28px !important;
    background: transparent !important;
    color: #FFFFFF !important;
    border: 1.5px solid rgba(255, 255, 255, 0.3) !important;
    box-shadow: none !important;
    font-family: "Satoshi", sans-serif !important;
    font-weight: 500 !important;
    font-size: 15px !important;
    line-height: 1 !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 16px !important;
    text-decoration: none !important;
    transition: background .25s ease, border-color .25s ease;
}
.al-footer-cta-btn-outline .elementor-button:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}
.al-footer-cta-btn-outline .elementor-button-content-wrapper {
    display: inline-flex !important;
    align-items: center !important;
    gap: 16px !important;
}
.al-footer-cta-btn-outline .elementor-button-icon {
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.12) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    transition: background .25s ease;
}
.al-footer-cta-btn-outline .elementor-button-icon i,
.al-footer-cta-btn-outline .elementor-button-icon svg,
.al-footer-cta-btn-outline .elementor-button-icon svg * {
    font-size: 14px !important;
    width: 14px !important;
    height: 14px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    fill: rgba(255, 255, 255, 0.6) !important;
}
.al-footer-cta-btn-outline .elementor-button:hover .elementor-button-icon {
    background: rgba(255, 255, 255, 0.25) !important;
}
.al-footer-cta-btn-outline .elementor-button:hover .elementor-button-icon i,
.al-footer-cta-btn-outline .elementor-button:hover .elementor-button-icon svg,
.al-footer-cta-btn-outline .elementor-button:hover .elementor-button-icon svg * {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
}

/* §B — Footer Section */
.al-footer {
    background: #394A53;
}

/* Column heading "Arbor Law", "What We Do", etc. */
.al-footer-col-heading .elementor-heading-title {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    line-height: 28px !important;
    color: #6F8C86 !important;
    margin: 0 !important;
}

/* Column link list (icon-list widget styled) */
.al-footer-list .elementor-icon-list-items {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    margin: 0 !important;
    padding: 0 !important;
}
.al-footer-list .elementor-icon-list-item {
    margin: 0 !important;
    padding: 0 !important;
}
.al-footer-list .elementor-icon-list-icon { display: none !important; }
.al-footer-list .elementor-icon-list-text,
.al-footer-list .elementor-icon-list-text a {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    color: #A0A0A0 !important;
    text-decoration: none !important;
    transition: color 0.2s ease;
}
.al-footer-list .elementor-icon-list-item:hover .elementor-icon-list-text,
.al-footer-list .elementor-icon-list-item:hover a { color: #FFFFFF !important; }

/* Column 4 "Follow Us" body text */
.al-footer-follow-text,
.al-footer-follow-text p {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 22.75px !important;
    color: #A0A0A0 !important;
    margin: 0 !important;
}

/* LinkedIn icon */
.al-footer-social-icon .elementor-icon {
    color: #A0A0A0 !important;
    transition: color 0.2s ease;
}
.al-footer-social-icon .elementor-icon i {
    font-size: 27px !important;
    color: #A0A0A0 !important;
}
.al-footer-social-icon:hover .elementor-icon i { color: #FFFFFF !important; }

/* SRA logo */
.al-footer-sra,
.al-footer-sra .elementor-widget-container,
.al-footer-sra .elementor-image {
    text-align: left !important;
}
.al-footer-sra img {
    width: 159px !important;
    max-width: 100% !important;
    height: auto !important;
    object-fit: contain !important;
}

/* Footer column widths — override Elementor's .e-con-full width:100% by setting explicit
   flex-basis (length, not auto). flex-basis with a length overrides width per the spec. */
.al-footer .al-footer-col.al-footer-col {
    flex-shrink: 0 !important;
}
.al-footer .al-footer-col-contact.al-footer-col-contact {
    flex: 0 0 280px !important;
    max-width: 280px !important;
}
.al-footer .al-footer-col-narrow.al-footer-col-narrow {
    flex: 0 0 110px !important;
    max-width: 110px !important;
}
.al-footer .al-footer-col-follow.al-footer-col-follow {
    flex: 1 0 200px !important;
    min-width: 200px !important;
}
.al-footer .al-footer-col-sra.al-footer-col-sra {
    flex: 0 0 175px !important;
    max-width: 175px !important;
}
/* Quick Links column is mobile-only — hide on desktop & tablet */
.al-footer .al-footer-col-quicklinks.al-footer-col-quicklinks { display: none !important; }
.al-footer .al-footer-top-row { flex-wrap: nowrap !important; }

/* Contact column body text */
.al-footer-contact-text .elementor-widget-container,
.al-footer-contact-text {
    color: #A0A0A0 !important;
}
.al-footer-contact-text p {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 22px !important;
    color: #A0A0A0 !important;
    margin: 0 0 12px 0 !important;
}
.al-footer-contact-text p:last-child { margin-bottom: 0 !important; }
.al-footer-contact-text strong {
    color: #FFFFFF !important;
    font-weight: 700 !important;
}
.al-footer-contact-text a {
    color: #A0A0A0 !important;
    text-decoration: underline !important;
    text-underline-offset: 2px !important;
    transition: color 0.2s ease;
}
.al-footer-contact-text a:hover { color: #FFFFFF !important; }

/* Bottom bar */
.al-footer-bottom {
    border-top: 1px solid #6F8C86;
}

.al-footer-copyright .elementor-heading-title,
.al-footer-copyright {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 20px !important;
    color: #A0A0A0 !important;
    margin: 0 !important;
    white-space: nowrap;
}
.al-footer-bottom-row > .e-con-inner > .elementor-element.al-footer-copyright,
.al-footer-bottom-row .al-footer-copyright {
    flex: 0 0 auto !important;
}
.al-footer-bottom-link .elementor-heading-title,
.al-footer-bottom-link .elementor-heading-title a,
.al-footer-bottom-link {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 12px !important;
    line-height: 16px !important;
    color: #A0A0A0 !important;
    text-decoration: none !important;
    margin: 0 !important;
    transition: color 0.2s ease;
}
.al-footer-bottom-link:hover .elementor-heading-title,
.al-footer-bottom-link .elementor-heading-title a:hover { color: #FFFFFF !important; }

/* Tablet (≤1280px) — wrap top row, hide narrow cols + Follow description */
@media (max-width: 1280px) {
    .al-footer-cta { padding: 60px 40px !important; }
    .al-footer { padding: 60px 40px 32px !important; }

    /* CTA title scales down */
    .al-footer-cta-title,
    .al-footer-cta-title p {
        font-size: 40px !important;
        line-height: 44px !important;
    }

    /* Allow wrap on tablet */
    .al-footer .al-footer-top-row { flex-wrap: wrap !important; }

    /* Hide the three narrow link columns + Follow Us description on tablet & mobile */
    .al-footer .al-footer-col-narrow,
    .al-footer .al-footer-follow-text { display: none !important; }

    /* On tablet, only Contact + Follow share leftover space; SRA stays 175px */
    .al-footer .al-footer-col-contact.al-footer-col-contact,
    .al-footer .al-footer-col-follow.al-footer-col-follow {
        flex: 1 1 240px !important;
        max-width: none !important;
    }
}


/* Mobile (≤767px) — full stack */
@media (max-width: 767px) {
    .al-footer-cta { padding: 50px 24px !important; }
    .al-footer { padding: 50px 24px 32px !important; }
    .al-footer-cta-title,
    .al-footer-cta-title p {
        font-size: 32px !important;
        line-height: 36px !important;
    }
    /* Top row outer keeps Elementor's e-con-boxed default (flex column),
       only the inner becomes a 2-col grid:
       Row 1: Contact Us | Quick Links
       Row 2: Follow Us  | SRA badge */
    .al-footer .al-footer-top-row {
        --content-width: 100% !important;
    }
    .al-footer .al-footer-top-row > .e-con-inner {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-areas:
            "contact links"
            "follow sra" !important;
        column-gap: 24px !important;
        row-gap: 32px !important;
        align-items: start !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .al-footer .al-footer-col-contact.al-footer-col-contact {
        grid-area: contact !important;
        flex: initial !important;
        max-width: none !important;
    }
    .al-footer .al-footer-col-quicklinks.al-footer-col-quicklinks {
        display: flex !important;
        grid-area: links !important;
        flex: initial !important;
        max-width: none !important;
    }
    .al-footer .al-footer-col-follow.al-footer-col-follow {
        grid-area: follow !important;
        flex: initial !important;
        max-width: none !important;
        min-width: 0 !important;
    }
    .al-footer .al-footer-col-sra.al-footer-col-sra {
        grid-area: sra !important;
        flex: initial !important;
        max-width: none !important;
        justify-self: start !important;
    }
    /* Mobile SRA badge — match Figma 143×84 */
    .al-footer-sra img { width: 143px !important; }
    /* Bottom-bar legal links — pipe-separated inline */
    .al-footer-bottom-links {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        column-gap: 0 !important;
        row-gap: 6px !important;
        justify-content: flex-start !important;
        align-items: baseline !important;
    }
    .al-footer-bottom-links .al-footer-bottom-link {
        display: inline-flex !important;
        align-items: baseline !important;
    }
    .al-footer-bottom-link .elementor-widget-container { display: inline !important; }
    .al-footer-bottom-links .al-footer-bottom-link:not(:last-child)::after {
        content: "|";
        color: #6F8C86;
        margin: 0 5px;
        opacity: 0.7;
        font-size: 11px;
        line-height: 1;
        align-self: center;
    }
    /* Slightly smaller font on mobile so 3 links fit per line */
    .al-footer-bottom-link .elementor-heading-title,
    .al-footer-bottom-link .elementor-heading-title a,
    .al-footer-bottom-link {
        font-size: 11px !important;
        line-height: 16px !important;
    }
    .al-footer-bottom-row {
        flex-direction: column-reverse !important;
        align-items: flex-start !important;
        gap: 16px !important;
    }
}

/* Tablet — keep side by side, narrow form */
@media (max-width: 1024px) {
    .al-contact-form .elementor-form { padding: 24px; }
}

/* Mobile — stack text above form */
@media (max-width: 767px) {
    .al-contact-section { background-position: center top; }
    .al-contact-title h2,
    .al-contact-title .elementor-heading-title {
        font-size: 32px !important;
        line-height: 40px !important;
    }
    .al-contact-form .elementor-form { padding: 20px; }
}

/* ==========================================================================
   Legal / Regulatory Docs — Hero
   ========================================================================== */

/* Breadcrumb (shortcode-rendered) — shared across legal + careers pages */
.al-legal-breadcrumb,
.al-careers-breadcrumb {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.4);
    white-space: pre-wrap;
}

/* Eyebrow pill — project default style on dark bg.
   Shared across legal + careers + any future dark-bg hero.
   Class lives on the heading widget wrapper; pill chrome goes on the
   inner heading-title so it hugs its text. */
.al-legal-eyebrow,
.al-careers-eyebrow {
    align-self: flex-start !important;
    width: auto !important;
}
.al-legal-eyebrow,
.al-legal-eyebrow .elementor-heading-title,
.al-careers-eyebrow,
.al-careers-eyebrow .elementor-heading-title {
    margin: 0 !important;
}
.al-legal-eyebrow .elementor-widget-container,
.al-careers-eyebrow .elementor-widget-container {
    display: inline-block;
    padding: 0 !important;
    margin: 0 !important;
}
.al-legal-eyebrow .elementor-heading-title,
.al-careers-eyebrow .elementor-heading-title {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: "Satoshi", sans-serif !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    color: #F2F1ED !important;
    line-height: 1 !important;
}

/* Title — Satoshi Bold 55/58, -1px tracking, white */
.al-legal-title h1,
.al-legal-title .elementor-heading-title {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 700 !important;
    font-size: 55px !important;
    line-height: 58px !important;
    letter-spacing: -1px !important;
    color: #FFFFFF !important;
    margin: 0 !important;
}
@media (max-width: 1024px) {
    .al-legal-title h1,
    .al-legal-title .elementor-heading-title {
        font-size: 44px !important;
        line-height: 1.1 !important;
    }
}
@media (max-width: 767px) {
    .al-legal-title h1,
    .al-legal-title .elementor-heading-title {
        font-size: 34px !important;
        line-height: 1.15 !important;
    }
}

/* Last updated text */
.al-legal-updated {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: rgba(255, 255, 255, 0.5);
}

/* ==========================================================================
   Careers (Join Us) — Hero
   ========================================================================== */

/* Title — mixed weight Satoshi 55/60 (Light "Build Your", Bold "Career With Us") */
.al-careers-title,
.al-careers-title p {
    font-family: "Satoshi", sans-serif !important;
    font-size: 55px !important;
    line-height: 60px !important;
    color: #FFFFFF !important;
    margin: 0 !important;
    font-weight: 300 !important;
}
.al-careers-title strong,
.al-careers-title b {
    font-weight: 700 !important;
}
@media (max-width: 1024px) {
    .al-careers-title,
    .al-careers-title p { font-size: 44px !important; line-height: 1.1 !important; }
}
@media (max-width: 767px) {
    .al-careers-title,
    .al-careers-title p { font-size: 34px !important; line-height: 1.15 !important; }
}

/* Subtitle */
.al-careers-subtitle,
.al-careers-subtitle p {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 17px !important;
    line-height: 26px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
}
@media (max-width: 767px) {
    .al-careers-subtitle,
    .al-careers-subtitle p { font-size: 16px !important; line-height: 24px !important; }
}

/* ---------- §2 Introduction ---------- */

.al-careers-intro {
    background: #F2F1ED;
}
.al-careers-intro-heading h2,
.al-careers-intro-heading .elementor-heading-title {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 700 !important;
    font-size: 42px !important;
    line-height: 48px !important;
    color: #1F2328 !important;
    margin: 0 !important;
}
@media (max-width: 1024px) {
    .al-careers-intro-heading h2,
    .al-careers-intro-heading .elementor-heading-title {
        font-size: 36px !important;
        line-height: 44px !important;
    }
}
@media (max-width: 767px) {
    .al-careers-intro-heading h2,
    .al-careers-intro-heading .elementor-heading-title {
        font-size: 32px !important;
        line-height: 38px !important;
    }
}

.al-careers-intro-body,
.al-careers-intro-body p {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 17px !important;
    line-height: 28px !important;
    color: #1F2328 !important;
    margin: 0 !important;
}
.al-careers-intro-body p + p { margin-top: 1em !important; }

.al-careers-intro-link .elementor-heading-title,
.al-careers-intro-link {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 500 !important;
    font-size: 17px !important;
    line-height: 1.4 !important;
    color: #10555A !important;
    margin: 0 !important;
}
.al-careers-intro-link a {
    color: inherit !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.al-careers-intro-link a:hover { opacity: 0.7; }

/* ---------- §4 Earnings ---------- */

.al-careers-earnings {
    background: #1F2328;
}

/* Image card */
.al-careers-earnings-image .elementor-widget-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.al-careers-earnings-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    aspect-ratio: 620 / 440;
    display: block;
}

/* Eyebrow pill — shared dark-bg style (multi-class selector) */
.al-careers-earnings-eyebrow {
    align-self: flex-start !important;
    width: auto !important;
}
.al-careers-earnings-eyebrow,
.al-careers-earnings-eyebrow .elementor-heading-title {
    margin: 0 !important;
}
.al-careers-earnings-eyebrow .elementor-widget-container {
    display: inline-block;
    padding: 0 !important;
    margin: 0 !important;
}
.al-careers-earnings-eyebrow .elementor-heading-title {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.15);
    font-family: "Satoshi", sans-serif !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    color: #F2F1ED !important;
    line-height: 1 !important;
}

/* Title — Satoshi 38/44 white, Light default, Bold via <strong> */
.al-careers-earnings-title,
.al-careers-earnings-title p {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 300 !important;
    font-size: 38px !important;
    line-height: 44px !important;
    color: #FFFFFF !important;
    margin: 0 !important;
}
.al-careers-earnings-title strong,
.al-careers-earnings-title b {
    font-weight: 700 !important;
}
@media (max-width: 1024px) {
    .al-careers-earnings-title,
    .al-careers-earnings-title p { font-size: 32px !important; line-height: 40px !important; }
}
@media (max-width: 767px) {
    .al-careers-earnings-title,
    .al-careers-earnings-title p { font-size: 28px !important; line-height: 36px !important; }
}

/* Body */
.al-careers-earnings-body,
.al-careers-earnings-body p {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 17px !important;
    line-height: 28px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 0 !important;
}

/* Brochure link */
.al-careers-earnings-link .elementor-heading-title,
.al-careers-earnings-link {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 500 !important;
    font-size: 17px !important;
    line-height: 1.4 !important;
    color: #F2F1ED !important;
    margin: 0 !important;
}
.al-careers-earnings-link a {
    color: inherit !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.al-careers-earnings-link a:hover { opacity: 0.7; }

/* ---------- §5 Move Your Team ---------- */

.al-careers-team {
    background: #F2F1ED;
}

/* Eyebrow — light bg variant: Arbor Green text on Arbor Green @8% bg, no border */
.al-careers-team-eyebrow {
    align-self: flex-start !important;
    width: auto !important;
}
.al-careers-team-eyebrow,
.al-careers-team-eyebrow .elementor-heading-title {
    margin: 0 !important;
}
.al-careers-team-eyebrow .elementor-widget-container {
    display: inline-block;
    padding: 0 !important;
    margin: 0 !important;
}
.al-careers-team-eyebrow .elementor-heading-title {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 13px;
    background: rgba(16, 85, 90, 0.08);
    font-family: "Satoshi", sans-serif !important;
    font-weight: 500 !important;
    font-size: 13px !important;
    letter-spacing: 0.5px !important;
    text-transform: uppercase !important;
    color: #10555A !important;
    line-height: 1 !important;
}

/* Title — Satoshi 38/46 charcoal, Light default, Bold via <strong>, natural wrap */
.al-careers-team-title,
.al-careers-team-title p {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 300 !important;
    font-size: 38px !important;
    line-height: 46px !important;
    color: #1F2328 !important;
    margin: 0 !important;
}
.al-careers-team-title strong,
.al-careers-team-title b {
    font-weight: 700 !important;
}
@media (max-width: 1024px) {
    .al-careers-team-title,
    .al-careers-team-title p { font-size: 32px !important; line-height: 40px !important; }
}
@media (max-width: 767px) {
    .al-careers-team-title,
    .al-careers-team-title p { font-size: 28px !important; line-height: 36px !important; }
}

/* Body */
.al-careers-team-body,
.al-careers-team-body p {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 17px !important;
    line-height: 28px !important;
    color: #1F2328 !important;
    margin: 0 !important;
}

/* Conversation link */
.al-careers-team-link .elementor-heading-title,
.al-careers-team-link {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 500 !important;
    font-size: 17px !important;
    line-height: 1.4 !important;
    color: #10555A !important;
    margin: 0 !important;
}
.al-careers-team-link a {
    color: inherit !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.al-careers-team-link a:hover { opacity: 0.7; }

/* Image card */
.al-careers-team-image .elementor-widget-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
.al-careers-team-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    aspect-ratio: 620 / 440;
    display: block;
}

/* Mobile: image above text via flex order */
@media (max-width: 767px) {
    .al-careers-team-image-col { order: 1 !important; }
    .al-careers-team-text-col  { order: 2 !important; }
}

/* ==========================================================================
   Legal / Regulatory Docs — Content Section
   2-col layout: sticky sidebar (TOC + Related Policies) + main content
   ========================================================================== */

.al-legal-content-section {
    background: #FFFFFF;
}

/* SIDEBAR — fixed 280, hidden on mobile, sticky on desktop.
   Sticky needs no overflow:hidden ancestors and a flex-start aligned parent
   to allow it to scroll independently of the main column.
   The Elementor wrapper for Single Page templates often imposes
   overflow:clip/hidden, so we explicitly clear it on the section + inner. */
.al-legal-content-section,
.al-legal-content-section > .e-con-inner {
    overflow: visible !important;
}
.al-legal-sidebar {
    flex: 0 0 280px !important;
    width: 280px !important;
    max-width: 280px !important;
    position: sticky !important;
    top: 100px !important;
    align-self: flex-start !important;
    z-index: 2;
}
@media (max-width: 767px) {
    .al-legal-sidebar { display: none !important; position: static !important; }
}

/* TOC card — equal 28px padding on all sides; first text aligns with main H2 */
.al-legal-toc-card {
    position: relative;
    background: #F2F1ED;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 28px;
    overflow: hidden;
}
.al-legal-toc-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 3px;
    background: rgba(16, 85, 90, 0.6);
    border-radius: 2px;
}
.al-legal-toc-title {
    font-family: "Satoshi", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.3px;
    color: #1F2328;
    margin: 0 0 14px;
}
.al-legal-toc-divider {
    height: 1px;
    width: 100%;
    background: rgba(31, 35, 40, 0.1);
    margin: 0;
}
.al-legal-toc-list {
    list-style: none;
    padding: 14px 0 0;
    margin: 0;
}
.al-legal-toc-list li {
    margin: 0;
    padding: 0;
    line-height: 36px;
}
.al-legal-toc-list a {
    display: block;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: rgba(31, 35, 40, 0.6);
    text-decoration: none;
    transition: color 0.2s ease;
}
.al-legal-toc-list a:hover { color: #10555A; }
.al-legal-toc-list li.is-active a {
    font-weight: 700;
    color: #10555A;
}

/* Related Policies card */
.al-legal-related-card {
    background: #F2F1ED;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 28px;
    margin-top: 24px;
}
.al-legal-related-title {
    font-family: "Satoshi", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 1.2;
    color: #1F2328;
    margin: 0 0 12px;
}
.al-legal-related-divider {
    height: 1px;
    width: 100%;
    background: rgba(31, 35, 40, 0.1);
    margin: 0 0 8px;
}
.al-legal-related-link .elementor-heading-title,
.al-legal-related-link {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 13px !important;
    line-height: 32px !important;
    color: #10555A !important;
    margin: 0 !important;
}
.al-legal-related-link a {
    color: inherit !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
}
.al-legal-related-link a:hover { opacity: 0.7; }

/* MAIN CONTENT — top padding matches TOC card's internal padding so the
   first H2 text lines up vertically with the "Table of Contents" heading
   inside the sidebar card. */
.al-legal-main {
    flex: 1 1 auto !important;
    min-width: 0;
    padding-top: 28px;
}
@media (max-width: 767px) {
    .al-legal-main { padding-top: 0; }
}

/* Section heading H2 */
.al-legal-section-heading h2,
.al-legal-section-heading .elementor-heading-title {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 700 !important;
    font-size: 32px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.5px !important;
    color: #1F2328 !important;
    margin: 0 !important;
    scroll-margin-top: 100px;
}

/* Sub-heading H3 */
.al-legal-sub-heading .elementor-heading-title {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 500 !important;
    font-size: 20px !important;
    line-height: 1.3 !important;
    color: rgba(31, 35, 40, 0.85) !important;
    margin: 0 !important;
}

/* Body paragraph */
.al-legal-body p,
.al-legal-body {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 16px !important;
    line-height: 28px !important;
    color: rgba(31, 35, 40, 0.7) !important;
    margin: 0 !important;
}
.al-legal-body p + p { margin-top: 12px !important; }

/* Section divider */
.al-legal-section-divider .elementor-divider-separator {
    border-top-color: rgba(31, 35, 40, 0.08) !important;
    border-top-width: 1px !important;
}

/* Bullet list (icon-list widget) */
.al-legal-bullets .elementor-icon-list-items {
    margin: 0 !important;
    padding: 0 !important;
}
.al-legal-bullets .elementor-icon-list-item {
    padding: 5px 0 !important;
    margin: 0 !important;
}
.al-legal-bullets .elementor-icon-list-icon {
    align-self: flex-start !important;
    width: 18px;
    display: inline-flex !important;
    align-items: center;
    height: 24px;
}
.al-legal-bullets .elementor-icon-list-icon i {
    font-size: 6px !important;
    color: rgba(31, 35, 40, 0.65) !important;
}
.al-legal-bullets .elementor-icon-list-text {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 15px !important;
    line-height: 24px !important;
    color: rgba(31, 35, 40, 0.65) !important;
}

/* Callout box (info) */
.al-legal-callout {
    position: relative;
    background: rgba(16, 85, 90, 0.06);
    border-radius: 6px;
    padding: 20px 24px 20px 40px;
    overflow: hidden;
}
.al-legal-callout::before {
    content: "";
    position: absolute;
    top: 0; left: 0; bottom: 0;
    width: 4px;
    background: rgba(16, 85, 90, 0.8);
    border-radius: 6px 0 0 6px;
}
.al-legal-callout::after {
    content: "i";
    position: absolute;
    top: 21px;
    left: 16px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(16, 85, 90, 0.12);
    color: #10555A;
    font-family: "Satoshi", sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 22px;
    text-align: center;
    font-style: italic;
}
.al-legal-callout-text,
.al-legal-callout-text p {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    line-height: 22px !important;
    color: rgba(31, 35, 40, 0.65) !important;
    margin: 0 !important;
    padding-left: 24px;
}

/* Purpose grid (4 cards 2×2) */
.al-legal-purpose-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 600px) {
    .al-legal-purpose-grid { grid-template-columns: 1fr; gap: 16px; }
}
.al-legal-purpose-card {
    position: relative;
    background: #F2F1ED;
    border: 1px solid rgba(31, 35, 40, 0.06);
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    padding: 24px;
    padding-top: 27px;
}
.al-legal-purpose-card::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 24px;
    width: 30px;
    height: 3px;
    background: rgba(16, 85, 90, 0.5);
}
.al-legal-purpose-card-title {
    font-family: "Satoshi", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    color: #1F2328;
    margin: 16px 0 12px;
}
.al-legal-purpose-card-text {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: rgba(31, 35, 40, 0.6);
    margin: 0;
}

/* Contact card (Section 9) */
.al-legal-contact-card-text {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 24px;
    color: rgba(31, 35, 40, 0.7);
    margin: 0 0 12px;
}
.al-legal-contact-card-link {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.4;
    color: #10555A !important;
    text-decoration: none !important;
    transition: opacity 0.2s ease;
}
.al-legal-contact-card-link:hover { opacity: 0.7; }

/* Mobile: full-width main col, no sidebar */
@media (max-width: 767px) {
    .al-legal-main { flex-basis: auto !important; }
    .al-legal-section-heading h2,
    .al-legal-section-heading .elementor-heading-title { font-size: 26px !important; }
    .al-legal-purpose-card { padding: 20px; padding-top: 23px; }
    .al-legal-purpose-card::before { top: 20px; left: 20px; }
}


/* ==========================================================================
   People Archive — Hero clones the Careers hero (.al-careers-hero) so styling
   is inherited. Only the search bar is custom (replaces the careers CTA button).
   ========================================================================== */

.al-people-search {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 0 24px;
    height: 52px;
    width: 213px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    border-radius: 26px;
    transition: background .2s ease, border-color .2s ease, width .25s ease;
}
.al-people-search:focus-within {
    background: rgba(255,255,255,0.14);
    border-color: rgba(255,255,255,0.25);
    width: 320px;
}
.al-people-search-icon {
    font-size: 20px;
    line-height: 1;
    color: rgba(255,255,255,0.5);
    flex-shrink: 0;
}
.al-people-search-input {
    flex: 1 1 auto;
    background: transparent;
    border: none;
    outline: none;
    font-family: "Lato", sans-serif;
    font-size: 15px;
    color: #FFFFFF;
    min-width: 0;
}
.al-people-search-input::placeholder {
    color: rgba(255,255,255,0.3);
}

@media (max-width: 767px) {
    .al-people-search { width: 100%; }
    .al-people-search:focus-within { width: 100%; }
}

/* ==========================================================================
   People Archive — Filters bar
   3 native <select>s styled to match Figma cream pill
   ========================================================================== */

.al-team-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    width: 100%;
}

.al-team-filter {
    display: flex;
    flex-direction: column;
    gap: 22px; /* matches Figma 144 → 166 = 22px between label baseline and select top */
}

.al-team-filter__label {
    font-family: "Satoshi", sans-serif;
    font-weight: 500;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.88px;
    color: rgba(31, 35, 40, 0.4);
    text-transform: uppercase;
    margin: 0;
}

.al-team-filter__select-wrap {
    position: relative;
    display: flex;
    align-items: stretch;
}

.al-team-filter__select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 52px;
    padding: 0 48px 0 20px; /* right padding leaves room for caret */
    background: #F2F1ED;
    border: 1px solid rgba(16, 85, 90, 0.08);
    border-radius: 4px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #1F2328;
    cursor: pointer;
    box-shadow: none;
    outline: none;
    transition: border-color .2s ease, background .2s ease;
}
.al-team-filter__select:hover { border-color: rgba(16, 85, 90, 0.25); }
.al-team-filter__select:focus { border-color: #10555A; }

.al-team-filter__caret {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Lato", sans-serif;
    font-size: 24px;
    line-height: 1;
    color: rgba(16, 85, 90, 0.6);
    pointer-events: none;
}

.al-team-filters__submit {
    grid-column: 1 / -1;
    margin-top: 16px;
    padding: 12px 24px;
    background: #10555A;
    color: #F2F1ED;
    border: none;
    border-radius: 999px;
    font-family: "Satoshi", sans-serif;
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
}

/* Tablet — 2 cols */
@media (max-width: 1024px) {
    .al-team-filters { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

/* Mobile — 1 col */
@media (max-width: 767px) {
    .al-team-filters { grid-template-columns: 1fr; gap: 20px; }
    .al-team-filter { gap: 12px; }
}

/* ==========================================================================
   People Archive — Grid + Card + Pagination
   ========================================================================== */

.al-team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

@media (max-width: 1024px) {
    .al-team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 767px) {
    .al-team-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* Card */
.al-team-card {
    position: relative;
    isolation: isolate;
    background: #FFFFFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(31, 35, 40, 0.06);
    transition: transform .25s ease, box-shadow .25s ease;
    display: flex;
    flex-direction: column;
}
.al-team-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(31, 35, 40, 0.10);
}

/* Whole-card click target */
.al-team-card__overlay-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    text-indent: -9999px;
    overflow: hidden;
}

/* Headshot
 * Source profile images are 840×920 (~21:23 portrait). Default to the exact
 * source ratio so they render uncropped on desktop + tablet. On mobile the
 * cards go full-width so we shorten the ratio (4:5) to keep total card
 * height reasonable. `background-position: top center` is a defensive
 * fallback for any future image that isn't exactly 840×920 — it keeps the
 * head in frame if the browser has to crop. */
.al-team-card__image {
    position: relative;
    aspect-ratio: 21 / 23;
    background: #D9D9D9;
    background-size: cover;
    background-position: top center;
}
.al-team-card__image--placeholder {
    background-color: #D9D9D9;
}
@media (max-width: 767px) {
    .al-team-card__image { aspect-ratio: 4 / 5; }
}

.al-team-card__arrow-circle {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.92);
    color: #10555A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    z-index: 1;
    pointer-events: none;
    box-shadow: 0 1px 3px rgba(31, 35, 40, 0.06);
}

/* Body */
.al-team-card__body {
    padding: 18px 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1 1 auto;
}
.al-team-card__name {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    line-height: 1.2 !important;
    color: #1F2328;
    margin: 0;
}
.al-team-card__role {
    font-family: "Satoshi", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.3;
    color: #6F8C86;
    margin: 0;
    margin-top: 4px;
}
.al-team-card__practice {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 13px;
    line-height: 1.3;
    color: rgba(31, 35, 40, 0.6);
    margin: 0;
    margin-top: 4px;
}
.al-team-card__divider {
    border: 0;
    border-top: 1px solid rgba(16, 85, 90, 0.06);
    margin: 14px 0 0;
    width: 100%;
}
.al-team-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 12px;
}
.al-team-card__icons {
    display: inline-flex;
    gap: 10px;
    position: relative;
    z-index: 2;
}
.al-team-card__icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(16, 85, 90, 0.06);
    color: #10555A;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    text-decoration: none;
    transition: background .2s ease, color .2s ease;
}
.al-team-card__icon:hover {
    background: #10555A;
    color: #FFFFFF;
}
.al-team-card__view-profile {
    font-family: "Satoshi", sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: #10555A;
    text-decoration: none;
    position: relative;
    z-index: 2;
    white-space: nowrap;
}
.al-team-card__view-profile:hover { text-decoration: underline; }

/* Empty state */
.al-team-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 0;
    color: rgba(31, 35, 40, 0.5);
    font-family: "Lato", sans-serif;
    font-size: 16px;
}

/* Load More — wrapper centres the button; visual styling comes from the
 * .al-btn .al-btn--on-light rules in arbor-buttons.css. Only the layout
 * + loading state belong here. */
.al-team-loadmore-wrap {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}
.al-team-loadmore[disabled] { cursor: wait; opacity: 0.75; }
.al-team-loadmore.is-error  { outline: 2px solid #C0392B; outline-offset: 2px; }

/* While loading: swap the arrow icon for a spinner. (The label text is swapped to "Loading…" by team-loadmore.js.) */
.al-team-loadmore.is-loading .al-team-loadmore__icon i { display: none; }
.al-team-loadmore.is-loading .al-team-loadmore__icon::after {
    content: "";
    width: 14px;
    height: 14px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: al-team-loadmore-spin .8s linear infinite;
}
@keyframes al-team-loadmore-spin { to { transform: rotate(360deg); } }

/* Team Member archive — let Elementor sections span full viewport width
   (al theme's <main class="site-main"> wraps the template with max-width + padding) */
body.post-type-archive-team_member .site-main {
    max-width: none !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

/* ==========================================================================
   Start-up Legal Advice page (and reusable section helpers)
   ========================================================================== */

/* Reusable section header pieces */
.al-eyebrow .elementor-heading-title,
.al-eyebrow {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 500 !important;
    font-size: 11px !important;
    line-height: 1 !important;
    letter-spacing: 0.88px !important;
    color: rgba(31, 35, 40, 0.4) !important;
    text-transform: uppercase;
    margin-bottom: 12px !important;
}
.al-section-title .elementor-heading-title,
.al-section-title {
    font-family: var(--e-global-typography-35429c7-font-family, "Satoshi"), sans-serif !important;
    font-size: var(--e-global-typography-35429c7-font-size, 43px) !important;
    line-height: var(--e-global-typography-35429c7-line-height, 1.2em) !important;
    font-weight: 300 !important;
    color: #1F2328;
    margin: 0 !important;
}
.al-section-title b, .al-section-title strong { font-weight: 700; color: #10555A; }
.al-section-accent.elementor-widget-divider { margin: 14px 0 24px !important; }
.al-section-lead .elementor-widget-container,
.al-section-lead {
    font-family: var(--e-global-typography-text-font-family, "Lato"), sans-serif !important;
    font-size: var(--e-global-typography-text-font-size, 17px) !important;
    line-height: var(--e-global-typography-text-line-height, 1.6em) !important;
    color: rgba(31,35,40,0.75) !important;
    max-width: 720px;
}
.al-prose-body,
.al-prose-body p {
    font-family: "Lato", sans-serif !important;
    font-size: 17px !important;
    line-height: 1.6em !important;
    color: rgba(31,35,40,0.75) !important;
    max-width: 820px;
}
.al-prose-body p { margin: 0 0 18px; }
.al-prose-body p:last-child { margin-bottom: 0; }

/* What You Get — feature grid (2 cols desktop, 1 col mobile) */
.al-features-grid > .e-con-inner,
.al-features-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 48px;
}
@media (max-width: 767px) {
    .al-features-grid > .e-con-inner,
    .al-features-grid { grid-template-columns: 1fr; gap: 28px; }
}
.al-feature-cell {
    border-left: 2px solid rgba(16, 85, 90, 0.15);
    padding-left: 20px !important;
}
.al-feature-heading .elementor-heading-title,
.al-feature-heading {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 700 !important;
    font-size: 18px !important;
    line-height: 1.3 !important;
    color: #1F2328;
    margin: 0 0 8px !important;
}
.al-feature-body,
.al-feature-body p {
    font-family: "Lato", sans-serif !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    color: rgba(31,35,40,0.7) !important;
    margin: 0 !important;
}

/* Packages — 3 col grid of cards + special VGC card */
.al-packages-grid > .e-con-inner,
.al-packages-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 1024px) {
    .al-packages-grid > .e-con-inner,
    .al-packages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .al-packages-grid > .e-con-inner,
    .al-packages-grid { grid-template-columns: 1fr; }
}

/* 2-col variant — used by the VGC "How it works" section so that
   sub-section stays 2-up on desktop instead of inheriting the 3-up
   default. Tablet remains 2-up; mobile stacks 1-up. */
.al-packages-grid--2col > .e-con-inner,
.al-packages-grid--2col {
    grid-template-columns: repeat(2, 1fr) !important;
}
@media (max-width: 767px) {
    .al-packages-grid--2col > .e-con-inner,
    .al-packages-grid--2col { grid-template-columns: 1fr !important; }
}
.al-pkg-card-title .elementor-heading-title,
.al-pkg-card-title {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 700 !important;
    font-size: 20px !important;
    line-height: 1.25 !important;
    color: #1F2328 !important;
    margin: 0 !important;
}
.al-pkg-card-price .elementor-heading-title,
.al-pkg-card-price {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 700 !important;
    font-size: 32px !important;
    line-height: 1.1 !important;
    color: #10555A !important;
    margin: 4px 0 8px !important;
}
.al-pkg-card-price .al-pkg-vat {
    font-size: 13px;
    font-weight: 400;
    color: rgba(31,35,40,0.5);
    margin-left: 6px;
    letter-spacing: 0.4px;
}
.al-pkg-card-body,
.al-pkg-card-body p {
    font-family: "Lato", sans-serif !important;
    font-size: 14px !important;
    line-height: 1.55 !important;
    color: rgba(31,35,40,0.7) !important;
    margin: 0 !important;
}

/* Special VGC card — full-width Arbor Green */
.al-pkg-vgc-title .elementor-heading-title,
.al-pkg-vgc-title {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 700 !important;
    font-size: 24px !important;
    line-height: 1.2 !important;
    color: #F2F1ED !important;
    margin: 0 !important;
}
.al-pkg-vgc-body,
.al-pkg-vgc-body p {
    font-family: "Lato", sans-serif !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
    color: rgba(242,241,237,0.75) !important;
    margin: 0 !important;
    max-width: 720px;
}

/* Discovery + Talk sections — eyebrow + heading + body + CTA, centered or left */
.al-startup-discovery,
.al-startup-talk {
    text-align: left;
}

/* Make .al-eyebrow render as inline pill on darker bgs */
.al-startup-discovery .al-eyebrow .elementor-heading-title,
.al-startup-talk .al-eyebrow .elementor-heading-title {
    color: rgba(16,85,90,0.6) !important;
}

/* Hard guarantee: al-startup-why and other custom-class sections cap inner at 1140 */
.al-startup-why > .e-con-inner,
.al-startup-features > .e-con-inner,
.al-startup-packages > .e-con-inner,
.al-startup-discovery > .e-con-inner,
.al-startup-talk > .e-con-inner {
    max-width: 1140px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.al-startup-why .e-con-boxed > .e-con-inner,
.al-startup-features .e-con-boxed > .e-con-inner,
.al-startup-packages .e-con-boxed > .e-con-inner,
.al-startup-discovery .e-con-boxed > .e-con-inner,
.al-startup-talk .e-con-boxed > .e-con-inner {
    max-width: 1140px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* ==========================================================================
   Careers page — testimonial quote + USP cards + tagline
   ========================================================================== */

.al-careers-quote-wrap p,
.al-careers-quote {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 300 !important;
    font-size: 32px !important;
    line-height: 1.4 !important;
    color: #1F2328 !important;
    text-align: center;
    max-width: 880px;
    margin: 0 auto !important;
}
.al-careers-quote-attrib .elementor-heading-title,
.al-careers-quote-attrib {
    font-family: "Lato", sans-serif !important;
    font-weight: 400 !important;
    font-size: 14px !important;
    color: rgba(31,35,40,0.55) !important;
    text-align: center;
    margin: 18px auto 0 !important;
    letter-spacing: 0.4px;
}

/* USP Card grid — 2x2 desktop, 2-col tablet, 1-col mobile */
.al-usps-grid > .e-con-inner,
.al-usps-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 767px) {
    .al-usps-grid > .e-con-inner,
    .al-usps-grid { grid-template-columns: 1fr; }
}
.al-usp-card-title .elementor-heading-title,
.al-usp-card-title {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    line-height: 1.25 !important;
    color: #10555A !important;
    margin: 0 !important;
}
.al-usp-card-body,
.al-usp-card-body p {
    font-family: "Lato", sans-serif !important;
    font-size: 16px !important;
    line-height: 1.55 !important;
    color: rgba(31,35,40,0.75) !important;
    margin: 0 !important;
}

/* Closing tagline under Why Join Us paragraphs */
.al-careers-tagline,
.al-careers-tagline p {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    line-height: 1.35 !important;
    color: #10555A !important;
    margin: 12px 0 0 !important;
}

/* ==========================================================================
   Corporate service page — services grid + service cards
   ========================================================================== */

.al-corp-services-grid > .e-con-inner,
.al-corp-services-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
@media (max-width: 767px) {
    .al-corp-services-grid > .e-con-inner,
    .al-corp-services-grid { grid-template-columns: 1fr; }
}
.al-corp-service-title .elementor-heading-title,
.al-corp-service-title {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    line-height: 1.25 !important;
    color: #10555A !important;
    margin: 0 !important;
}
.al-corp-service-body,
.al-corp-service-body p {
    font-family: "Lato", sans-serif !important;
    font-size: 15px !important;
    line-height: 1.55 !important;
    color: rgba(31,35,40,0.75) !important;
    margin: 0 !important;
}

/* ==========================================================================
   People Archive — Join Our Team section (dark slate radial-gradient bg)
   ========================================================================== */

.al-people-join.al-people-join {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(ellipse 1000px 600px at 50% 40%, rgba(57,74,83,0.95) 0%, rgba(44,54,62,0.85) 35%, rgba(31,35,40,1) 75%),
        #1F2328 !important;
}

/* Center the CAREERS pillbox (override .al-pill default align-self: flex-start) */
.al-people-join .al-pill { align-self: center !important; }

/* Mixed-weight title — bind to kit Titles - Sections (id 35429c7) */
.al-join-title,
.al-join-title p {
    font-family: var(--e-global-typography-35429c7-font-family, "Satoshi"), sans-serif !important;
    font-size: var(--e-global-typography-35429c7-font-size, 43px) !important;
    line-height: var(--e-global-typography-35429c7-line-height, 1.2em) !important;
    font-weight: 300 !important;
    color: #FFFFFF !important;
    text-align: center !important;
    margin: 8px 0 0 !important;
}
.al-join-title .al-h-light { font-weight: 300; color: #FFFFFF; }
.al-join-title strong { font-weight: 700; color: #FFFFFF; }

/* Subtitle — kit Body */
.al-join-subtitle,
.al-join-subtitle p {
    font-family: var(--e-global-typography-text-font-family, "Lato"), sans-serif !important;
    font-size: var(--e-global-typography-text-font-size, 17px) !important;
    line-height: var(--e-global-typography-text-line-height, 1.6em) !important;
    color: rgba(255,255,255,0.5) !important;
    text-align: center;
    max-width: 720px;
    margin: 0 auto !important;
}

/* 3-card grid */
.al-join-cards-grid > .e-con-inner,
.al-join-cards-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    width: 100%;
}
@media (max-width: 1024px) {
    .al-join-cards-grid > .e-con-inner,
    .al-join-cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .al-join-cards-grid > .e-con-inner,
    .al-join-cards-grid { grid-template-columns: 1fr; }
}

/* Card title + body */
.al-join-card-accent.elementor-widget-divider { margin: 0 !important; }
.al-join-card-title .elementor-heading-title,
.al-join-card-title {
    font-family: "Satoshi", sans-serif !important;
    font-weight: 700 !important;
    font-size: 16px !important;
    line-height: 1.3 !important;
    color: #FFFFFF !important;
    margin: 0 !important;
}
.al-join-card-body,
.al-join-card-body p {
    font-family: "Lato", sans-serif !important;
    font-size: 13px !important;
    line-height: 20px !important;
    color: rgba(255,255,255,0.5) !important;
    margin: 0 !important;
}

/* Helper text under CTA */
.al-join-helper,
.al-join-helper p {
    font-family: "Lato", sans-serif !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
    color: rgba(255,255,255,0.4) !important;
    text-align: center;
    margin: 16px 0 0 !important;
}
.al-join-helper a {
    color: rgba(255,255,255,0.6) !important;
    text-decoration: underline !important;
}
.al-join-helper a:hover { color: #FFFFFF !important; }

/* Center the CTA button widget */
.al-join-cta { text-align: center !important; }
.al-join-cta .elementor-button-wrapper { display: flex !important; justify-content: center !important; }
