/*!
 * Helderkruin Hulpmiddels Widgets — frontend styles
 *
 * Sections:
 *   1. Shared tokens + inline SVG icon rules
 *   2. Hulpverlening Programmes (tabs + programme cards)
 *   3. Siftings (5-card grid)
 *   4. Terapie Skedule (week strip)
 *   5. Terapeute (accordion profiles)
 *   6. Wanneer-om-te-verwys (symptom tabs + checklist)
 *   7. Mobile + reduced-motion
 */

/* =========================================================================
   1. SHARED TOKENS + ICON RULES
   ========================================================================= */
.hkhm-prog *,  .hkhm-prog *::before,  .hkhm-prog *::after,
.hkhm-sift *,  .hkhm-sift *::before,  .hkhm-sift *::after,
.hkhm-sched *, .hkhm-sched *::before, .hkhm-sched *::after,
.hkhm-ther *,  .hkhm-ther *::before,  .hkhm-ther *::after,
.hkhm-symp *,  .hkhm-symp *::before,  .hkhm-symp *::after { box-sizing: border-box; }

.hkhm-prog,
.hkhm-sift,
.hkhm-sched,
.hkhm-ther,
.hkhm-symp {
    font-family: 'Montserrat', sans-serif;
    color: #15204D;
}

/* Inline SVG icon — bypasses Font Awesome <i> tags entirely.
   Defensive !important rules so theme button reset can't hide the glyph. */
.hkhm-prog .hkhm-icon,
.hkhm-sift .hkhm-icon,
.hkhm-sched .hkhm-icon,
.hkhm-ther .hkhm-icon,
.hkhm-symp .hkhm-icon {
    display: inline-block !important;
    width: 1em !important;
    height: 1em !important;
    line-height: 1 !important;
    fill: currentColor !important;
    color: inherit !important;
    visibility: visible !important;
    opacity: 1 !important;
    flex-shrink: 0 !important;
    vertical-align: -0.125em;
}

.hkhm-prog .hkhm-icon path,
.hkhm-sift .hkhm-icon path,
.hkhm-sched .hkhm-icon path,
.hkhm-ther .hkhm-icon path,
.hkhm-symp .hkhm-icon path {
    fill: currentColor !important;
}

/* Shared header-block typography */
.hkhm-prog__header,
.hkhm-sift__header,
.hkhm-sched__header,
.hkhm-ther__header,
.hkhm-symp__header {
    text-align: center;
    margin: 0 auto 24px auto;
    max-width: 720px;
}

.hkhm-prog__eyebrow,
.hkhm-sift__eyebrow,
.hkhm-sched__eyebrow,
.hkhm-ther__eyebrow,
.hkhm-symp__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #E71615;
    background: rgba(231, 22, 21, 0.1);
    padding: 6px 14px;
    border-radius: 999px;
    margin-bottom: 14px;
}

.hkhm-prog__title,
.hkhm-sift__title,
.hkhm-sched__title,
.hkhm-ther__title,
.hkhm-symp__title {
    margin: 0 0 10px 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(28px, 3.6vw, 38px);
    letter-spacing: 1.2px;
    line-height: 1.1;
    text-transform: uppercase;
    font-weight: 400;
    color: #15204D;
}

.hkhm-prog__intro,
.hkhm-sift__intro,
.hkhm-sched__intro,
.hkhm-ther__intro,
.hkhm-symp__intro {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #55627E;
    font-style: italic;
}

/* =========================================================================
   2. HULPVERLENING PROGRAMMES
   ========================================================================= */
.hkhm-prog {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Tab buttons — pill-style, similar to Disciplines */
.hkhm-prog__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 6px;
    background: #F0F3F9;
    border-radius: 18px;
    margin: 0 auto 6px auto;
    max-width: 640px;
    width: fit-content;
}

.hkhm-prog__tab {
    flex: 1 1 auto;
    min-width: 160px;
    padding: 14px 22px;
    background: transparent;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: inherit;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    color: #15204D;
    transition: background 0.25s ease, color 0.2s ease,
                box-shadow 0.25s ease, transform 0.18s ease;
    --hkhm-prog-accent: #15204D;
}

.hkhm-prog__tab:hover:not(.is-active) {
    background: rgba(255, 255, 255, 0.7);
}

.hkhm-prog__tab.is-active {
    background: #FFFFFF;
    color: var(--hkhm-prog-accent);
    box-shadow: 0 6px 16px -6px rgba(21, 32, 77, 0.18);
    transform: translateY(-1px);
}

.hkhm-prog__tab-emoji {
    font-size: 22px;
    line-height: 1;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hkhm-prog__tab.is-active .hkhm-prog__tab-emoji {
    transform: scale(1.15) rotate(-3deg);
}

/* Panels — height-animated container pattern */
.hkhm-prog__panels {
    position: relative;
    min-height: 200px;
    transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.hkhm-prog__panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0.45s;
    --hkhm-prog-accent: #15204D;
}

.hkhm-prog__panel.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 1;
}

.hkhm-prog__panel-heading {
    margin: 0 auto 6px auto;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--hkhm-prog-accent);
    text-align: center;
}

.hkhm-prog__panel-intro {
    margin: 0 auto 22px auto;
    max-width: 700px;
    font-size: 14px;
    line-height: 1.55;
    color: #55627E;
    font-style: italic;
    text-align: center;
}

.hkhm-prog__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.hkhm-prog__card {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 22px 24px 20px;
    box-shadow: 0 14px 30px -16px rgba(21, 32, 77, 0.18);
    border-top: 4px solid var(--hkhm-prog-card-accent, #15204D);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(8px);
    animation: hkhm-card-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--hkhm-prog-card-delay, 0s);
}

.hkhm-prog__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 44px -16px rgba(21, 32, 77, 0.22);
}

@keyframes hkhm-card-in {
    0%   { opacity: 0; transform: translateY(8px); }
    100% { opacity: 1; transform: translateY(0); }
}

.hkhm-prog__card-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.hkhm-prog__card-emoji {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
    color: var(--hkhm-prog-card-accent);
}

.hkhm-prog__card-name {
    margin: 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    line-height: 1.1;
    letter-spacing: 0.8px;
    color: #15204D;
    text-transform: uppercase;
    font-weight: 400;
}

.hkhm-prog__card-teacher {
    font-size: 13px;
    color: var(--hkhm-prog-card-accent);
    margin-bottom: 10px;
    font-weight: 600;
}

.hkhm-prog__card-teacher-icon {
    margin-right: 4px;
}

.hkhm-prog__card-desc {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.55;
    color: #55627E;
}

/* Yellow note callout */
.hkhm-prog__note {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: #FFF8E1;
    border-left: 3px solid #FFD24A;
    border-radius: 0 10px 10px 0;
    font-size: 13.5px;
    line-height: 1.5;
    color: #5C4A1A;
    font-style: italic;
    margin-top: 16px;
}

.hkhm-prog__note-icon {
    font-size: 18px;
    line-height: 1.2;
    flex-shrink: 0;
}

/* =========================================================================
   3. SIFTINGS
   ========================================================================= */
.hkhm-sift {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hkhm-sift__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 18px;
}

.hkhm-sift__card {
    position: relative;
    background: #FFFFFF;
    border-radius: 18px;
    padding: 26px 22px 22px;
    text-align: center;
    box-shadow: 0 14px 30px -16px rgba(21, 32, 77, 0.16);
    border-top: 4px solid var(--hkhm-sift-accent, #15204D);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(8px);
    animation: hkhm-card-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--hkhm-sift-delay, 0s);
}

.hkhm-sift__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 48px -18px rgba(21, 32, 77, 0.24);
}

.hkhm-sift__emoji-wrap {
    width: 72px;
    height: 72px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--hkhm-sift-accent) 12%, white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hkhm-sift__card:hover .hkhm-sift__emoji-wrap {
    transform: scale(1.1) rotate(-5deg);
}

.hkhm-sift__emoji {
    font-size: 38px;
    line-height: 1;
}

.hkhm-sift__category {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--hkhm-sift-accent);
    margin-bottom: 6px;
}

.hkhm-sift__practitioner {
    margin: 0 0 4px 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: 0.8px;
    color: #15204D;
    text-transform: uppercase;
    font-weight: 400;
}

.hkhm-sift__role {
    font-size: 12.5px;
    color: var(--hkhm-sift-accent);
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.4;
}

.hkhm-sift__desc {
    margin: 0;
    font-size: 12.5px;
    line-height: 1.55;
    color: #55627E;
}

/* =========================================================================
   4. TERAPIE SKEDULE (week strip)
   ========================================================================= */
.hkhm-sched {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hkhm-sched__week {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
    background: #F6F8FC;
    border-radius: 18px;
    padding: 16px;
    overflow-x: auto;
}

.hkhm-sched__day {
    background: #FFFFFF;
    border-radius: 14px;
    padding: 16px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 6px 14px -8px rgba(21, 32, 77, 0.14);
    opacity: 0;
    transform: translateY(8px);
    animation: hkhm-card-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--hkhm-sched-delay, 0s);
    min-width: 0;
}

.hkhm-sched__day-head {
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 2px dashed #E5EAF3;
}

.hkhm-sched__day-short {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    line-height: 1;
    color: #15204D;
    letter-spacing: 1.2px;
    margin-bottom: 2px;
}

.hkhm-sched__day-long {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #55627E;
}

.hkhm-sched__therapists {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}

.hkhm-sched__therapist {
    background: color-mix(in srgb, var(--hkhm-sched-accent) 8%, white);
    border-left: 3px solid var(--hkhm-sched-accent);
    border-radius: 0 10px 10px 0;
    padding: 10px 12px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
    font-size: 12px;
    line-height: 1.4;
    transition: transform 0.25s ease, background 0.25s ease;
}

.hkhm-sched__therapist:hover {
    transform: translateX(2px);
    background: color-mix(in srgb, var(--hkhm-sched-accent) 14%, white);
}

.hkhm-sched__therapist-leaf {
    font-size: 14px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px;
}

.hkhm-sched__therapist-text {
    flex: 1;
    min-width: 0;
}

.hkhm-sched__therapist-name {
    font-weight: 700;
    color: #15204D;
    font-size: 12.5px;
    margin-bottom: 2px;
    line-height: 1.2;
}

.hkhm-sched__therapist-specialty {
    font-size: 11px;
    color: #55627E;
    line-height: 1.4;
}

.hkhm-sched__empty {
    font-size: 24px;
    color: #C5CDDC;
    text-align: center;
    padding: 12px 0;
}

/* =========================================================================
   5. TERAPEUTE (accordion)
   ========================================================================= */
.hkhm-ther {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hkhm-ther__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hkhm-ther__item {
    background: #FFFFFF;
    border-radius: 16px;
    box-shadow: 0 8px 22px -10px rgba(21, 32, 77, 0.16);
    overflow: hidden;
    border-left: 4px solid var(--hkhm-ther-accent, #15204D);
    transition: box-shadow 0.3s ease, transform 0.25s ease;
}

.hkhm-ther__item:hover {
    box-shadow: 0 18px 36px -16px rgba(21, 32, 77, 0.22);
}

.hkhm-ther__item.is-open {
    transform: translateY(-2px);
}

/* Header (click target) — defensive button reset */
.hkhm-ther .hkhm-ther__head {
    width: 100% !important;
    display: flex !important;
    align-items: center !important;
    gap: 16px !important;
    padding: 18px 22px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer !important;
    text-align: left !important;
    font-family: 'Montserrat', sans-serif !important;
    color: #15204D !important;
    transition: background 0.25s ease !important;
}

.hkhm-ther .hkhm-ther__head:hover {
    background: rgba(21, 32, 77, 0.04) !important;
}

.hkhm-ther__avatar {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--hkhm-ther-accent) 14%, white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hkhm-ther__head:hover .hkhm-ther__avatar {
    transform: scale(1.06) rotate(-4deg);
}

.hkhm-ther__avatar span {
    font-size: 28px;
    line-height: 1;
}

.hkhm-ther__head-text {
    flex: 1;
    min-width: 0;
}

.hkhm-ther__name {
    margin: 0 0 2px 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    line-height: 1.05;
    letter-spacing: 0.8px;
    color: #15204D;
    text-transform: uppercase;
    font-weight: 400;
}

.hkhm-ther__role {
    font-size: 13px;
    font-weight: 600;
    color: var(--hkhm-ther-accent);
    margin-bottom: 4px;
}

.hkhm-ther__days {
    font-size: 12px;
    color: #55627E;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.hkhm-ther__chev {
    flex-shrink: 0;
    color: var(--hkhm-ther-accent);
    font-size: 18px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.hkhm-ther__item.is-open .hkhm-ther__chev {
    transform: rotate(-180deg);
}

/* Panel */
.hkhm-ther__panel {
    overflow: hidden;
    transition: height 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hkhm-ther__panel[hidden] {
    display: block !important;
    height: 0 !important;
}

.hkhm-ther__panel-inner {
    padding: 4px 22px 22px 22px;
    border-top: 1px solid #E5EAF3;
}

.hkhm-ther__bio {
    margin: 16px 0 12px 0;
    font-size: 13.5px;
    line-height: 1.65;
    color: #55627E;
}

.hkhm-ther__quote {
    margin: 0 0 16px 0;
    padding: 14px 16px 14px 22px;
    background: color-mix(in srgb, var(--hkhm-ther-accent) 6%, white);
    border-left: 3px solid var(--hkhm-ther-accent);
    border-radius: 0 12px 12px 0;
    position: relative;
    font-family: 'Caveat', cursive;
    font-size: 17px;
    line-height: 1.45;
    color: var(--hkhm-ther-accent);
    font-weight: 700;
}

.hkhm-ther__quote-mark {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    line-height: 0.6;
    margin-right: 4px;
    opacity: 0.7;
}

.hkhm-ther__services-heading {
    margin: 16px 0 8px 0;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    font-weight: 400;
    color: var(--hkhm-ther-accent);
}

.hkhm-ther__services {
    list-style: none;
    padding: 0;
    margin: 0 0 16px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 8px;
}

.hkhm-ther__service {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 12px;
    background: #F6F8FC;
    border-radius: 10px;
    font-size: 12.5px;
    line-height: 1.45;
    color: #15204D;
}

.hkhm-ther__service-tick {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: var(--hkhm-ther-accent);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    flex-shrink: 0;
}

/* Contact buttons inside accordion — defensive !important */
.hkhm-ther__contact {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
}

.hkhm-ther .hkhm-ther__btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 10px 14px !important;
    border: none !important;
    border-radius: 999px !important;
    background: #F6F8FC !important;
    color: #15204D !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 12.5px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: transform 0.18s ease, background 0.25s ease,
                box-shadow 0.25s ease !important;
    box-shadow: 0 2px 8px -2px rgba(21, 32, 77, 0.1) !important;
}

.hkhm-ther .hkhm-ther__btn:hover {
    transform: translateY(-1px) !important;
    background: var(--hkhm-ther-accent) !important;
    color: #FFFFFF !important;
    box-shadow: 0 6px 16px -4px var(--hkhm-ther-accent) !important;
}

.hkhm-ther .hkhm-ther__btn--phone:hover    { background: #15204D !important; box-shadow: 0 6px 16px -4px #15204D !important; }
.hkhm-ther .hkhm-ther__btn--email:hover    { background: #E71615 !important; box-shadow: 0 6px 16px -4px #E71615 !important; }
.hkhm-ther .hkhm-ther__btn--website:hover  { background: #7096C8 !important; box-shadow: 0 6px 16px -4px #7096C8 !important; }

.hkhm-ther__btn span {
    font-size: 12.5px;
    line-height: 1.2;
}

/* =========================================================================
   6. WANNEER OM TE VERWYS (symptom tabs + checklist)
   ========================================================================= */
.hkhm-symp {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hkhm-symp__tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 6px;
    background: #F0F3F9;
    border-radius: 18px;
    margin: 0 auto;
    width: fit-content;
    max-width: 100%;
}

.hkhm-symp .hkhm-symp__tab {
    padding: 14px 22px !important;
    background: transparent !important;
    border: none !important;
    border-radius: 14px !important;
    cursor: pointer !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 10px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.4px !important;
    text-transform: uppercase !important;
    color: #15204D !important;
    transition: background 0.25s ease, color 0.2s ease,
                box-shadow 0.25s ease, transform 0.18s ease !important;
    --hkhm-symp-accent: #15204D;
}

.hkhm-symp .hkhm-symp__tab:hover:not(.is-active) {
    background: rgba(255, 255, 255, 0.7) !important;
}

.hkhm-symp .hkhm-symp__tab.is-active {
    background: #FFFFFF !important;
    color: var(--hkhm-symp-accent) !important;
    box-shadow: 0 6px 16px -6px rgba(21, 32, 77, 0.18) !important;
    transform: translateY(-1px) !important;
}

.hkhm-symp__tab-emoji {
    font-size: 22px;
    line-height: 1;
}

/* Panels — height-animated */
.hkhm-symp__panels {
    position: relative;
    min-height: 200px;
    transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

.hkhm-symp__panel {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
                visibility 0.45s;
    --hkhm-symp-accent: #15204D;
}

.hkhm-symp__panel.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
    z-index: 1;
}

.hkhm-symp__panel-card {
    background: #FFFFFF;
    border-radius: 18px;
    padding: 26px 28px;
    box-shadow: 0 14px 30px -16px rgba(21, 32, 77, 0.18);
    border-top: 4px solid var(--hkhm-symp-accent);
}

.hkhm-symp__practitioner {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: color-mix(in srgb, var(--hkhm-symp-accent) 10%, white);
    color: var(--hkhm-symp-accent);
    border-radius: 999px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.4px;
    margin-bottom: 18px;
}

.hkhm-symp__practitioner-icon {
    font-size: 14px;
    line-height: 1;
}

.hkhm-symp__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 10px;
}

.hkhm-symp__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    background: #F6F8FC;
    border-radius: 12px;
    font-size: 13.5px;
    line-height: 1.45;
    color: #15204D;
    border-left: 3px solid var(--hkhm-symp-accent);
    opacity: 0;
    transform: translateY(8px);
    animation: hkhm-card-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
    animation-delay: var(--hkhm-symp-delay, 0s);
}

.hkhm-symp__item-icon {
    width: 26px;
    height: 26px;
    border-radius: 999px;
    background: var(--hkhm-symp-accent);
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    margin-top: -1px;
}

.hkhm-symp__item-text {
    flex: 1;
}

/* Closing note — softer, encouraging */
.hkhm-symp__closing {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFF4D4 100%);
    border-radius: 14px;
    border-left: 3px solid #FFD24A;
    margin-top: 8px;
}

.hkhm-symp__closing-icon {
    font-size: 22px;
    line-height: 1;
    flex-shrink: 0;
}

.hkhm-symp__closing p {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #5C4A1A;
    font-style: italic;
    font-weight: 600;
}

/* =========================================================================
   7. MOBILE + REDUCED-MOTION
   ========================================================================= */
@media (max-width: 768px) {
    /* Programmes */
    .hkhm-prog__cards { grid-template-columns: 1fr; }
    .hkhm-prog__tabs,
    .hkhm-symp__tabs {
        width: 100%;
        flex-direction: column;
    }
    .hkhm-prog__tab,
    .hkhm-symp__tab {
        width: 100% !important;
    }

    /* Siftings */
    .hkhm-sift__grid { grid-template-columns: 1fr 1fr; }

    /* Schedule — vertical stack on mobile */
    .hkhm-sched__week {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .hkhm-sched__day {
        flex-direction: row;
        align-items: stretch;
        padding: 14px;
    }
    .hkhm-sched__day-head {
        border-bottom: none;
        border-right: 2px dashed #E5EAF3;
        padding: 0 14px 0 0;
        margin-right: 14px;
        text-align: center;
        min-width: 64px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
    .hkhm-sched__therapists { flex: 1; }

    /* Therapists accordion */
    .hkhm-ther .hkhm-ther__head {
        padding: 14px 16px !important;
        gap: 12px !important;
    }
    .hkhm-ther__avatar {
        width: 48px;
        height: 48px;
    }
    .hkhm-ther__avatar span {
        font-size: 24px;
    }
    .hkhm-ther__panel-inner {
        padding: 4px 16px 18px 16px;
    }
    .hkhm-ther__services {
        grid-template-columns: 1fr;
    }

    /* Symptom checklist */
    .hkhm-symp__list {
        grid-template-columns: 1fr;
    }
    .hkhm-symp__panel-card {
        padding: 22px 20px;
    }
}

@media (max-width: 480px) {
    .hkhm-sift__grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
    .hkhm-prog__card,
    .hkhm-sift__card,
    .hkhm-sched__day,
    .hkhm-symp__item {
        animation: none;
        opacity: 1;
        transform: none;
    }
    .hkhm-prog__card:hover,
    .hkhm-sift__card:hover,
    .hkhm-ther__item:hover {
        transform: none;
    }
    .hkhm-prog__panel,
    .hkhm-symp__panel,
    .hkhm-ther__panel,
    .hkhm-ther__chev,
    .hkhm-prog__tab-emoji,
    .hkhm-sift__emoji-wrap,
    .hkhm-ther__avatar {
        transition: none;
    }
}
