/*
Theme Name:  Prevention Suicide 2026
Theme URI:   https://www.prevention-suicide.lu
Author:      Addedsense
Author URI:  https://www.addedsense.lu
Description: Custom WordPress theme for Prevention Suicide Luxembourg. Compatible with Beaver Builder.
Version:     2.0.0
License:     All rights reserved
Text Domain: prevention-suicide
Tags:        custom-menu, custom-logo, full-width-template, beaver-builder
*/


/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
    --psl-blue:           #343058;
    --psl-blue-dark:      #2d2a4c;
    --psl-green:          #a8d3af;
    --psl-green-dark:     #88ac8e;
    --psl-grey:           #e6e4eb;
    --psl-red:            #d32f2f;
    --psl-red-dark:       #b71c1c;
    --psl-white:          #ffffff;
    --psl-content-width:  1500px;
    --psl-header-height:  80px;
    --psl-transition:     0.25s ease;
    --psl-font:           'Garet', sans-serif;

    /* Glass card shared values */
    --psl-glass-bg:       rgba(255, 255, 255, 0.78);
    --psl-glass-bg-hover: rgba(255, 255, 255, 0.88);
    --psl-glass-border:   1.5px solid rgba(230, 228, 235, 0.6);
    --psl-glass-radius:   1.5rem;
    --psl-glass-shadow:
        0 16px 48px rgba(52, 48, 88, 0.14),
        0 6px 20px rgba(52, 48, 88, 0.08),
        inset 0 1px 2px rgba(255, 255, 255, 0.95);
    --psl-glass-shadow-hover:
        0 24px 64px rgba(52, 48, 88, 0.18),
        0 10px 28px rgba(52, 48, 88, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 1),
        0 0 0 1px rgba(168, 211, 175, 0.2);
}

/* ============================================================
   LOCAL FONTS
   ============================================================ */
@font-face {
    font-family: 'Garet';
    src: url('assets/fonts/Garet-Book.woff2') format('woff2'),
         url('assets/fonts/Garet-Book.woff')  format('woff');
    font-weight: 400;
    font-style:  normal;
    font-display: swap;
}
@font-face {
    font-family: 'Garet';
    src: url('assets/fonts/Garet-Heavy.woff2') format('woff2'),
         url('assets/fonts/Garet-Heavy.woff')  format('woff');
    font-weight: 800;
    font-style:  normal;
    font-display: swap;
}

/* ============================================================
   BASE STYLES
   ============================================================ */
body {
    font-family: var(--psl-font);
    font-weight: 400;
    font-size: clamp(17px, 1.5vw, 18px);
    line-height: 1.6;
    color: var(--psl-blue-dark);
    background-color: var(--psl-white);
    margin: 0;
    padding: 0;
}

p { margin-bottom: 0.75rem; line-height: 1.6; }

a {
    color: var(--psl-blue-dark);
    font-weight: 700;
    text-decoration: underline;
    transition: color var(--psl-transition);
}
a:hover { color: var(--psl-green); }

h1, h2, h3, h4, h5, h6 {
    font-family: var(--psl-font);
    font-weight: 800;
    line-height: 1.3;
    color: var(--psl-blue);
    margin-top: 0;
}
h1 { font-size: clamp(32px, 4vw, 48px); }
h2 { font-size: clamp(24px, 3.3vw, 36px); }
h3 { font-size: clamp(20px, 2.6vw, 28px); }
h4 { font-size: clamp(18px, 2vw, 22px); }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
blockquote {
    font-style: italic;
    border-left: 4px solid var(--psl-green);
    padding-left: 1rem;
    margin: 24px 0;
    color: var(--psl-blue-dark);
}

figcaption {
    font-size: 14px;
    color: var(--psl-blue-dark);
    text-align: center;
    margin-top: 8px;
}

/* ============================================================
   WPFORMS CUSTOM STYLING
   ============================================================ */
div.wpforms-container-full .wpforms-form button[type=submit].wpforms-submit,
div.wpforms-container-full .wpforms-form input[type=submit].wpforms-submit {
    background-color: var(--psl-blue-dark) !important;
    color: var(--psl-white) !important;
    border: 2px solid var(--psl-blue-dark) !important;
    border-radius: 32px !important;
    padding: 12px 35px !important;
    font-family: var(--psl-font) !important;
    font-weight: 800 !important;
    font-size: 18px !important;
    transition: all var(--psl-transition) !important;
    cursor: pointer;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(52, 48, 88, 0.2);
}

div.wpforms-container-full .wpforms-form button[type=submit].wpforms-submit:hover,
div.wpforms-container-full .wpforms-form input[type=submit].wpforms-submit:hover {
    background-color: var(--psl-green) !important;
    color: var(--psl-blue-dark) !important;
    border-color: var(--psl-green-dark) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 14px rgba(52, 48, 88, 0.3);
}

div.wpforms-confirmation-container-full {
    background-color: var(--psl-grey) !important;
    border: 2px solid var(--psl-green) !important;
    border-radius: 12px;
    padding: 25px !important;
    color: var(--psl-blue-dark) !important;
    font-family: var(--psl-font);
    margin-top: 20px;
    text-align: center;
}

div.wpforms-confirmation-container-full p {
    margin-bottom: 0;
    font-weight: 700;
}

/* ============================================================
   NUMBERED LISTS - Navy blue circles
   ============================================================ */
.psl-main ol:not([class*="menu"]) {
    counter-reset: item;
    list-style: none;
    padding-left: 0;
    margin: 1.5em 0;
}

.psl-main ol:not([class*="menu"]) li {
    counter-increment: item;
    margin-bottom: 1.5em;
    padding-left: 3em;
    position: relative;
    line-height: 1.6;
}

.psl-main ol:not([class*="menu"]) li::before {
    content: counter(item);
    position: absolute;
    left: 0;
    top: 0;
    width: 2em;
    height: 2em;
    background: var(--psl-blue);
    color: var(--psl-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1em;
}

/* Nested ol */
.psl-main ol ol li::before {
    background: var(--psl-green);
    color: var(--psl-blue);
    font-size: 0.9em;
    width: 1.8em;
    height: 1.8em;
}

/* ============================================================
   BULLET LISTS - Green circles
   ============================================================ */
.psl-main ul:not([class*="menu"]):not([class*="psl-"]) {
    list-style: none;
    padding-left: 0;
    margin: 1.5em 0;
}

.psl-main ul:not([class*="menu"]):not([class*="psl-"]) li {
    padding-left: 2em;
    position: relative;
    margin-bottom: 0.5em;
    line-height: 1.6;
}

.psl-main ul:not([class*="menu"]):not([class*="psl-"]) li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 0.6em;
    height: 0.6em;
    background: var(--psl-green);
    border-radius: 50%;
}

/* Nested ul: smaller grey circle */
.psl-main ul ul li::before {
    background: var(--psl-grey) !important;
    width: 0.5em;
    height: 0.5em;
}

/* Red bullets for urgent items */
ul.helpbullet li::before {
    background: var(--psl-red) !important;
}

/* Extra indent for standalone bullet lists */
ul.bulletnool {
    margin-left: 3em !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */

/* Outline button */
.button.outline {
    background: var(--psl-blue-dark);
    color: var(--psl-white);
    border-radius: 32px;
    box-shadow: 0 4px 10px rgba(52, 48, 88, 0.2);
    transition: all var(--psl-transition);
    text-decoration: none;
    display: inline-block;
    padding: 0.75em 2em;
}

.button.outline:hover {
    background: var(--psl-green);
    color: var(--psl-blue-dark);
    transform: translateY(-2px);
    border: 4px solid var(--psl-green-dark);
    box-shadow: 0 6px 14px rgba(52, 48, 88, 0.3);
}

/* Red help button */
.button.help {
    background: var(--psl-red) !important;
    color: var(--psl-white) !important;
    border-radius: 32px !important;
    padding: 0.75em 2em !important;
    border: none !important;
    display: inline-block;
    font-weight: 700;
    text-decoration: none;
    transition: all var(--psl-transition);
}

.button.help:hover {
    background: var(--psl-red-dark) !important;
    color: var(--psl-white) !important;
    transform: translateY(-2px);
}

/* Info button */
.info-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    padding: 0.4em 0.8em;
    background: #eefbf3;
    color: var(--psl-blue) !important;
    text-decoration: underline !important;
    text-underline-offset: 3px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9em;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.info-button:hover {
    background: var(--psl-blue);
    color: var(--psl-white) !important;
    border-color: var(--psl-green);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(45, 53, 97, 0.2);
}

/* ============================================================
   CONTENT COMPONENTS
   ============================================================ */

/* Danger evaluation box */
.danger-evaluation-box {
    padding: 25px 25px 25px 35px;
    margin: 30px 0;
    background-color: var(--psl-white);
    border-left: 6px solid var(--psl-red);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0 8px 8px 0;
}

.danger-evaluation-box strong { color: var(--psl-red); }
.danger-evaluation-box a      { color: var(--psl-red); text-decoration: underline; }

.danger-icon {
    color: var(--psl-red);
    font-size: 26px;
    margin-right: 10px;
    vertical-align: middle;
}

.icon-text {
    display: flex;
    align-items: flex-start;
}

.idea-icon {
    color: var(--psl-blue);
    font-size: 40px;
    margin-right: 10px;
    flex-shrink: 0;
}

/* Closing statement */
.closing-statement {
    display: inline-block;
    background: rgba(168, 211, 175, 0.2);
    color: var(--psl-blue);
    padding: 0.8em 1.8em;
    border-radius: 50px;
    margin: 2em 0 0 0.9em;
}

.closing-statement-help {
    display: inline-block;
    background: rgba(211, 47, 47, 0.1);
    color: var(--psl-blue);
    padding: 0.8em 1.8em;
    border-radius: 50px;
    margin: 2em 0 0 0.9em;
}

/* ============================================================
   LOGO SIZE
   ============================================================ */
.psl-header-logo a img {
    height: 78px;
    width: auto;
    max-width: 260px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.psl-footer { background: #3a3a3a; color: var(--psl-white); font-size: 12px; margin-top: auto; }
.psl-footer a { color: var(--psl-white); text-decoration: underline; font-weight: 400; }
.psl-footer a:hover { color: var(--psl-green); }
.psl-footer-top { padding: clamp(32px, 4vw, 56px) 0 clamp(24px, 3vw, 40px); }
.psl-footer-top-inner { display: flex; align-items: flex-start; justify-content: space-between; gap: clamp(24px, 3vw, 48px); flex-wrap: wrap; }
.psl-footer-col { flex: 1 1 0; min-width: 0; }
.psl-footer-par { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.7; margin: 0 0 10px; }
.psl-footer-logo-col img, .psl-footer-gov-col img, .psl-footer-pnsm-col img { max-height: 70px; width: auto; filter: brightness(0) invert(1); }

.psl-footer-address-col img,
.psl-footer-gov-col img {
    margin: 0 auto;
}

.psl-footer-pnsm-col img {
    margin-left: auto;
    display: block;
}

.psl-footer-logo-col { text-align: left; }
.psl-footer-address-col { text-align: center; }
.psl-footer-gov-col { text-align: center; }
.psl-footer-pnsm-col { text-align: right; }

.psl-footer-address { font-style: normal; line-height: 1.8; color: rgba(255,255,255,0.85); }
.psl-footer-address a { text-decoration: none; }
.psl-footer-legal-links { list-style: none; margin: 16px 0 0; padding: 0; }
.psl-footer-legal-links li { margin-bottom: 4px; }
.psl-footer-legal-links a { font-size: 12px; }
.psl-footer-agrement { font-size: 12px; opacity: 0.75; margin: 12px 0 0; line-height: 1.5; }
.psl-footer-divider hr { border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 0; }
.psl-footer-mid { padding: clamp(20px, 2.5vw, 36px) 0; }
.psl-footer-mid .psl-container { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.psl-footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 4px 0; }
.psl-footer-links li { display: flex; align-items: center; }
.psl-footer-links li:not(:last-child)::after { content: "|"; margin: 0 12px; opacity: 0.5; }
.psl-footer-links a { font-size: 12px; font-weight: 700; letter-spacing: 0.06em; text-decoration: none; color: var(--psl-white); transition: color var(--psl-transition); }
.psl-footer-links a:hover { color: var(--psl-green); }
.psl-social-icons { display: flex; gap: 24px; align-items: center; justify-content: center; }
.psl-social-icons a {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border-radius: 50%;
    text-decoration: none; font-size: 45px;
    transition: background var(--psl-transition), transform var(--psl-transition);
}
.psl-social-icons a:hover { transform: translateY(-2px); }
.psl-footer-bottom { padding: clamp(12px, 1.5vw, 20px) 0; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; }
.psl-footer-bottom .psl-container { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.psl-copyright, .psl-credits { font-size: 12px; opacity: 0.75; margin: 0; color: var(--psl-white); }

.psl-footer .psl-container {
    max-width: var(--psl-content-width);
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
}

/* Footer contact links */
.psl-footer-contact-links ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 0;
}

.psl-footer-contact-links li {
    display: flex;
    align-items: center;
}

.psl-footer-contact-links li:not(:last-child)::after {
    content: "|";
    margin: 0 12px;
    opacity: 0.5;
}

.psl-footer-contact-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-decoration: none;
    color: var(--psl-white);
    transition: color var(--psl-transition);
}

.psl-footer-contact-links a:hover {
    color: var(--psl-green);
}

/* ============================================================
   BEAVER BUILDER
   ============================================================ */
.fl-builder-content,
.fl-builder-content p,
.fl-builder-content li { font-family: var(--psl-font) !important; }
.fl-builder-content h1, .fl-builder-content h2, .fl-builder-content h3,
.fl-builder-content h4, .fl-builder-content h5, .fl-builder-content h6 { font-family: var(--psl-font) !important; font-weight: 800; }
.fl-row-content.fl-row-fixed-width { max-width: var(--psl-content-width) !important; }

/* ============================================================
   HERO VISUAL
   ============================================================ */
.psl-hero { padding: clamp(8px, 1.5vw, 24px) 0; }

.psl-hero-inner {
    display: flex;
    align-items: center;
    background: url('assets/img/hero-section8.svg') no-repeat left top / 100% auto;
    min-height: clamp(200px, 32vw, 480px);
    padding: clamp(24px, 4vw, 56px);
}

.psl-hero-text {
    width: 55%;
}

.hero2026-title {
    margin: 0 0 clamp(8px, 1.5vw, 20px);
    line-height: 1;
}

.hero2026-title .l1 {
    display: block;
    color: var(--psl-blue);
    font-weight: 800;
    font-size: clamp(32px, 5.5vw, 72px);
    letter-spacing: -0.01em;
    line-height: 1.15;
	white-space: nowrap;
}

.hero2026-title .l2 {
    display: block;
    color: var(--psl-green);
    font-weight: 900;
    font-size: clamp(44px, 7.5vw, 90px);
    letter-spacing: -0.02em;
    -webkit-text-stroke: 2px var(--psl-blue);
    white-space: nowrap;
    line-height: 1;
}

.hero2026-sub {
    color: var(--psl-blue);
    font-size: clamp(15px, 2vw, 19px);
    margin: clamp(8px, 1.5vw, 16px) 0 0;
    line-height: 1.5;
}

.hero2026-sub .chip {
    display: inline-block;
    padding: 0.2em 0.6em;
    margin: 0 0.2em;
    background: var(--psl-green);
    color: var(--psl-blue);
    border-radius: 2rem;
    font-weight: 800;
}

/* Hidden by default, shown only on mobile */
.hero2026-submobile {
    display: none;
}

/* ============================================================
   SPECIFIC BOXES AND PAGE ITEMS HOME
   ============================================================ */
h2.centertitel {
    text-align: center;
}

/* === 3 CTA GLASS BOXES on home === */
.click-grid {
    display: flex;
    justify-content: center;
    gap: clamp(1rem, 3vw, 2.5rem);
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Shared glass effect for .click-box and .info-card */
.click-box,
.info-card {
    position: relative;
    z-index: 3;
    background: var(--psl-glass-bg);
    border: var(--psl-glass-border);
    border-radius: var(--psl-glass-radius);
    box-shadow: var(--psl-glass-shadow);
    -webkit-backdrop-filter: blur(22px) saturate(170%);
    backdrop-filter: blur(22px) saturate(170%);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Shared inner gradient border */
.click-box::before,
.info-card::before {
    content: "";
    position: absolute;
    inset: 6px;
    border-radius: 1.15rem;
    border: 3px solid transparent;
    background: linear-gradient(
        150deg,
        rgba(168, 211, 175, 0.9) 0%,
        rgba(230, 228, 235, 0.5) 35%,
        rgba(52, 48, 88, 0.3) 65%,
        rgba(168, 211, 175, 0.7) 100%
    ) border-box;
    -webkit-mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) padding-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.85;
}

/* Shared hover state */
.click-box:hover,
.info-card:hover {
    background: var(--psl-glass-bg-hover);
    border-color: rgba(168, 211, 175, 0.4);
    box-shadow: var(--psl-glass-shadow-hover);
}

.click-box:hover::before,
.info-card:hover::before {
    opacity: 1;
}

/* Click-box specific */
.click-box {
    flex: 1 1 220px;
    text-align: center;
    padding: clamp(1.5rem, 3vw, 3rem);
    cursor: pointer;
}

.click-box:hover {
    transform: translateY(-8px) scale(1.01);
}

.click-box h2 {
    font-size: clamp(1rem, 0.5vw + 1rem, 1.5rem);
    font-weight: 700;
    color: var(--psl-blue);
    margin: 0 0 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 0.2rem solid var(--psl-green);
    display: inline-block;
}

.click-box span {
    display: block;
    font-size: clamp(1.0rem, 0.6vw + 1rem, 1.0rem);
    color: var(--psl-blue);
    font-weight: 500;
}

/* Info-card specific */
.info-card {
    padding: clamp(1.5rem, 3vw, 2.5rem);
}

.info-card:hover {
    /*transform: translateY(-8px) scale(1.005); BLUR ISSUE IN FIREFOX*/
}

.info-card h3 {
    color: var(--psl-blue);
    font-weight: 700;
    font-size: clamp(1.125rem, 0.8vw + 1rem, 1.5rem);
    line-height: 1.2;
    margin: 0 0 1.5rem;
    display: inline-block;
    padding-bottom: 0.4rem;
    border-bottom: 0.25rem solid var(--psl-green);
}

.info-card .lead {
    color: var(--psl-blue);
    font-size: clamp(0.95rem, 0.35vw + 0.9rem, 1.125rem);
    margin: 0.25rem 0 0.75rem;
}

.note {
    margin-top: 0.5rem;
    color: var(--psl-blue);
    opacity: 0.85;
    font-size: clamp(0.9rem, 0.3vw + 0.85rem, 1.0625rem);
    font-weight: bold;
}

/* Right flower deco on home */
.flower {
    position: relative;
    overflow: hidden;
}

.flower:after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -50px;
    width: 450px;
    height: 450px;
    background-image: url('/wp-content/themes/prevention-suicide-2026/assets/img/flowerbkg.webp');
    background-size: contain;
    background-position: center right;
    background-repeat: no-repeat;
    border-radius: 0%;
    z-index: 1;
}

.flower .fl-col-group {
    position: relative;
    z-index: 2;
}

/* === ANIMATED BRAND GRADIENT WITH FLOWERS === */
.ps-section .fl-row-content-wrap {
    position: relative;
    z-index: 0;
    overflow: hidden;
}

.ps-section .fl-row-content {
    position: relative;
    z-index: 2;
}

.ps-section .fl-row-content-wrap::before {
    content: "";
    position: absolute;
    inset: -30%;
    z-index: 1;
    opacity: 0.85;
    filter: blur(40px) saturate(1.5);
    background:
        radial-gradient(circle, var(--psl-green) 0%, transparent 50%),
        radial-gradient(circle, var(--psl-blue) 0%, transparent 55%),
        radial-gradient(circle, var(--psl-grey) 0%, transparent 45%);
    background-size: 60% 60%, 65% 65%, 55% 55%;
    background-repeat: no-repeat;
    background-position: 0% 0%, 100% 0%, 50% 100%;
    animation: moveGradient 16s ease-in-out infinite;
    will-change: transform;
}

.ps-section .fl-row-content-wrap::after {
    content: "";
    position: absolute;
    inset: -25%;
    z-index: 1;
    opacity: 0.6;
    filter: blur(35px);
    background:
        radial-gradient(circle, rgba(168, 211, 175, 0.6) 0%, transparent 50%),
        radial-gradient(circle, rgba(52, 48, 88, 0.5) 0%, transparent 50%);
    background-size: 50% 50%, 55% 55%;
    background-repeat: no-repeat;
    background-position: 80% 20%, 20% 80%;
    animation: moveGradient2 20s ease-in-out infinite reverse;
    will-change: transform;
}

@keyframes moveGradient {
    0%, 100% { transform: translate(0%, 0%) scale(1) rotate(0deg); }
    33%       { transform: translate(15%, 10%) scale(1.1) rotate(5deg); }
    66%       { transform: translate(-10%, 15%) scale(1.15) rotate(-3deg); }
}

@keyframes moveGradient2 {
    0%, 100% { transform: translate(0%, 0%) scale(1); }
    50%       { transform: translate(-20%, 20%) scale(1.2); }
}

/* === INFO GRID === */
.info-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 2.5rem);
    margin-block: clamp(2rem, 4vw, 3rem);
}

.info-grid::before {
    content: "";
    position: absolute;
    bottom: -30%;
    right: -20%;
    width: 60%;
    aspect-ratio: 1;
    z-index: 0;
    opacity: 0.2;
    background: url('/wp-content/themes/prevention-suicide-2026/assets/img/flowers2.svg') center / contain no-repeat;
    pointer-events: none;
    animation: floatFlowers 5s ease-in-out infinite;
}

@keyframes floatFlowers {
    0%, 100% { transform: translateY(0%) rotate(0deg); opacity: 0.2; }
    50%       { transform: translateY(-5%) rotate(3deg); opacity: 0.3; }
}

/* ============================================================
   INTERACTIVE ELEMENTS - Pills, Links, Chips
   ============================================================ */

/* Remove bullets for .links and .chips lists */
ul.links,
ul.chips {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

ul.links li,
ul.chips li {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

ul.links li::before,
ul.chips li::before {
    content: none !important;
    display: none !important;
}

/* .links stacks vertically, stretches full width */
ul.links {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
}

/* .chips uses 2-column grid */
ul.chips {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.6rem !important;
}

/* Base shared styles for pill/chip/link */
.pill,
.chips a,
.links a {
    display: inline-block;
    border: 5px solid var(--psl-green);
    color: var(--psl-blue) !important;
    background: rgba(230, 228, 235, 0.3);
    backdrop-filter: blur(8px);
    text-decoration: none !important;
    font-weight: 600;
    font-size: clamp(16px, 1.5vw, 20px);
    transition: all var(--psl-transition);
    position: relative;
    z-index: 1;
}

.pill {
    border-radius: 999px;
    padding: 0.7rem 1.2rem;
    margin-bottom: 0.75rem;
}

.chips a {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    text-align: center !important;
    border-radius: 999px;
    padding: 0.6rem 0.5rem !important;
    font-size: clamp(13px, 3.5vw, 16px) !important;
    margin-bottom: 0 !important;
}

.links a {
    display: block !important;
    width: 100% !important;
    border: 1px solid var(--psl-green);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem 0.75rem 4rem;
    margin-bottom: 0.75rem;
    text-align: left !important;
    box-sizing: border-box;
}

/* Unified hover state */
.pill:hover,
.chips a:hover,
.links a:hover {
    background: rgba(168, 211, 175, 0.25) !important;
    border-color: var(--psl-green) !important;
    color: var(--psl-blue) !important;
    /*transform: translateY(-2px) !important;*/
    text-decoration: none !important;
}

/* Click-grid link overrides */
.click-grid a.click-box {
    text-decoration: none !important;
}

.click-grid a.click-box h3 {
    text-decoration: none !important;
    border-bottom: none !important;
}

.click-grid a.click-box span {
    text-decoration: underline !important;
    text-underline-offset: 3px;
}

/* Font Awesome hooks */
.pill::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    content: "\f46c";
    font-size: 1.2em;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.links a[data-fa]::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    content: attr(data-fa);
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.3em;
    color: var(--psl-blue);
    z-index: 10;
}

.chips a[data-fa]::before {
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    content: attr(data-fa);
    position: static !important;
    transform: none !important;
    display: inline-block !important;
    margin-right: 0.4rem !important;
    vertical-align: middle !important;
    font-size: 1em !important;
    color: var(--psl-blue);
}

/* ============================================================
   HELP MENU (Beaver Builder node)
   ============================================================ */
.fl-node-57bqcae9o3z6 .fl-menu .menu,
.fl-node-57bqcae9o3z6 .fl-menu .menu > li {
    border-radius: 32px;
    padding: 0px 10px;
}

.fl-node-57bqcae9o3z6 .fl-menu .menu > li a {
    font-weight: 700;
    font-size: 16px;
}

#sub-menu-1347 a {
    color: white;
    font-weight: 600 !important;
    text-align: center;
}

li#menu-item-1339 > a::before,
li#menu-item-1341 > a::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    content: "\f095";
    margin-right: 8px;
}

#menu-item-1347 > a {
    background: var(--psl-red) !important;
    color: var(--psl-white) !important;
    border-radius: 32px !important;
    box-shadow: 0 4px 10px rgba(52, 48, 88, 0.2) !important;
    transition: all var(--psl-transition) !important;
    border: none !important;
    padding: 12px 24px !important;
    display: inline-block !important;
    text-decoration: none !important;
}

#menu-item-1347 > a:hover {
    background: var(--psl-red-dark) !important;
    color: var(--psl-white) !important;
    transform: translateY(-2px) !important;
}

#menu-item-1347 {
    position: relative !important;
}

#menu-item-1347::after {
    content: "" !important;
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    right: 0 !important;
    height: 10px !important;
    background: transparent !important;
}

#sub-menu-1347 {
    background: var(--psl-red) !important;
    border-radius: 32px !important;
    padding: 12px 0 !important;
    box-shadow: 0 4px 10px rgba(52, 48, 88, 0.2) !important;
    margin-top: 2px !important;
    border: none !important;
    min-width: 100% !important;
    width: max-content !important;
}

#sub-menu-1347 li a {
    background: transparent !important;
    color: var(--psl-white) !important;
    padding: 10px 24px !important;
    text-decoration: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    transition: border-bottom var(--psl-transition) !important;
    border-bottom: 2px solid transparent !important;
    display: block !important;
    transform: none !important;
    white-space: nowrap !important;
}

#sub-menu-1347 li:first-child a {
    border-radius: 32px 32px 0 0 !important;
}

#sub-menu-1347 li:last-child a {
    border-radius: 0 0 32px 32px !important;
}

#sub-menu-1347 li:not(:last-child) a:hover {
    background: transparent !important;
    border-bottom: 2px solid var(--psl-white) !important;
    color: var(--psl-white) !important;
}

#sub-menu-1347 li:last-child a:hover {
    background: transparent !important;
    border-bottom: 2px solid transparent !important;
    color: var(--psl-white) !important;
}

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
    .ps-section .fl-row-content-wrap::before,
    .ps-section .fl-row-content-wrap::after,
    .info-grid::before {
        animation: none;
    }
    .click-box,
    .info-card {
        transition: none;
    }
    .click-box:hover,
    .info-card:hover {
       transform: translateY(-4px);
    }
}


/* ============================================================
   CONTENT PAGES - psl-content components
   Prevention Suicide Luxembourg - Child Theme
   Shared stylesheet for all inner content pages.

   DEPENDS ON: :root variables, base typography,
   .button.help, .danger-evaluation-box (all above)

   NAMESPACE: .psl-
   BREAKPOINT: 1300px for multi-column to single-column
   ============================================================ */

/* Page wrapper */
.psl-content {
    max-width: var(--psl-content-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Intro block */
.psl-content__intro {
    padding-bottom: 2rem;
}

/* Label chip */
.psl-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-family: var(--psl-font);
    font-weight: 700;
    font-size: 0.72em;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 100px;
    padding: 0.3em 0.9em;
    width: fit-content;
}
.psl-chip--green {
    color: var(--psl-green);
    border: 1.5px solid var(--psl-green);
}
.psl-chip--red {
    background: var(--psl-red);
    color: var(--psl-white);
}

/* Numbered step */
.psl-step {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 0 2.5rem;
    padding: 2.5rem 0;
    border-top: 1px solid var(--psl-grey);
    align-items: start;
}

.psl-step__num {
    display: block;
    font-family: var(--psl-font);
    font-weight: 800;
    font-size: clamp(56px, 6vw, 80px);
    line-height: 1;
    color: var(--psl-green);
    letter-spacing: -0.03em;
}
.psl-step__num--red {
    color: var(--psl-red);
    opacity: 0.35;
}

.psl-step__title {
    margin-bottom: 1.5rem;
}

/* No border variant + full-width layout */
.psl-step--no-border {
    border-top: none;
    grid-template-columns: 1fr;
    padding: 0 0 1.5rem 0;
}

.psl-step__icon {
    font-size: clamp(32px, 5vw, 84px);
    color: var(--psl-green);
    display: block;
    text-align: center;
    padding-top: 0.5rem;
}

/* Bullet list (for use outside .psl-main) */
.psl-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.psl-list li {
    position: relative;
    padding-left: 2em !important;
    margin-bottom: 0.5em !important;
    line-height: 1.6;
}
.psl-list li::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: 0.6em !important;
    width: 0.6em !important;
    height: 0.6em !important;
    border-radius: 50% !important;
    background: var(--psl-green) !important;
}
/* Red variant */
.psl-list--red li::before {
    background: var(--psl-red) !important;
    opacity: 0.5 !important;
}

/* Alert panel */
.psl-alert {
    background: var(--psl-blue);
    border-radius: var(--psl-glass-radius);
    margin: 1rem 0 4rem;
    display: grid;
    grid-template-columns: 1fr 220px;
    align-items: stretch;
    overflow: hidden;
}
.psl-alert__content {
    padding: 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}
.psl-alert__title {
    margin-bottom: 0;
    color: var(--psl-white) !important;
    line-height: 1.2;
}
.psl-alert__lead {
    font-weight: 700;
    color: var(--psl-white);
    margin-bottom: 0.3rem;
}
.psl-alert__content p {
    color: rgba(255, 255, 255, 0.78);
    margin-bottom: 0.35rem;
}
.psl-alert a {
    color: var(--psl-white) !important;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.psl-alert a:hover {
    color: var(--psl-white) !important;
    text-decoration-color: var(--psl-green);
}
.psl-alert__foot {
    font-size: 0.85em;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 0;
}
.psl-alert__visual {
    background: rgba(255, 255, 255, 0.04);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}
.psl-alert__visual svg {
    width: 120px;
    height: 120px;
    opacity: 0.18;
    color: var(--psl-white);
    position: relative;
    z-index: 1;
}
.psl-alert__visual::before {
    content: "";
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle at 60% 50%, rgba(211, 47, 47, 0.25) 0%, transparent 65%);
    pointer-events: none;
}

.psl-alert .psl-list li::before {
    background: rgba(255, 255, 255, 0.5) !important;
}
.psl-alert .psl-list li {
    color: rgba(255, 255, 255, 0.78);
}

/* Two-column layout */
.psl-duo {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 0 4rem;
    align-items: start;
}

/* Hotline / resource cards */
.psl-hotlines {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.psl-hotline {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.85rem 1.1rem;
    border-radius: 10px;
    background: rgba(168, 211, 175, 0.12);
    border: 1px solid rgba(168, 211, 175, 0.4);
    text-decoration: none !important;
    transition: all var(--psl-transition);
    flex-wrap: wrap;
}
.psl-hotline:hover {
    background: rgba(168, 211, 175, 0.25) !important;
    border-color: var(--psl-green) !important;
    color: var(--psl-blue-dark) !important;
    transform: translateX(4px);
    text-decoration: none !important;
}
.psl-hotline__name {
    font-size: 0.88em;
    color: var(--psl-blue);
    font-weight: 600 !important;
}
.psl-hotline__number {
    font-weight: 800 !important;
    font-size: 1.05em;
    color: var(--psl-blue);
    white-space: nowrap;
}

/* Hotline white variant (inside dark panels) */
.psl-hotline--white {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(255, 255, 255, 0.3) !important;
}
.psl-hotline--white:hover {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.6) !important;
}
.psl-hotline--white .psl-hotline__name,
.psl-hotline--white .psl-hotline__number {
    color: var(--psl-white) !important;
}

/* Hotline emergency variant */
.psl-hotline--emergency {
    background: rgba(211, 47, 47, 0.06) !important;
    border-color: rgba(211, 47, 47, 0.3) !important;
}
.psl-hotline--emergency:hover {
    background: rgba(211, 47, 47, 0.12) !important;
    border-color: var(--psl-red) !important;
}
.psl-hotline--emergency .psl-hotline__name,
.psl-hotline--emergency .psl-hotline__number {
    color: var(--psl-red) !important;
}
.psl-hotline--emergency .psl-hotline__number {
    font-size: 1.2em;
}

/* Feature block */
.psl-feature {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    border-radius: var(--psl-glass-radius);
    overflow: hidden;
    margin: 3rem 0 5rem 0;
    box-shadow:
        0 16px 48px rgba(52, 48, 88, 0.14),
        0 6px 20px rgba(52, 48, 88, 0.08);
}
.psl-feature__photo {
    overflow: hidden;
    min-height: 500px;
    max-height: 500px;
}
.psl-feature__photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: transform 0.7s ease;
}
.psl-feature:hover .psl-feature__photo img {
    transform: scale(1.05);
}
.psl-feature__body {
    background: var(--psl-blue);
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
}
.psl-feature__title {
    color: var(--psl-white) !important;
    margin-bottom: 0;
    line-height: 1.2;
}
.psl-feature__title em {
    font-style: italic;
    color: var(--psl-green);
}
.psl-feature__body p {
    color: rgba(255, 255, 255, 0.68);
    font-size: 0.95em;
    line-height: 1.65;
    margin-bottom: 0;
}
.psl-feature__badges {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    align-items: center;
}
.psl-feature__badge {
    display: inline-flex;
    text-decoration: none !important;
}
.psl-feature__badge img {
    height: 38px;
    width: auto;
    display: block;
}

/* CTA banner */
.psl-cta-banner {
    margin: 2rem 0 3rem;
    padding: 4rem 3rem;
    background: linear-gradient(
        135deg,
        rgba(168, 211, 175, 0.35) 0%,
        rgba(168, 211, 175, 0.12) 50%,
        rgba(52, 48, 88, 0.06) 100%
    );
    border-radius: var(--psl-glass-radius);
    border: 1px solid rgba(168, 211, 175, 0.5);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative watermark text */
/*.psl-cta-banner::before {
    content: "HELP";
    position: absolute;
    right: 3rem;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--psl-font);
    font-weight: 800;
    font-size: clamp(60px, 8vw, 110px);
    color: var(--psl-red);
    opacity: 0.06;
    line-height: 1;
    pointer-events: none;
    letter-spacing: -0.03em;
}
*/

.psl-cta-banner__text {
    font-size: 1.15em;
    font-weight: 700;
    color: var(--psl-blue);
    margin-bottom: 1.25rem;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}
.psl-cta-banner__sub {
    font-size: 1em;
    color: var(--psl-blue);
    margin-bottom: 0;
    position: relative;
}
 

/* CTA banner: override help button to green with blue text */
.psl-cta-banner .button.help {
    background: var(--psl-green) !important;
    color: var(--psl-blue) !important;
    box-shadow: 0 4px 12px rgba(168, 211, 175, 0.4);
}

.psl-cta-banner .button.help:hover {
    background: var(--psl-green-dark) !important;
    color: var(--psl-blue) !important;
    box-shadow: 0 6px 16px rgba(168, 211, 175, 0.5);
}

/* ============================================================
   FIRST AID TRAINING SESSIONS
   ============================================================ */

/* Sessions wrapper */
.first-aid-sessions {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
    margin-top: 24px;
}

/* Individual session: grid layout */
.first-aid-session {
    display: grid !important;
    grid-template-columns: 120px 1fr !important;
    gap: 0 2.5rem !important;
    padding: 2.5rem 0 !important;
    border: none !important;
    border-top: 1px solid var(--psl-grey) !important;
    background: transparent !important;
    align-items: start !important;
    position: relative;
}

.first-aid-session::before {
    display: none !important;
}

.first-aid-session:last-child {
    border-bottom: 1px solid var(--psl-grey) !important;
}

/* Left column: date & time */
.first-aid-date-col {
    grid-column: 1 !important;
    grid-row: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
}

/* Right column: details */
.first-aid-details-col {
    grid-column: 2 !important;
    grid-row: 1 !important;
    min-width: 0;
}

/* Body: info left + button right */
.first-aid-body {
    display: flex;
    align-items: flex-start;
    gap: 40px;
}

.first-aid-body-left {
    min-width: 0;
}

.first-aid-body-right {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 4px;
}

/* Modules / Date-time */
.first-aid-module {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.first-aid-module-date {
    font-family: var(--psl-font);
    font-weight: 800;
    font-size: 16px;
    line-height: 1.2;
    color: var(--psl-blue);
    letter-spacing: -0.01em;
}

.first-aid-module-time {
    font-family: var(--psl-font);
    font-weight: 600;
    font-size: 16px;
    line-height: 1.3;
    color: var(--psl-blue-dark);
    opacity: 0.6;
}

/* Separator between multiple modules */
.first-aid-module + .first-aid-module {
    padding-top: 10px;
    border-top: 1px solid var(--psl-grey);
}

/* Session title (h3) */
.first-aid-session .first-aid-title {
    font-family: var(--psl-font);
    font-size: clamp(18px, 1.8vw, 22px);
    font-weight: 700;
    color: var(--psl-blue);
    margin: -2px 0 12px;
    padding: 0;
}

/* Info row: language + type */
.first-aid-info {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 16px;
    margin-bottom: 12px;
}

.first-aid-info-left,
.first-aid-info-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px 8px;
}

.first-aid-info-left strong,
.first-aid-info-right strong {
    font-size: 14px;
    color: var(--psl-blue-dark);
}

/* Separator between left and right info */
.first-aid-info-left + .first-aid-info-right::before {
    content: "|";
    margin-right: 8px;
    opacity: 0.35;
    font-size: 14px;
}

/* Language block */
.first-aid-language {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 18px;
}

.first-aid-language strong {
    margin-right: 2px;
}

.first-aid-language img {
    vertical-align: middle;
}

/* Address / Lieu */
.first-aid-address {
    font-size: 14px !important;
    color: var(--psl-blue-dark);
    margin-bottom: 0;
}

.first-aid-address strong {
    font-size: 14px;
}

.first-aid-address a {
    color: var(--psl-blue);
    font-size: 0.85rem;
    text-decoration: underline;
    transition: color var(--psl-transition);
}

.first-aid-address a:hover {
    color: var(--psl-green-dark);
}

/* Room */
.first-aid-room {
    font-size: 14px !important;
    color: var(--psl-blue-dark);
    margin-bottom: 0;
}

/* S'inscrire button */
.first-aid-register-button {
    display: inline-block;
    background: var(--psl-green);
    color: var(--psl-blue) !important;
    font-family: var(--psl-font);
    font-size: 14px;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: all var(--psl-transition);
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.first-aid-register-button:hover {
    background: var(--psl-green-dark);
    color: var(--psl-blue) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Full session status */
.first-aid-status-full {
    display: inline-block;
    font-family: var(--psl-font);
    font-size: 14px;
    font-weight: 700;
    color: var(--psl-red);
    padding: 10px 0;
}

/* Unavailable / full sessions */
.first-aid-session.first-aid-full {
    opacity: 0.55;
}

.first-aid-session.first-aid-full .first-aid-module-date,
.first-aid-session.first-aid-full .first-aid-module-time {
    color: var(--psl-grey);
}

/* ============================================================
   SUBMENU ACTIVE ITEMS
   ============================================================ */
.sub-menu li.current-menu-item > a.menu-link,
.sub-menu li.current_page_item > a.menu-link {
    background: rgba(168, 211, 175, 0.25);
    color: var(--psl-blue-dark) !important;
    font-weight: 700;
}

/* ============================================================
   MOBILE MENU STYLING
   ============================================================ */
.ps-section .fl-row-content-wrap {
    position: relative;
    z-index: 0;
    overflow: hidden;
    isolation: isolate;
}

#psl-mobile-menu {
    z-index: 99999 !important;
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow-y: auto;
}

.psl-mobile-nav .psl-mobile-menu-list li {
    line-height: 1.3;
}
.psl-mobile-nav .psl-mobile-menu-list li a {
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Top-level items in green */
.psl-mobile-nav .psl-mobile-menu-list > li > a {
    color: var(--psl-green-dark) !important;
    font-weight: 700;
    font-size: 18px;
}
.psl-mobile-nav .psl-mobile-menu-list > li > a:hover {
    color: var(--psl-blue) !important;
}

/* Sub-menu items in dark blue */
.psl-mobile-nav .psl-mobile-menu-list > li .sub-menu a,
.psl-mobile-nav .psl-mobile-menu-list .sub-menu li a {
    color: var(--psl-blue-dark) !important;
    font-weight: 400;
    font-size: 15px;
}
.psl-mobile-nav .psl-mobile-menu-list > li .sub-menu a:hover,
.psl-mobile-nav .psl-mobile-menu-list .sub-menu li a:hover {
    color: var(--psl-green-dark) !important;
}

.psl-mobile-nav .psl-mobile-menu-list > li.current-menu-item > a,
.psl-mobile-nav .psl-mobile-menu-list > li.current_page_item > a,
.psl-mobile-nav .psl-mobile-menu-list > li > a.active {
    color: var(--psl-blue-dark) !important;
}

.psl-mobile-nav .psl-mobile-menu-list .sub-menu li a.active,
.psl-mobile-nav .psl-mobile-menu-list .sub-menu li.current-menu-item > a,
.psl-mobile-nav .psl-mobile-menu-list .sub-menu li.current_page_item > a {
    color: var(--psl-blue-dark) !important;
    font-weight: 700;
}

/* ============================================================
   AUTO EVALUATION
   ============================================================ */
.psl-eval {
    border: 1px solid var(--psl-grey);
    border-radius: var(--psl-glass-radius);
    padding: 3rem;
    margin: 0;
}
.psl-eval__lead {
    margin-bottom: 1.5rem;
}
.psl-eval__group {
    margin-bottom: 2rem;
}
.psl-eval__group + .psl-eval__group {
    border-top: 1px solid var(--psl-grey);
    padding-top: 2rem;
}
.psl-eval__item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.55rem 0;
    cursor: pointer;
}
.psl-eval__item span {
    font-size: 0.97em;
    line-height: 1.5;
}
.psl-eval__item input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 2px solid var(--psl-grey);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.15s ease;
    position: relative;
}
.psl-eval__item input[type="checkbox"]:checked {
    background: var(--psl-green);
    border-color: var(--psl-green);
}
.psl-eval__item input[type="checkbox"]:checked::after {
    content: "";
    position: absolute;
    left: 4px;
    top: 1px;
    width: 8px;
    height: 12px;
    border: 2px solid white;
    border-top: none;
    border-left: none;
    transform: rotate(45deg);
}
.psl-eval__result {
    display: none;
    margin-top: 2.5rem;
    padding: 2rem 2.5rem;
    background: linear-gradient(135deg, rgba(168, 211, 175, 0.25) 0%, rgba(168, 211, 175, 0.08) 100%);
    border: 1px solid rgba(168, 211, 175, 0.5);
    border-radius: 1rem;
}
.psl-eval__result.is-visible {
    display: block;
}

/* ============================================================
   DOCUMENT DOWNLOAD LIST
   ============================================================ */
.psl-docs {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}
.psl-doc {
    display: flex !important;
    align-items: center;
    gap: 1.25rem;
    padding: 0.85rem 1.1rem;
    border-radius: 10px;
    background: rgba(168, 211, 175, 0.12);
    border: 1px solid rgba(168, 211, 175, 0.4);
    text-decoration: none !important;
    transition: all var(--psl-transition);
    flex-wrap: wrap;
}
.psl-doc:hover {
    background: rgba(168, 211, 175, 0.25) !important;
    border-color: var(--psl-green) !important;
    transform: scale(1.01);
}
.psl-doc--placeholder {
    opacity: 0.45;
    pointer-events: none;
    border-style: dashed;
}
.psl-doc__icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(168, 211, 175, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--psl-blue);
}
.psl-doc__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}
.psl-doc__title {
    font-weight: 700;
    color: var(--psl-blue);
    font-size: 0.88em;
}
.psl-doc__meta {
    font-size: 0.78em;
    color: var(--psl-blue);
    opacity: 0.55;
}
.psl-doc__download {
    font-weight: 700;
    font-size: 0.88em;
    color: var(--psl-blue);
    white-space: nowrap;
}

/* ── Coming soon ──────────────────────────────────────────── */
.psl-coming-soon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
    border: 1px dashed var(--psl-grey);
    border-radius: 1.5rem;
    gap: 1rem;
    color: var(--psl-blue);
}
.psl-coming-soon svg {
    opacity: 0.35;
    color: var(--psl-blue);
}
.psl-coming-soon h2 {
    margin-bottom: 0;
}
.psl-coming-soon p {
    max-width: 480px;
    margin-bottom: 0;
    opacity: 0.75;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* adjust de menu in width */
@media (min-width: 1024px) and (max-width: 1147px) {
    :lang(de) .psl-menu-list > li > a {
        padding: 0.5em 0.3em;
		font-size: 14px;
    }
}

@media (max-width: 768px) {
.psl-eval__result { display: none; padding: 1rem 1.5rem;}
}


/* CTA banner text */
@media (max-width: 768px) {
	.psl-cta-banner__text {
    font-size: 0.8em;
}
	.psl-cta-banner {
    padding: 4rem 1rem;
}
}	

@media (max-width: 600px) {
    .psl-doc__action { width: 100%; }
    .psl-doc__download { display: block; margin-top: -0.5rem; }
}

/* --- 1300px: multi-column to single-column --- */
@media (max-width: 1300px) {

    /* Alert: hide decorative column, full-width content */
    .psl-alert {
        grid-template-columns: 1fr;
    }
    .psl-alert__visual {
        display: none;
    }
    .psl-alert__content {
        padding: 2.5rem;
    }

    /* Duo: stack columns */
    .psl-duo {
        grid-template-columns: 1fr !important;
    }

    /* Steps: number moves above content */
    .psl-step {
        grid-template-columns: 1fr;
        padding-top: 2.5rem;
    }
    .psl-step__num {
        font-size: clamp(56px, 14vw, 80px);
        margin-bottom: 0;
    }

    /* Feature block: stack photo above body */
    .psl-feature {
        grid-template-columns: 1fr !important;
    }
}

/* --- 912px: hero title scaling --- */
@media (max-width: 912px) {
    .hero2026-title .l1 { font-size: clamp(22px, 4vw, 48px); }
    .hero2026-title .l2 { font-size: clamp(32px, 6.5vw, 72px); }
}

/* --- 800px: info grid stacks --- */
@media (max-width: 800px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}

/* --- 768px: consolidated mobile breakpoint --- */
@media (max-width: 768px) {

    /* Logo */
    .psl-header-logo a img {
        height: 50px;
        max-width: 170px;
    }

    /* Hero */
    .hero2026-title .l2 { white-space: normal; }
    .hero2026-sub { font-size: clamp(13px, 1.8vw, 16px); }

    /* Footer */
    .psl-footer-top-inner { flex-direction: column; gap: 28px; align-items: center; }
    .psl-footer-col { flex: 1 1 100%; display: flex; flex-direction: column; align-items: center; text-align: center !important; }
    .psl-footer-links { flex-direction: column; align-items: center; gap: 8px; }
    .psl-footer-logo-col img,
    .psl-footer-address-col img,
    .psl-footer-gov-col img,
    .psl-footer-pnsm-col img { width: 160px !important; height: auto !important; display: block !important; margin: 0 auto !important; }

    /* First aid sessions */
    .first-aid-sessions {
        max-width: 100%;
    }
    .first-aid-session {
        grid-template-columns: 1fr !important;
        gap: 12px 0 !important;
    }
    .first-aid-date-col {
        grid-column: 1 !important;
        grid-row: auto !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 8px 16px;
    }
    .first-aid-details-col {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
    .first-aid-body {
        flex-direction: column;
        gap: 16px;
    }
    .first-aid-module + .first-aid-module {
        padding-top: 0;
        border-top: none;
        padding-left: 16px;
        border-left: 1px solid var(--psl-grey);
    }
    .first-aid-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
    .first-aid-info-left + .first-aid-info-right::before {
        display: none;
    }

    /* Auto evaluation */
    .psl-eval { padding: 1.5rem 1rem; }
}

/* --- 767px: footer contact links stack --- */
@media (max-width: 767px) {
    .psl-footer-contact-links ul {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .psl-footer-contact-links li {
        text-align: center;
    }
    .psl-footer-contact-links li:not(:last-child)::after {
        display: none;
    }
}

/* --- 600px: hero mobile swap --- */
@media (max-width: 600px) {
    .hero2026-sub {
        display: none;
    }
    .hero2026-submobile {
        display: block;
        text-align: center;
        margin: 0 15px !important;
        padding: 0 15px !important;
    }
    .hero2026-submobile .chip {
        display: inline-block;
        padding: 0.2em 0.6em;
        margin: 0 0.2em;
        background: var(--psl-green);
        color: var(--psl-blue);
        border-radius: 2rem;
        font-weight: 800;
        font-size: 14px;
    }
}

/* --- 580px: submobile margin adjustment --- */
@media (max-width: 580px) {
    .hero2026-submobile {
        margin: -30px 15px 20px 15px !important;
    }
}

/* --- 550px: hero text bottom padding --- */
@media (max-width: 550px) {
    .psl-hero-text { padding-bottom: 50px; }
}

/* --- 500px: social icons compact --- */
@media (max-width: 500px) {
    .psl-social-icons {
        gap: 10px;
    }
    .psl-social-icons a {
        font-size: 30px;
    }
}

/* --- 480px: hero stacks vertically --- */
@media (max-width: 480px) {
    .psl-hero-inner {
        flex-direction: column;
        align-items: flex-start;
        background-position: left top;
        background-size: 100% auto;
        min-height: 0;
        padding-top: 8vw;
    }
    .psl-hero-text { width: 100%; }
    .hero2026-title .l1 { font-size: clamp(22px, 6vw, 32px); }
    .hero2026-title .l2 { font-size: clamp(24px, 6vw, 40px); white-space: normal; }
}

/* --- 365px: smallest hero --- */
@media (max-width: 365px) {
    .psl-hero-text { width: 100%; }
    .hero2026-title .l1 { font-size: clamp(18px, 5vw, 28px); }
    .hero2026-title .l2 { font-size: clamp(20px, 6vw, 36px); white-space: normal; }
}

/* ============================================================
   STRUCTURAL LAYOUT (header, nav, dropdowns, mobile, responsive)
   Merged from parent theme
   ============================================================ */


/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }

/* ============================================================
   ACCESSIBILITY
   ============================================================ */
.screen-reader-text, .psl-skip-link {
    clip: rect(1px, 1px, 1px, 1px);
    height: 1px;
    overflow: hidden;
    position: absolute;
    width: 1px;
}
.psl-skip-link:focus {
    clip: auto; height: auto; left: 8px; top: 8px; width: auto;
    z-index: 10000;
    background: var(--psl-blue);
    color: var(--psl-white);
    padding: 0.5em 1em;
    text-decoration: none;
    border-radius: 4px;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.psl-container {
    max-width: var(--psl-content-width);
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
}
.psl-page { display: flex; flex-direction: column; min-height: 100vh; }
.psl-main { flex: 1; }

/* ============================================================
   HEADER
   ============================================================ */
.psl-header {
    background: var(--psl-white);
}

.psl-header-sticky {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--psl-white);
}

/* Sticky nav wrapper (topbar + mainbar only, excludes hero) */
.psl-header-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--psl-white);
}

/* ── TOP BAR: red button + flags ── */
.psl-header-topbar {
    background: var(--psl-white);
    border-bottom: 1px solid rgba(52, 48, 88, 0.06);
}

.psl-header-topbar-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    padding: 8px 0;
}

/* ── MAIN BAR: logo + nav ── */
.psl-header-top {
    background: var(--psl-white);
}

.psl-header-inner {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 12px 0;
}

/* Logo */
.psl-header-logo { flex-shrink: 0; margin: 10px 0 0 0; }
.psl-header-logo a { text-decoration: none; display: block; }
.psl-header-logo img { width: auto; display: block; }

/* Main navigation */
/* Main navigation */
.psl-nav-main { flex: 1; display: flex; justify-content: flex-end; }
.psl-menu-list { list-style: none; margin: 0; padding: 0; display: flex; gap: 0; align-items: center; white-space: nowrap; }
.psl-menu-list > li { position: relative; }
.psl-menu-list > li > a {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    padding: 0.5em 0.8em;
    font-size: clamp(14px, 1.1vw, 18px);
    font-weight: 600;
    color: var(--psl-blue);
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    transition: color var(--psl-transition);
}
.psl-menu-list > li > a::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0.9em; right: 0.9em;
    height: 3px;
    background: var(--psl-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}
.psl-menu-list > li > a:hover::after,
.psl-menu-list > li:hover > a::after,
.psl-menu-list > li.current-menu-item > a::after,
.psl-menu-list > li.current-menu-ancestor > a::after { transform: scaleX(1); }
.menu-arrow { font-size: 0.7em; transition: transform var(--psl-transition); pointer-events: none; }
.psl-menu-list > li:hover > a .menu-arrow,
.psl-menu-list > li.is-open > a .menu-arrow { transform: rotate(-180deg); }

/* Dropdown */
.psl-menu-list .sub-menu {
    position: absolute;
    top: 100%; left: 0;
    min-width: 220px;
    background: var(--psl-white);
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(52, 48, 88, 0.15);
    border: 1px solid rgba(168, 211, 175, 0.3);
    list-style: none;
    padding: 8px 0; margin: 0;
    opacity: 0; pointer-events: none;
    transform: translateY(-8px);
    transition: opacity var(--psl-transition), transform var(--psl-transition);
    z-index: 200;
}
.psl-menu-list > li:hover > .sub-menu,
.psl-menu-list > li:focus-within > .sub-menu,
.psl-menu-list > li.is-open > .sub-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.psl-menu-list .sub-menu li a {
    display: block; padding: 10px 20px;
    font-size: 15px; font-weight: 600;
    color: var(--psl-blue); text-decoration: none;
    white-space: normal;
    transition: background var(--psl-transition);
}
.psl-menu-list .sub-menu li a:hover { background: rgba(168, 211, 175, 0.15); }

/* Active sub-menu item */
.sub-menu li.current-menu-item > a.menu-link,
.sub-menu li.current_page_item > a.menu-link {
    background: rgba(168, 211, 175, 0.25);
    color: var(--psl-blue-dark) !important;
    font-weight: 700;
}

/* Prevent right-edge dropdowns from overflowing viewport */
.psl-menu-list > li > .sub-menu {
    left: auto;
    right: 0;
}

/* Help button */
.psl-help-nav { position: relative; }
.psl-help-menu { list-style: none; margin: 0; padding: 0; }
.psl-help-menu > li > a,
.psl-help-btn-fallback > a {
    background: var(--psl-red) !important;
    color: var(--psl-white) !important;
    border-radius: 32px;
    padding: 10px 20px;
    font-weight: 700; font-size: 14px;
    text-decoration: none !important;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(52, 48, 88, 0.2);
    transition: all var(--psl-transition);
    white-space: nowrap;
}
.psl-help-menu > li > a:hover { background: var(--psl-red-dark) !important; transform: translateY(-2px); }
.psl-help-menu > li { position: relative; }
.psl-help-menu .sub-menu {
    position: absolute;
    top: 100%; right: 0; left: auto;
    min-width: 100%; width: max-content;
    background: var(--psl-red);
    border-radius: 20px; padding: 10px 0;
    box-shadow: 0 4px 14px rgba(52, 48, 88, 0.25);
    list-style: none; margin: 0;
    opacity: 0; pointer-events: none;
    transform: translateY(-6px);
    transition: opacity var(--psl-transition), transform var(--psl-transition);
    z-index: 300;
}
.psl-help-menu > li:hover > .sub-menu,
.psl-help-menu > li:focus-within > .sub-menu,
.psl-help-menu > li.is-open > .sub-menu { opacity: 1; pointer-events: auto; transform: translateY(0); }
.psl-help-menu .sub-menu li a {
    display: block; padding: 10px 24px;
    color: var(--psl-white) !important;
    font-weight: 600; font-size: 15px;
    text-decoration: none !important;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.2s ease;
}
.psl-help-menu .sub-menu li:not(:last-child) a:hover { border-bottom-color: var(--psl-white); }

/* WPML */
.psl-lang-switcher { display: flex; align-items: center; }
.psl-lang-list { list-style: none; margin: 0; padding: 0; display: flex; gap: 4px; }
.psl-lang-item { display: flex; align-items: center; }
.psl-lang-item a, .psl-lang-item.active {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 8px; border-radius: 20px;
    font-size: 13px; font-weight: 700;
    text-decoration: none;
    transition: all var(--psl-transition);
    color: var(--psl-blue-dark);
    border: 2px solid transparent;
}
.psl-lang-item.active { background: var(--psl-grey); border-color: var(--psl-green); cursor: default; }
.psl-lang-item a:hover { background: rgba(168, 211, 175, 0.2); border-color: var(--psl-green); }
.psl-lang-flag { font-size: 1.1em; line-height: 1; }
.psl-lang-code { letter-spacing: 0.04em; }

/* Mobile toggle */
.psl-mobile-toggle {
    display: none; background: none; border: none; cursor: pointer;
    padding: 8px; flex-direction: column; align-items: center; justify-content: center;
    margin-left: auto;
}
.psl-hamburger { display: flex; flex-direction: column; gap: 5px; width: 26px; }
.psl-hamburger span {
    display: block; height: 3px; width: 100%;
    background: var(--psl-blue); border-radius: 3px;
    transition: all var(--psl-transition);
}
.psl-mobile-toggle[aria-expanded="true"] .psl-hamburger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.psl-mobile-toggle[aria-expanded="true"] .psl-hamburger span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.psl-mobile-toggle[aria-expanded="true"] .psl-hamburger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile nav */
.psl-mobile-nav {
    display: none; background: var(--psl-white);
    border-top: 1px solid var(--psl-grey);
    overflow-y: auto; max-height: calc(100vh - 120px);
}
.psl-mobile-nav.is-open { display: block; }
.psl-mobile-nav-inner { padding: 16px 24px 32px; }
.psl-mobile-menu-list { list-style: none; margin: 0; padding: 0; }
.psl-mobile-menu-list li a {
    display: block; padding: 12px 0;
    font-size: 17px; font-weight: 700;
    color: var(--psl-blue); text-decoration: none;
    border-bottom: 1px solid var(--psl-grey);
}
.psl-mobile-menu-list .sub-menu { list-style: none; padding: 0 0 0 16px; margin: 0; }
.psl-mobile-menu-list .sub-menu li a { font-size: 15px; font-weight: 600; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1200px) {
    .psl-menu-list > li > a { font-size: 15px; padding: 0.5em 0.5em; }
}
@media (max-width: 1022px) {
    .psl-nav-main { display: none; }
    .psl-mobile-toggle { display: flex; }
    .psl-hero-text { flex: 1; }
    .psl-header-topbar-inner {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.75rem;
    }
}
@media (max-width: 768px) {
    .psl-help-menu > li > a { font-size: 13px; padding: 10px 14px; }
}
@media (max-width: 480px) {
    .psl-lang-code { display: none; }
}
@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
}
