/* ==========================================================================
   HORIZON LOCAL - Design System CSS
   Association solidaire Paris 11e
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
    --hl-green: #0F766E;
    --hl-green-light: #14B8A6;
    --hl-green-dark: #0D5D58;
    --hl-green-bg: #F0FDFA;
    --hl-blue: #1D4ED8;
    --hl-blue-light: #3B82F6;
    --hl-cream: #F8FAFC;
    --hl-white: #FFFFFF;
    --hl-text: #111827;
    --hl-text-secondary: #4B5563;
    --hl-text-muted: #6B7280;
    --hl-border: #E5E7EB;
    --hl-border-light: #F3F4F6;
    --hl-shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --hl-shadow: 0 1px 3px rgba(0,0,0,0.1), 0 1px 2px rgba(0,0,0,0.06);
    --hl-shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --hl-shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --hl-radius: 8px;
    --hl-radius-lg: 16px;
    --hl-radius-full: 9999px;
    --hl-font-heading: 'Poppins', system-ui, sans-serif;
    --hl-font-body: 'Inter', system-ui, sans-serif;
    --hl-container: 1200px;
    --hl-container-narrow: 800px;
    --hl-gap: 2rem;
    --hl-transition: 0.2s ease;
}

/* --------------------------------------------------------------------------
   DEMO BAR
   -------------------------------------------------------------------------- */
.hl-demo-bar {
    background-color: #E97A1F;
    color: #fff;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    line-height: 1.4;
    position: relative;
    z-index: 10000;
}

.hl-demo-bar__text {
    margin: 0;
    font-family: var(--hl-font-body);
}

.hl-demo-bar__text strong {
    font-weight: 700;
}

.hl-demo-bar__icon {
    margin-right: 0.4rem;
    font-size: 1rem;
    vertical-align: middle;
}

@media (max-width: 640px) {
    .hl-demo-bar {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
}

html,
.hl-body {
    overflow-x: hidden;
    width: 100%;
}

/* Override Astra parent wrappers that may break layout */
#page,
.hfeed,
.site,
.ast-container {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
}

.hl-body {
    font-family: var(--hl-font-body);
    color: var(--hl-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--hl-font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--hl-text);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--hl-green);
    text-decoration: none;
    transition: color var(--hl-transition);
}
a:hover {
    color: var(--hl-green-dark);
}

/* Skip link */
.hl-skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    z-index: 9999;
    padding: 0.75rem 1.5rem;
    background: var(--hl-green);
    color: #fff;
    border-radius: var(--hl-radius);
    font-weight: 600;
}
.hl-skip-link:focus {
    top: 1rem;
    outline: 3px solid var(--hl-blue);
    outline-offset: 2px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}

/* --------------------------------------------------------------------------
   3. LAYOUT
   -------------------------------------------------------------------------- */
.hl-container {
    max-width: var(--hl-container);
    margin: 0 auto;
    padding: 0 1.5rem;
}
.hl-container--narrow {
    max-width: var(--hl-container-narrow);
}
.hl-section {
    padding: 5rem 0;
}
.hl-section--cream {
    background: var(--hl-cream);
}
.hl-section--green {
    background: var(--hl-green);
    color: #fff;
}
.hl-section--green h2,
.hl-section--green h3,
.hl-section--green p {
    color: #fff;
}

.hl-grid {
    display: grid;
    gap: var(--hl-gap);
}
.hl-grid-2 { grid-template-columns: repeat(2, 1fr); }
.hl-grid-3 { grid-template-columns: repeat(3, 1fr); }
.hl-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 992px) {
    .hl-grid-4 { grid-template-columns: repeat(2, 1fr); }
    .hl-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .hl-grid-4,
    .hl-grid-3,
    .hl-grid-2 { grid-template-columns: 1fr; }
    .hl-section { padding: 3rem 0; }
}

/* --------------------------------------------------------------------------
   4. SECTION HEADERS
   -------------------------------------------------------------------------- */
.hl-section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3rem;
}
.hl-section__tag {
    display: inline-block;
    padding: 0.25rem 1rem;
    border-radius: var(--hl-radius-full);
    background: var(--hl-green-bg);
    color: var(--hl-green);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.hl-section__tag--light {
    background: rgba(255,255,255,0.2);
    color: #fff;
}
.hl-section__title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    margin-bottom: 1rem;
}
.hl-section__desc {
    font-size: 1.125rem;
    color: var(--hl-text-secondary);
    line-height: 1.8;
}
.hl-section__cta {
    text-align: center;
    margin-top: 2.5rem;
}

/* --------------------------------------------------------------------------
   5. HEADER
   -------------------------------------------------------------------------- */
.hl-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--hl-border-light);
    transition: box-shadow var(--hl-transition), top 0.3s ease;
}
.hl-header--scrolled {
    box-shadow: var(--hl-shadow-md);
}
.hl-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 1.5rem;
}
.hl-header__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: var(--hl-text);
    font-family: var(--hl-font-heading);
    white-space: nowrap;
}
.hl-header__logo:hover { color: var(--hl-green); }
.hl-header__logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--hl-green);
    color: #fff;
    border-radius: var(--hl-radius);
}

/* Navigation */
.hl-nav__menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
}
.hl-nav__menu a {
    display: block;
    padding: 0.5rem 0.875rem;
    color: var(--hl-text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    border-radius: var(--hl-radius);
    transition: all var(--hl-transition);
}
.hl-nav__menu a:hover,
.hl-nav__menu a:focus {
    color: var(--hl-green);
    background: var(--hl-green-bg);
}

/* Mobile nav panel: hidden on desktop, visible only on mobile when open */
.hl-nav__menu--mobile {
    display: none;
}

/* Mobile CTA: hidden by default, shown only in mobile menu */
.hl-nav__mobile-cta {
    display: none;
}

/* Hamburger */
.hl-nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}
.hl-nav__hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 24px;
}
.hl-nav__hamburger span {
    display: block;
    height: 2px;
    background: var(--hl-text);
    border-radius: 2px;
    transition: all 0.3s ease;
}
.hl-nav__toggle[aria-expanded="true"] .hl-nav__hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hl-nav__toggle[aria-expanded="true"] .hl-nav__hamburger span:nth-child(2) {
    opacity: 0;
}
.hl-nav__toggle[aria-expanded="true"] .hl-nav__hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Header CTA */
.hl-header__cta {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

/* Mobile nav */
@media (max-width: 992px) {
    .hl-nav__toggle { display: block; }
    /* Hide desktop inline nav on mobile */
    .hl-nav__menu--desktop { display: none; }
    .hl-header__cta--desktop { display: none; }
    /* Mobile panel - OUTSIDE header, own stacking context */
    .hl-nav__menu--mobile {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        padding: 1.5rem;
        padding-top: 120px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.3s ease, visibility 0.3s;
        overflow-y: auto;
        z-index: 9999;
    }
    .hl-nav__menu--mobile.hl-nav--open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
    .hl-nav__menu--mobile ul {
        list-style: none;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
    }
    .hl-nav__menu--mobile a {
        display: block;
        padding: 0.875rem 1rem;
        color: var(--hl-text-secondary);
        font-size: 1.125rem;
        font-weight: 500;
        border-radius: var(--hl-radius);
        transition: all var(--hl-transition);
        text-decoration: none;
    }
    .hl-nav__menu--mobile a:hover,
    .hl-nav__menu--mobile a:focus {
        color: var(--hl-green);
        background: var(--hl-green-bg);
    }
    .hl-nav__menu--mobile a[aria-current="page"] {
        background: var(--hl-green-bg);
        color: var(--hl-green);
        font-weight: 600;
    }
    .hl-nav__menu--mobile .hl-nav__mobile-cta {
        display: flex !important;
        flex-direction: column;
        gap: 0.5rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid var(--hl-border-light);
    }
}

/* --------------------------------------------------------------------------
   6. BUTTONS
   -------------------------------------------------------------------------- */
.hl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--hl-font-heading);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--hl-radius);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--hl-transition);
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}
.hl-btn:focus-visible {
    outline: 3px solid var(--hl-blue);
    outline-offset: 2px;
}

.hl-btn-primary {
    background: var(--hl-green);
    color: #fff;
    border-color: var(--hl-green);
}
.hl-btn-primary:hover {
    background: var(--hl-green-dark);
    border-color: var(--hl-green-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: var(--hl-shadow-md);
}

.hl-btn-secondary {
    background: var(--hl-green-bg);
    color: var(--hl-green);
    border-color: transparent;
}
.hl-btn-secondary:hover {
    background: var(--hl-green);
    color: #fff;
}

.hl-btn-outline {
    background: transparent;
    color: var(--hl-green);
    border-color: var(--hl-green);
}
.hl-btn-outline:hover {
    background: var(--hl-green);
    color: #fff;
}

.hl-btn-white {
    background: #fff;
    color: var(--hl-green);
    border-color: #fff;
}
.hl-btn-white:hover {
    background: var(--hl-cream);
    color: var(--hl-green-dark);
}

.hl-btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.5);
}
.hl-btn-outline-white:hover {
    background: #fff;
    color: var(--hl-green);
}

.hl-btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; }
.hl-btn-xl { padding: 1.125rem 2.5rem; font-size: 1.125rem; }

/* Small variants for header */
.hl-btn-primary-sm {
    background: var(--hl-green);
    color: #fff;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}
.hl-btn-primary-sm:hover { background: var(--hl-green-dark); color: #fff; }
.hl-btn-outline-sm {
    background: transparent;
    color: var(--hl-green);
    border-color: var(--hl-green);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}
.hl-btn-outline-sm:hover { background: var(--hl-green); color: #fff; }

.hl-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--hl-green);
}
.hl-link:hover { gap: 0.625rem; }

/* --------------------------------------------------------------------------
   7. HERO
   -------------------------------------------------------------------------- */
.hl-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.hl-hero__bg {
    position: absolute;
    inset: 0;
}
.hl-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hl-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,118,110,0.85) 0%, rgba(17,24,39,0.75) 100%);
}
.hl-hero__content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    padding: 4rem 0;
}
.hl-hero__title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 1.15;
}
.hl-hero__title-accent {
    color: var(--hl-green-light);
}
.hl-hero__subtitle {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}
.hl-hero__cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Page Hero (secondary pages) */
.hl-page-hero {
    background: var(--hl-cream);
    padding: 4rem 0 3rem;
    text-align: center;
}
.hl-page-hero--green {
    background: var(--hl-green);
}
.hl-page-hero--green .hl-page-hero__title,
.hl-page-hero--green .hl-page-hero__desc {
    color: #fff;
}
.hl-page-hero--small {
    padding: 3rem 0 2rem;
}
.hl-page-hero__title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}
.hl-page-hero__desc {
    font-size: 1.125rem;
    color: var(--hl-text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

/* --------------------------------------------------------------------------
   8. MISSION CARDS
   -------------------------------------------------------------------------- */
.hl-mission__card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: #fff;
    border-radius: var(--hl-radius-lg);
    box-shadow: var(--hl-shadow-sm);
    transition: all var(--hl-transition);
}
.hl-mission__card:hover {
    box-shadow: var(--hl-shadow-lg);
    transform: translateY(-4px);
}
.hl-mission__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--hl-green-bg);
    color: var(--hl-green);
    margin-bottom: 1.25rem;
}
.hl-mission__card h3 {
    font-size: 1.375rem;
    margin-bottom: 0.75rem;
}
.hl-mission__card p {
    color: var(--hl-text-secondary);
    font-size: 0.9375rem;
}

/* --------------------------------------------------------------------------
   9. ACTION CARDS
   -------------------------------------------------------------------------- */
.hl-action-card {
    background: #fff;
    border-radius: var(--hl-radius-lg);
    overflow: hidden;
    box-shadow: var(--hl-shadow-sm);
    transition: all var(--hl-transition);
}
.hl-action-card:hover {
    box-shadow: var(--hl-shadow-lg);
    transform: translateY(-4px);
}
.hl-action-card__img {
    aspect-ratio: 3/2;
    overflow: hidden;
}
.hl-action-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.hl-action-card:hover .hl-action-card__img img {
    transform: scale(1.05);
}
.hl-action-card__body {
    padding: 1.5rem;
}
.hl-action-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: var(--hl-radius);
    background: var(--hl-green-bg);
    color: var(--hl-green);
    margin-bottom: 0.75rem;
}
.hl-action-card__body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.hl-action-card__body p {
    color: var(--hl-text-secondary);
    font-size: 0.9375rem;
}

/* Action detail (page-actions) */
.hl-action-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid var(--hl-border-light);
}
.hl-action-detail:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}
.hl-action-detail--reverse .hl-action-detail__image { order: 2; }
.hl-action-detail--reverse .hl-action-detail__content { order: 1; }

.hl-action-detail__image img {
    border-radius: var(--hl-radius-lg);
    box-shadow: var(--hl-shadow-md);
}
.hl-action-detail__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--hl-green-bg);
    color: var(--hl-green);
    margin-bottom: 1rem;
}
.hl-action-detail__content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.hl-action-detail__content p {
    color: var(--hl-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .hl-action-detail { grid-template-columns: 1fr; }
    .hl-action-detail--reverse .hl-action-detail__image,
    .hl-action-detail--reverse .hl-action-detail__content { order: initial; }
}

/* --------------------------------------------------------------------------
   10. IMPACT SECTION
   -------------------------------------------------------------------------- */
.hl-impact__grid {
    text-align: center;
}
.hl-impact__item {
    padding: 2rem 1rem;
}
.hl-impact__number {
    display: block;
    font-family: var(--hl-font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--hl-green);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.hl-section--green .hl-impact__number {
    color: #fff;
}
.hl-impact__label {
    font-size: 0.9375rem;
    color: var(--hl-text-secondary);
}
.hl-section--green .hl-impact__label {
    color: rgba(255,255,255,0.8);
}

/* --------------------------------------------------------------------------
   11. TESTIMONIALS
   -------------------------------------------------------------------------- */
.hl-testimonial {
    background: #fff;
    border-radius: var(--hl-radius-lg);
    padding: 2rem;
    box-shadow: var(--hl-shadow-sm);
    border: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.hl-testimonial__stars {
    display: flex;
    gap: 2px;
    color: #F59E0B;
}
.hl-testimonial__text {
    font-size: 0.9375rem;
    color: var(--hl-text-secondary);
    line-height: 1.8;
    flex: 1;
    font-style: italic;
}
.hl-testimonial__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.hl-testimonial__avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}
.hl-testimonial__name {
    display: block;
    font-weight: 600;
    font-style: normal;
    font-size: 0.9375rem;
}
.hl-testimonial__role {
    font-size: 0.8125rem;
    color: var(--hl-text-muted);
}

/* --------------------------------------------------------------------------
   12. EVENT CARDS
   -------------------------------------------------------------------------- */
.hl-event-card {
    display: flex;
    background: #fff;
    border-radius: var(--hl-radius-lg);
    box-shadow: var(--hl-shadow-sm);
    overflow: hidden;
    transition: all var(--hl-transition);
}
.hl-event-card:hover {
    box-shadow: var(--hl-shadow-lg);
}
.hl-event-card__date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
    padding: 1.5rem;
    background: var(--hl-green);
    color: #fff;
}
.hl-event-card__day {
    font-family: var(--hl-font-heading);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}
.hl-event-card__month {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.9;
}
.hl-event-card__body {
    padding: 1.5rem;
    flex: 1;
}
.hl-event-card__category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--hl-green);
    margin-bottom: 0.375rem;
}
.hl-event-card__body h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}
.hl-event-card__body p {
    color: var(--hl-text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}
.hl-event-card__meta {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    color: var(--hl-text-muted);
    font-size: 0.8125rem;
    flex-wrap: wrap;
}

/* Full event (page-evenements) */
.hl-event-full {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: #fff;
    border-radius: var(--hl-radius-lg);
    padding: 2rem;
    box-shadow: var(--hl-shadow-sm);
    margin-bottom: 1.5rem;
    transition: all var(--hl-transition);
}
.hl-event-full:hover { box-shadow: var(--hl-shadow-md); }
.hl-event-full__date-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 80px;
    text-align: center;
}
.hl-event-full__day {
    font-family: var(--hl-font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--hl-green);
    line-height: 1;
}
.hl-event-full__month {
    font-size: 0.875rem;
    color: var(--hl-text-secondary);
    text-transform: capitalize;
}
.hl-event-full__year {
    font-size: 0.75rem;
    color: var(--hl-text-muted);
}
.hl-event-full__image {
    flex-shrink: 0;
    width: 200px;
}
.hl-event-full__image img {
    border-radius: var(--hl-radius);
    width: 100%;
    height: auto;
}
.hl-event-full__body { flex: 1; }
.hl-event-full__category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--hl-green);
    margin-bottom: 0.25rem;
}
.hl-event-full__body h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.hl-event-full__body p {
    color: var(--hl-text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}
.hl-event-full__meta {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 1.5rem;
}
.hl-event-full__meta li {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.8125rem;
    color: var(--hl-text-muted);
}

@media (max-width: 768px) {
    .hl-event-full { flex-direction: column; }
    .hl-event-full__date-col { flex-direction: row; gap: 0.5rem; }
    .hl-event-full__image { width: 100%; }
    .hl-event-full__meta { flex-direction: column; gap: 0.5rem; }
}

/* --------------------------------------------------------------------------
   13. TRANSPARENCY
   -------------------------------------------------------------------------- */
.hl-transparency__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.hl-transparency__content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}
.hl-transparency__list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 2rem;
}
.hl-transparency__list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: 1rem;
}
.hl-transparency__pct {
    font-family: var(--hl-font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    min-width: 60px;
}
.hl-transparency__image img {
    border-radius: var(--hl-radius-lg);
    box-shadow: var(--hl-shadow-lg);
}

@media (max-width: 768px) {
    .hl-transparency__inner { grid-template-columns: 1fr; }
    .hl-transparency__image { order: -1; }
}

/* Progress bars */
.hl-progress-list { margin: 1.5rem 0; }
.hl-progress-item { margin-bottom: 1.25rem; }
.hl-progress-item__header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 500;
}
.hl-progress-bar {
    height: 10px;
    background: var(--hl-border-light);
    border-radius: var(--hl-radius-full);
    overflow: hidden;
}
.hl-progress-bar__fill {
    height: 100%;
    background: var(--hl-green);
    border-radius: var(--hl-radius-full);
    transition: width 1s ease;
}
.hl-progress-bar__fill--secondary { background: var(--hl-blue); }
.hl-progress-bar__fill--tertiary { background: var(--hl-green-light); }

/* --------------------------------------------------------------------------
   14. CTA SECTIONS
   -------------------------------------------------------------------------- */
.hl-cta-final {
    padding: 5rem 0;
}
.hl-cta-final__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.hl-cta-final__inner h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
}
.hl-cta-final__inner p {
    font-size: 1.125rem;
    color: var(--hl-text-secondary);
    margin-bottom: 2rem;
}
.hl-cta-final__buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.hl-cta-band__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}
.hl-cta-band__inner h2 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}
.hl-cta-band__inner p {
    color: rgba(255,255,255,0.9);
}
.hl-section--cream .hl-cta-band__inner p {
    color: var(--hl-text-secondary);
}
.hl-cta-band__buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .hl-cta-band__inner { flex-direction: column; text-align: center; }
    .hl-cta-band__buttons { justify-content: center; flex-wrap: wrap; }
}

/* --------------------------------------------------------------------------
   15. FEATURE / VALUE CARDS
   -------------------------------------------------------------------------- */
.hl-feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: var(--hl-radius-lg);
    box-shadow: var(--hl-shadow-sm);
    transition: all var(--hl-transition);
}
.hl-feature-card:hover {
    box-shadow: var(--hl-shadow-md);
    transform: translateY(-2px);
}
.hl-feature-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--hl-green-bg);
    color: var(--hl-green);
    margin-bottom: 1rem;
}
.hl-feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}
.hl-feature-card p {
    color: var(--hl-text-secondary);
    font-size: 0.9375rem;
}

.hl-value-card {
    text-align: center;
    padding: 2rem 1.5rem;
}
.hl-value-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(15,118,110,0.1);
    color: var(--hl-green);
    margin-bottom: 1rem;
}
.hl-value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}
.hl-value-card p {
    color: var(--hl-text-secondary);
    font-size: 0.9375rem;
}

/* Mission items (page-devenir-benevole) */
.hl-mission-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: var(--hl-radius);
    box-shadow: var(--hl-shadow-sm);
}
.hl-mission-item > svg {
    flex-shrink: 0;
    color: var(--hl-green);
    margin-top: 0.125rem;
}
.hl-mission-item h3 {
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
}
.hl-mission-item p {
    color: var(--hl-text-secondary);
    font-size: 0.875rem;
    margin: 0;
}

/* --------------------------------------------------------------------------
   16. TEAM CARDS
   -------------------------------------------------------------------------- */
.hl-team-card {
    text-align: center;
}
.hl-team-card__photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1.25rem;
    box-shadow: var(--hl-shadow-md);
}
.hl-team-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
}
.hl-team-card__role {
    display: block;
    font-size: 0.875rem;
    color: var(--hl-green);
    font-weight: 600;
    margin-bottom: 0.75rem;
}
.hl-team-card p {
    color: var(--hl-text-secondary);
    font-size: 0.875rem;
}

/* --------------------------------------------------------------------------
   17. PARTNER CARDS
   -------------------------------------------------------------------------- */
.hl-partners-grid {
    gap: 1.5rem;
}
.hl-partner-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #fff;
    border-radius: var(--hl-radius-lg);
    box-shadow: var(--hl-shadow-sm);
    transition: all var(--hl-transition);
}
.hl-partner-card:hover {
    box-shadow: var(--hl-shadow-md);
}
.hl-partner-card__logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--hl-green-bg);
    color: var(--hl-green);
    font-family: var(--hl-font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.hl-partner-card h3 {
    font-size: 1rem;
    margin-bottom: 0.375rem;
}

/* Badges */
.hl-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--hl-radius-full);
    background: var(--hl-border-light);
    color: var(--hl-text-muted);
    font-size: 0.75rem;
    font-weight: 500;
}
.hl-badge--green {
    background: var(--hl-green-bg);
    color: var(--hl-green);
}

/* Check list */
.hl-check-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}
.hl-check-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    font-size: 1rem;
}
.hl-check-list svg {
    flex-shrink: 0;
    color: var(--hl-green);
}

/* --------------------------------------------------------------------------
   18. ARTICLES
   -------------------------------------------------------------------------- */
.hl-article-card {
    background: #fff;
    border-radius: var(--hl-radius-lg);
    overflow: hidden;
    box-shadow: var(--hl-shadow-sm);
    transition: all var(--hl-transition);
}
.hl-article-card:hover {
    box-shadow: var(--hl-shadow-lg);
    transform: translateY(-4px);
}
.hl-article-card__img {
    display: block;
    aspect-ratio: 3/2;
    overflow: hidden;
}
.hl-article-card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.hl-article-card:hover .hl-article-card__img img {
    transform: scale(1.05);
}
.hl-article-card__img--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--hl-cream);
    color: var(--hl-border);
}
.hl-article-card__body {
    padding: 1.5rem;
}
.hl-article-card__date {
    display: block;
    font-size: 0.8125rem;
    color: var(--hl-text-muted);
    margin-bottom: 0.5rem;
}
.hl-article-card__body h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}
.hl-article-card__body h3 a {
    color: var(--hl-text);
}
.hl-article-card__body h3 a:hover {
    color: var(--hl-green);
}
.hl-article-card__body p {
    color: var(--hl-text-secondary);
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

/* Single article */
.hl-article__header {
    padding: 3rem 0 2rem;
    background: var(--hl-cream);
    text-align: center;
}
.hl-article__meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--hl-text-muted);
}
.hl-article__header h1 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}
.hl-article__excerpt {
    font-size: 1.125rem;
    color: var(--hl-text-secondary);
    margin-top: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.hl-article__featured {
    margin-top: -1rem;
    margin-bottom: 2rem;
}
.hl-article__img {
    border-radius: var(--hl-radius-lg);
    box-shadow: var(--hl-shadow-lg);
    max-height: 500px;
    width: 100%;
    object-fit: cover;
}
.hl-article-nav {
    padding: 2rem 0;
    border-top: 1px solid var(--hl-border);
}
.hl-article-nav__inner {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
}
.hl-article-nav__label {
    display: block;
    font-size: 0.75rem;
    color: var(--hl-text-muted);
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}
.hl-article-nav__next { text-align: right; }

/* Pagination */
.hl-pagination {
    margin-top: 3rem;
    text-align: center;
}
.hl-pagination .page-numbers {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    padding: 0;
}
.hl-pagination .page-numbers li a,
.hl-pagination .page-numbers li span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 0.75rem;
    border-radius: var(--hl-radius);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all var(--hl-transition);
}
.hl-pagination .page-numbers li a {
    color: var(--hl-text-secondary);
    background: #fff;
    border: 1px solid var(--hl-border);
}
.hl-pagination .page-numbers li a:hover {
    background: var(--hl-green-bg);
    color: var(--hl-green);
    border-color: var(--hl-green);
}
.hl-pagination .page-numbers li .current {
    background: var(--hl-green);
    color: #fff;
    border: 1px solid var(--hl-green);
}

/* Empty state */
.hl-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--hl-text-muted);
}
.hl-empty-state h3 {
    margin: 1rem 0 0.5rem;
}

/* --------------------------------------------------------------------------
   19. FORMS
   -------------------------------------------------------------------------- */
.hl-form {
    margin-top: 2rem;
}
.hl-form__row {
    margin-bottom: 1.25rem;
}
.hl-form__row--2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
@media (max-width: 640px) {
    .hl-form__row--2 { grid-template-columns: 1fr; }
}
.hl-form__field {
    margin-bottom: 1.25rem;
}
.hl-form__field label {
    display: block;
    font-weight: 500;
    font-size: 0.9375rem;
    margin-bottom: 0.375rem;
    color: var(--hl-text);
}
.hl-form__field label span {
    color: #EF4444;
}
.hl-form__field input,
.hl-form__field select,
.hl-form__field textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--hl-border);
    border-radius: var(--hl-radius);
    font-family: var(--hl-font-body);
    font-size: 1rem;
    color: var(--hl-text);
    background: #fff;
    transition: all var(--hl-transition);
}
.hl-form__field input:focus,
.hl-form__field select:focus,
.hl-form__field textarea:focus {
    outline: none;
    border-color: var(--hl-green);
    box-shadow: 0 0 0 3px rgba(15,118,110,0.1);
}
.hl-form__field input.hl-error,
.hl-form__field textarea.hl-error {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}
.hl-form__field textarea {
    resize: vertical;
    min-height: 100px;
}

.hl-form__submit {
    margin-top: 1.5rem;
}
.hl-form__status {
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    border-radius: var(--hl-radius);
    font-size: 0.9375rem;
    display: none;
}
.hl-form__status--success {
    display: block;
    background: var(--hl-green-bg);
    color: var(--hl-green-dark);
    border: 1px solid var(--hl-green);
}
.hl-form__status--error {
    display: block;
    background: #FEF2F2;
    color: #991B1B;
    border: 1px solid #FECACA;
}

/* Honeypot */
.hl-hp {
    position: absolute;
    left: -9999px;
    height: 0;
    overflow: hidden;
}

/* --------------------------------------------------------------------------
   20. FAQ (details/summary)
   -------------------------------------------------------------------------- */
.hl-faq__item {
    border: 1px solid var(--hl-border);
    border-radius: var(--hl-radius);
    margin-bottom: 0.75rem;
    background: #fff;
    overflow: hidden;
}
.hl-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--hl-text);
    list-style: none;
    transition: color var(--hl-transition);
}
.hl-faq__question::-webkit-details-marker {
    display: none;
}
.hl-faq__question::after {
    content: '+';
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--hl-text-muted);
    transition: transform var(--hl-transition);
}
.hl-faq__item[open] .hl-faq__question::after {
    content: '−';
    color: var(--hl-green);
}
.hl-faq__item[open] .hl-faq__question {
    color: var(--hl-green);
}
.hl-faq__answer {
    padding: 0 1.5rem 1.25rem;
    color: var(--hl-text-secondary);
    line-height: 1.8;
}
.hl-faq__answer p {
    margin: 0;
}
.hl-faq__question:focus-visible {
    outline: 3px solid var(--hl-blue);
    outline-offset: -3px;
    border-radius: var(--hl-radius);
}

/* --------------------------------------------------------------------------
   21. CONTACT
   -------------------------------------------------------------------------- */
.hl-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
}
@media (max-width: 768px) {
    .hl-contact-grid { grid-template-columns: 1fr; }
}
.hl-contact-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.hl-contact-info__item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}
.hl-contact-info__icon {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--hl-green-bg);
    color: var(--hl-green);
}
.hl-contact-info__item h3 {
    font-size: 0.9375rem;
    margin-bottom: 0.25rem;
}
.hl-contact-info__item p {
    color: var(--hl-text-secondary);
    font-size: 0.875rem;
    margin: 0;
}
.hl-contact-info__item a {
    color: var(--hl-green);
}
.hl-contact-map {
    margin-top: 1.5rem;
}
.hl-contact-form-wrap h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* --------------------------------------------------------------------------
   22. FOOTER
   -------------------------------------------------------------------------- */
.hl-footer {
    background: var(--hl-text);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
    margin-top: 0;
}
.hl-footer__grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    padding-bottom: 3rem;
}
@media (max-width: 992px) {
    .hl-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .hl-footer__grid { grid-template-columns: 1fr; }
}
.hl-footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--hl-font-heading);
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 1rem;
}
.hl-footer__logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: var(--hl-green);
    color: #fff;
    border-radius: var(--hl-radius);
}
.hl-footer__desc {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}
.hl-footer__social {
    display: flex;
    gap: 0.75rem;
}
.hl-footer__social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.7);
    transition: all var(--hl-transition);
}
.hl-footer__social a:hover {
    background: var(--hl-green);
    color: #fff;
}
.hl-footer__title {
    font-size: 1rem;
    color: #fff;
    margin-bottom: 1rem;
    font-weight: 600;
}
.hl-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hl-footer__links li {
    margin-bottom: 0.5rem;
}
.hl-footer__links a {
    color: rgba(255,255,255,0.7);
    font-size: 0.875rem;
    transition: color var(--hl-transition);
}
.hl-footer__links a:hover {
    color: #fff;
}
.hl-footer__contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hl-footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}
.hl-footer__contact svg {
    flex-shrink: 0;
    margin-top: 0.125rem;
    opacity: 0.7;
}
.hl-footer__contact a {
    color: rgba(255,255,255,0.7);
}
.hl-footer__contact a:hover { color: #fff; }

.hl-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8125rem;
}
.hl-footer__legal {
    display: flex;
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.hl-footer__legal a {
    color: rgba(255,255,255,0.5);
    font-size: 0.8125rem;
}
.hl-footer__legal a:hover { color: #fff; }

@media (max-width: 640px) {
    .hl-footer__bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
}

/* --------------------------------------------------------------------------
   23. STICKY MOBILE CTA
   -------------------------------------------------------------------------- */
.hl-sticky-mobile {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 0.75rem 1rem;
    gap: 0.5rem;
}
@media (max-width: 768px) {
    .hl-sticky-mobile { display: flex; }
    .hl-footer { padding-bottom: 4rem; }
}
.hl-sticky-mobile__btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: var(--hl-radius);
    font-family: var(--hl-font-heading);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all var(--hl-transition);
}
.hl-sticky-mobile__btn--don {
    background: var(--hl-green);
    color: #fff;
}
.hl-sticky-mobile__btn--don:hover {
    background: var(--hl-green-dark);
    color: #fff;
}
.hl-sticky-mobile__btn--benevole {
    background: var(--hl-green-bg);
    color: var(--hl-green);
}
.hl-sticky-mobile__btn--benevole:hover {
    background: var(--hl-green);
    color: #fff;
}

/* --------------------------------------------------------------------------
   24. PROSE (for legal pages, articles)
   -------------------------------------------------------------------------- */
.hl-prose h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}
.hl-prose h3 {
    font-size: 1.25rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}
.hl-prose p {
    margin-bottom: 1rem;
    color: var(--hl-text-secondary);
    line-height: 1.8;
}
.hl-prose ul, .hl-prose ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    color: var(--hl-text-secondary);
}
.hl-prose li {
    margin-bottom: 0.375rem;
    line-height: 1.7;
}
.hl-prose a {
    color: var(--hl-green);
    text-decoration: underline;
}

/* --------------------------------------------------------------------------
   25. UTILITIES
   -------------------------------------------------------------------------- */
.hl-text-center { text-align: center; }
.hl-text-muted { color: var(--hl-text-muted); font-size: 0.875rem; margin-top: 0.75rem; }
.hl-mt-2 { margin-top: 2rem; }

/* Focus visible for all interactive elements */
*:focus-visible {
    outline: 3px solid var(--hl-blue);
    outline-offset: 2px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

/* Btn Spinner (loading state) */
.hl-btn-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: hl-spin 0.6s linear infinite;
    vertical-align: middle;
}
@keyframes hl-spin {
    to { transform: rotate(360deg); }
}

/* Nav active page indicator */
.hl-nav__menu a[aria-current="page"] {
    color: var(--hl-green);
    background: var(--hl-green-bg);
    font-weight: 600;
}

/* No-JS fallback: ensure content is visible if JS is disabled */
.no-js .hl-mission__card,
.no-js .hl-action-card,
.no-js .hl-feature-card,
.no-js .hl-testimonial,
.no-js .hl-impact__item,
.no-js .hl-event-card,
.no-js .hl-event-full,
.no-js .hl-partner-card,
.no-js .hl-team-card,
.no-js .hl-don-card,
.no-js .hl-value-card,
.no-js .hl-article-card {
    opacity: 1 !important;
    transform: none !important;
}

/* Don card: avoid orphan on tablet */
@media (min-width: 641px) and (max-width: 992px) {
    .hl-don-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hl-don-cards-grid > :last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Print */
@media print {
    .hl-header, .hl-footer, .hl-sticky-mobile, .hl-cta-final, .hl-cta-band, .hl-demo-bar { display: none; }
    .hl-section { padding: 1.5rem 0; }
}
