/**
 * HayMe Hero – Premium Profile Hero
 * Version: 2.2.5
 *
 * Bereinigte Version:
 *
 * - einheitliche Profilbildgröße
 * - Desktop: 170px
 * - Mobile: 155px
 * - Light + Dark identisch
 * - doppelte CSS-Regeln entfernt
 * - widersprüchliche Overrides entfernt
 * - einheitliche Hero-Abstände
 * - Light-Profil sauber integriert
 * - drei Hero-Stile
 * - Responsive
 * - Reduced Motion
 */


/* =========================================================
01. HERO-GRUNDFLÄCHE
========================================================= */

body.hayme-app-page .hayme-profile-hero {

    --hayme-avatar-size: 180px;

    /* Zentrale Hero-Abstände */
    --hayme-space-avatar-status: 16px;
    --hayme-space-status-name: 24px;
    --hayme-space-name-company: 7px;
    --hayme-space-company-meta: 18px;

    position: relative;
    isolation: isolate;

    width: 100%;
    min-height: 600px;

    margin: 0;
    padding: 42px 0 60px;

    overflow: hidden;

    color: #ffffff;
    text-align: center;

    background:
        radial-gradient(
            ellipse 74% 44% at 50% 31%,
            rgba(var(--hayme-accent-rgb), 0.22) 0%,
            rgba(var(--hayme-accent-rgb), 0.08) 38%,
            transparent 72%
        ),
        linear-gradient(
            180deg,
            #080809 0%,
            #050506 54%,
            #020203 100%
        );
}


/* =========================================================
02. DEKORATIVE HINTERGRUNDEBENE
========================================================= */

body.hayme-app-page .hayme-profile-hero__visual {

    position: absolute;
    inset: 0;

    z-index: 0;

    overflow: hidden;

    pointer-events: none;
}


body.hayme-app-page .hayme-profile-hero__ambient {

    position: absolute;

    top: 112px;
    left: 50%;

    width: 820px;
    height: 330px;

    border-radius: 50%;

    background:
        radial-gradient(
            ellipse,
            rgba(0, 0, 0, 0.08) 0%,
            rgba(0, 0, 0, 0.025) 40%,
            transparent 70%
        );

    filter: blur(44px);

    opacity: 0.28;

    transform: translateX(-50%);

    animation:
        hayme-hero-ambient-pulse
        12s
        ease-in-out
        infinite
        alternate;
}


/* =========================================================
03. WELLEN
========================================================= */

body.hayme-app-page .hayme-profile-hero__waves {

    position: absolute;

    top: 126px;
    left: 50%;

    width: 134%;
    height: 290px;

    overflow: visible;

    opacity: 1;

    transform: translateX(-50%);
}


body.hayme-app-page .hayme-profile-hero__wave--main {

    animation:
        hayme-wave-main-move
        24s
        ease-in-out
        infinite
        alternate;
}


body.hayme-app-page .hayme-profile-hero__wave--secondary {

    animation:
        hayme-wave-secondary-move
        29s
        ease-in-out
        infinite
        alternate;
}


body.hayme-app-page .hayme-profile-hero__wave--fine {

    animation:
        hayme-wave-fine-move
        33s
        ease-in-out
        infinite
        alternate;
}


body.hayme-app-page .hayme-profile-hero__wave--ambient {

    animation:
        hayme-wave-glow-pulse
        15s
        ease-in-out
        infinite
        alternate;
}


/* Linien deaktiviert */

body.hayme-app-page
.hayme-profile-hero--lines-disabled
.hayme-profile-hero__waves,

body.hayme-app-page
.hayme-profile-hero--lines-disabled
.hayme-profile-hero__ambient {

    visibility: hidden;
    opacity: 0;

    animation: none !important;
}


/* =========================================================
04. HERO-INHALT
========================================================= */

body.hayme-app-page .hayme-profile-hero__content {

    position: relative;

    z-index: 2;

    display: flex;
    flex-direction: column;
    align-items: center;

    width: 100%;
    max-width: 680px;

    margin: 0 auto;
}


/* Profilbild vorhanden, aber kein Logo */

body.hayme-app-page
.hayme-profile-hero--has-avatar:not(.hayme-profile-hero--has-logo)
.hayme-profile-hero__content {

    padding-top: 70px;
}


body.hayme-app-page
.hayme-profile-hero--has-avatar:not(.hayme-profile-hero--has-logo) {

    min-height: 490px;
}


body.hayme-app-page
.hayme-profile-hero--has-avatar:not(.hayme-profile-hero--has-logo)
.hayme-profile-hero__waves {

    top: 76px;
}


body.hayme-app-page
.hayme-profile-hero--has-avatar:not(.hayme-profile-hero--has-logo)
.hayme-profile-hero__ambient {

    top: 62px;
}


/* =========================================================
05. UNTERNEHMENSLOGO
========================================================= */

body.hayme-app-page .hayme-profile-hero__logo {

    position: relative;

    z-index: 3;

    display: flex;
    align-items: center;
    justify-content: center;

    width: min(340px, 78vw);
    height: 110px;

    margin:
        0
        auto
        68px;

    transform: translateY(-10px);
}


body.hayme-app-page .hayme-profile-hero__logo-image {

    display: block;

    width: 100%;
    height: 100%;

    max-width: none;
    max-height: none;

    object-fit: contain;
    object-position: center;
}


body.hayme-app-page .hayme-profile-hero__logo-placeholder {

    color: #ffffff;

    font-size:
        clamp(
            38px,
            6vw,
            58px
        );

    font-weight: 800;
    line-height: 1;

    letter-spacing: 0.06em;

    text-shadow:
        0 0 18px rgba(255, 255, 255, 0.10),
        0 8px 22px rgba(0, 0, 0, 0.55);
}


body.hayme-app-page
.hayme-profile-hero__logo-placeholder::first-letter {

    color: var(--hayme-card-accent-light);
}


/* Logo vorhanden, aber kein Avatar */

body.hayme-app-page
.hayme-profile-hero--has-logo:not(.hayme-profile-hero--has-avatar)
.hayme-profile-hero__logo {

    margin-right: auto;
    margin-bottom: 208px;
    margin-left: auto;
}


body.hayme-app-page .hayme-profile-hero__logo-subtitle {

    margin-top: 9px;

    color: rgba(255, 255, 255, 0.72);

    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;

    letter-spacing: 0.09em;
}


/* =========================================================
06. PROFILBILD
========================================================= */

body.hayme-app-page .hayme-profile-hero__avatar {

    position: relative;

    z-index: 4;

    display: flex;
    align-items: center;
    justify-content: center;

    margin:
        -22px
        0
        var(--hayme-space-avatar-status);
}


/* Glow */

body.hayme-app-page .hayme-profile-hero__avatar::before {

    content: "";

    position: absolute;

    inset: -28px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(var(--hayme-accent-rgb), 0.40) 0%,
            rgba(var(--hayme-accent-rgb), 0.16) 42%,
            transparent 72%
        );

    filter: blur(17px);

    opacity: 0.95;

    pointer-events: none;
}


/*
 * PROFILBILDGRÖSSE
 *
 * Desktop = 180px
 * Mobile  = 165px
 *
 * Light und Dark verwenden dieselbe Variable.
 */

body.hayme-app-page .hayme-profile-hero__placeholder {

    position: relative;

    z-index: 2;

    display: flex;
    align-items: center;
    justify-content: center;

    flex:
        0
        0
        var(--hayme-avatar-size);

    width: var(--hayme-avatar-size);
    height: var(--hayme-avatar-size);

    min-width: var(--hayme-avatar-size);
    min-height: var(--hayme-avatar-size);

    max-width: var(--hayme-avatar-size);
    max-height: var(--hayme-avatar-size);

    aspect-ratio: 1 / 1;

    overflow: hidden;

    border:
        4px
        solid
        #ffffff;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 32% 22%,
            rgba(255, 255, 255, 0.12),
            transparent 42%
        ),
        linear-gradient(
            145deg,
            #24262a 0%,
            #101114 56%,
            #060708 100%
        );

    color: #ffffff;

    font-size: 42px;
    font-weight: 800;
    line-height: 1;

    box-shadow:
        0 0 0 3px #050506;
}


body.hayme-app-page .hayme-profile-hero__image {

    display: block;

    width: 100%;
    height: 100%;

    border-radius: 50%;

    object-fit: cover;
    object-position: center;
}


body.hayme-app-page .hayme-profile-hero__initials {

    position: relative;

    z-index: 2;

    color: #ffffff;

    font-size: inherit;
    font-weight: 800;
    line-height: 1;
}


/* =========================================================
07. VERIFIZIERUNGS-BADGE AM PROFILBILD
========================================================= */

body.hayme-app-page .hayme-profile-hero__avatar-badge {

    position: absolute;

    right: 7px;
    bottom: 15px;

    z-index: 8;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 34px;
    height: 34px;

    border: 2px solid rgba(5, 5, 6, 0.92);
    border-radius: 50%;

    background:
        var(
            --hayme-verification-color,
            #e41111
        );

    color: #ffffff;

    box-shadow: none;
}


body.hayme-app-page
.hayme-profile-hero__avatar-badge svg {

    display: block;

    width: 18px;
    height: 18px;

    fill: none;
    stroke: currentColor;

    stroke-width: 2.4;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/* =========================================================
08. PROFILNAME
========================================================= */

body.hayme-app-page .hayme-profile-hero__name {

    margin: 0;

    color: #ffffff;

    font-size:
        clamp(
            30px,
            4vw,
            42px
        );

    font-weight: 800;
    line-height: 1.12;

    letter-spacing: -0.035em;

    text-shadow:
        0 5px 18px rgba(0, 0, 0, 0.58);
}


body.hayme-app-page .hayme-profile-hero__company {

    margin:
        var(--hayme-space-name-company)
        0
        0;

    color:
        rgba(
            255,
            255,
            255,
            0.62
        );

    font-size: 14px;
    font-weight: 500;
    line-height: 1.45;

    letter-spacing: 0.035em;
}


body.hayme-app-page
.hayme-profile-hero__company
+
.hayme-profile-hero__meta-row {

    margin-top:
        var(--hayme-space-company-meta);
}


/* =========================================================
09. POSITION / FUNKTION
========================================================= */

body.hayme-app-page .hayme-profile-hero__meta-row {

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    flex-wrap: nowrap;

    gap: 8px;

    width: 100%;

    margin-top:
        var(--hayme-space-company-meta);
}


body.hayme-app-page
.hayme-profile-hero__position,

body.hayme-app-page
.hayme-profile-hero__availability {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 6px;

    margin: 0;

    padding:
        8px
        15px;

    border:
        1px
        solid
        rgba(255, 255, 255, 0.10);

    border-radius: 999px;

    background:
        rgba(
            255,
            255,
            255,
            0.16
        );

    color:
        rgba(
            255,
            255,
            255,
            0.86
        );

    font-size: 13px;
    font-weight: 500;
    line-height: 1;

    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 8px 20px rgba(0, 0, 0, 0.30);

    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}


/* Erreichbar */

body.hayme-app-page
.hayme-profile-hero__availability.is-open {

    border-color:
        rgba(
            52,
            211,
            153,
            0.46
        );

    background:
        rgba(
            13,
            78,
            55,
            0.36
        );

    color: #75f0ad;
}


/* Nicht erreichbar */

body.hayme-app-page
.hayme-profile-hero__availability.is-closed {

    border-color:
        rgba(
            239,
            68,
            68,
            0.48
        );

    background:
        rgba(
            127,
            29,
            29,
            0.34
        );

    color: #fca5a5;
}


body.hayme-app-page
.hayme-profile-hero__availability-dot {

    width: 7px;
    height: 7px;

    flex:
        0
        0
        7px;

    border-radius: 50%;

    background: currentColor;

    box-shadow:
        0 0 8px currentColor;
}


body.hayme-app-page
.hayme-profile-hero__availability.is-open
.hayme-profile-hero__availability-dot {

    animation:
        hayme-availability-pulse
        2.4s
        ease-in-out
        infinite;
}


body.hayme-app-page
.hayme-profile-hero__position span {

    display: none;
}


/* =========================================================
11. ANIMATIONEN
========================================================= */

@keyframes hayme-hero-ambient-pulse {

    0% {

        opacity: 0.70;

        transform:
            translateX(-50%)
            scale(0.95);
    }

    100% {

        opacity: 1;

        transform:
            translateX(-50%)
            scale(1.06);
    }
}


@keyframes hayme-wave-main-move {

    0% {

        transform:
            translateX(-22px)
            translateY(2px);
    }

    100% {

        transform:
            translateX(24px)
            translateY(-4px);
    }
}


@keyframes hayme-wave-secondary-move {

    0% {

        transform:
            translateX(18px)
            translateY(-3px);
    }

    100% {

        transform:
            translateX(-20px)
            translateY(5px);
    }
}


@keyframes hayme-wave-fine-move {

    0% {

        transform:
            translateX(-12px)
            translateY(-2px);
    }

    100% {

        transform:
            translateX(17px)
            translateY(4px);
    }
}


@keyframes hayme-wave-glow-pulse {

    0% {
        opacity: 0.16;
    }

    100% {
        opacity: 0.34;
    }
}


@keyframes hayme-availability-pulse {

    0%,
    100% {

        opacity: 0.72;

        transform:
            scale(0.92);

        box-shadow:
            0 0 5px currentColor;
    }

    50% {

        opacity: 1;

        transform:
            scale(1.14);

        box-shadow:
            0 0 11px currentColor;
    }
}


/* =========================================================
12. HERO-STILE
========================================================= */


/* ---------------------------------------------------------
ELEGANT SILK
--------------------------------------------------------- */

body.hayme-app-page
.hayme-profile-style--elegant_silk
.hayme-profile-hero {

    background:
        radial-gradient(
            ellipse 70% 36% at 50% 28%,
            rgba(var(--hayme-accent-rgb), 0.14) 0%,
            rgba(var(--hayme-accent-rgb), 0.045) 42%,
            transparent 74%
        ),
        linear-gradient(
            180deg,
            #09090a 0%,
            #050506 58%,
            #020203 100%
        );
}


body.hayme-app-page
.hayme-profile-style--elegant_silk
.hayme-profile-hero__ambient {

    width: 760px;
    height: 290px;

    filter: blur(56px);

    opacity: 0.58;
}


body.hayme-app-page
.hayme-profile-style--elegant_silk
.hayme-profile-hero__waves {

    width: 142%;

    opacity: 0.72;

    filter:
        saturate(0.86)
        brightness(0.96);
}


body.hayme-app-page
.hayme-profile-style--elegant_silk
.hayme-profile-hero__wave--main {

    opacity: 0.78;
}


body.hayme-app-page
.hayme-profile-style--elegant_silk
.hayme-profile-hero__wave--secondary {

    opacity: 0.42;
}


body.hayme-app-page
.hayme-profile-style--elegant_silk
.hayme-profile-hero__wave--fine {

    opacity: 0.32;
}


body.hayme-app-page
.hayme-profile-style--elegant_silk
.hayme-profile-hero__wave--ambient {

    opacity: 0.12;
}


/* ---------------------------------------------------------
MODERN HALO
--------------------------------------------------------- */

body.hayme-app-page
.hayme-profile-style--modern_halo
.hayme-profile-hero {

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(var(--hayme-accent-rgb), 0.13) 0%,
            rgba(var(--hayme-accent-rgb), 0.045) 29%,
            transparent 54%
        ),
        radial-gradient(
            circle at 50% 28%,
            rgba(255, 255, 255, 0.055) 0%,
            transparent 34%
        ),
        linear-gradient(
            180deg,
            #090a0b 0%,
            #050506 58%,
            #020203 100%
        );
}


body.hayme-app-page
.hayme-profile-style--modern_halo
.hayme-profile-hero__ambient {

    top: 86px;

    width: 520px;
    height: 520px;

    border:
        1px
        solid
        rgba(
            var(--hayme-accent-rgb),
            0.20
        );

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(var(--hayme-accent-rgb), 0.11) 0%,
            rgba(var(--hayme-accent-rgb), 0.035) 46%,
            transparent 72%
        );

    filter: blur(10px);

    opacity: 0.70;

    box-shadow:
        0 0 55px rgba(var(--hayme-accent-rgb), 0.08),
        inset 0 0 48px rgba(var(--hayme-accent-rgb), 0.025);
}


body.hayme-app-page
.hayme-profile-style--modern_halo
.hayme-profile-hero__waves {

    top: 150px;

    width: 122%;

    opacity: 0.22;

    filter:
        blur(0.3px)
        saturate(0.72);
}


body.hayme-app-page
.hayme-profile-style--modern_halo
.hayme-profile-hero__wave--main {

    opacity: 0.34;
}


body.hayme-app-page
.hayme-profile-style--modern_halo
.hayme-profile-hero__wave--secondary,

body.hayme-app-page
.hayme-profile-style--modern_halo
.hayme-profile-hero__wave--fine {

    opacity: 0.16;
}


body.hayme-app-page
.hayme-profile-style--modern_halo
.hayme-profile-hero__wave--ambient {

    opacity: 0.07;
}


/* ---------------------------------------------------------
LIFESTYLE FLOW
--------------------------------------------------------- */

body.hayme-app-page
.hayme-profile-style--lifestyle_flow
.hayme-profile-hero {

    background:
        radial-gradient(
            ellipse 76% 42% at 50% 31%,
            rgba(var(--hayme-accent-rgb), 0.16) 0%,
            rgba(var(--hayme-accent-rgb), 0.05) 43%,
            transparent 75%
        ),
        linear-gradient(
            180deg,
            #080a0b 0%,
            #040607 58%,
            #020303 100%
        );
}


body.hayme-app-page
.hayme-profile-style--lifestyle_flow
.hayme-profile-hero__ambient {

    top: 104px;

    width: 900px;
    height: 370px;

    filter: blur(64px);

    opacity: 0.52;
}


body.hayme-app-page
.hayme-profile-style--lifestyle_flow
.hayme-profile-hero__waves {

    top: 114px;

    width: 152%;
    height: 315px;

    opacity: 0.58;

    filter:
        saturate(0.76)
        blur(0.15px);
}


body.hayme-app-page
.hayme-profile-style--lifestyle_flow
.hayme-profile-hero__wave--main {

    opacity: 0.68;

    animation-duration: 31s;
}


body.hayme-app-page
.hayme-profile-style--lifestyle_flow
.hayme-profile-hero__wave--secondary {

    opacity: 0.34;

    animation-duration: 37s;
}


body.hayme-app-page
.hayme-profile-style--lifestyle_flow
.hayme-profile-hero__wave--fine {

    opacity: 0.24;

    animation-duration: 41s;
}


body.hayme-app-page
.hayme-profile-style--lifestyle_flow
.hayme-profile-hero__wave--ambient {

    opacity: 0.10;

    animation-duration: 23s;
}


/* =========================================================
13. TABLET
========================================================= */

@media screen and (max-width: 1024px) {

    body.hayme-app-page
    .hayme-profile-hero {

        --hayme-space-avatar-status: 14px;
    }


    body.hayme-app-page
    .hayme-profile-hero__avatar {

        margin:
            -20px
            0
            var(--hayme-space-avatar-status);
    }
}


/* =========================================================
14. SMARTPHONE
========================================================= */

@media screen and (max-width: 767px) {

    /*
     * ZENTRALE MOBILE PROFILBILDGRÖSSE
     *
     * Gilt automatisch für:
     * Dark
     * Light
     * Hybrid
     * alle Hero-Stile
     */

    body.hayme-app-page
    .hayme-profile-hero {

        --hayme-avatar-size: 165px;

        --hayme-space-avatar-status: 14px;
        --hayme-space-status-name: 22px;
        --hayme-space-name-company: 6px;
        --hayme-space-company-meta: 16px;

        /*
         * OPTIMIERT:
         * Weniger freie Fläche unter Erreichbarkeit.
         *
         * Vorher:
         * min-height: 540px;
         */
        min-height: 510px;

        /*
         * Vorher unten:
         * 52px
         */
        padding:
            34px
            0
            50px;
    }


    /* Profil ohne Logo */

    body.hayme-app-page
    .hayme-profile-hero--has-avatar:not(.hayme-profile-hero--has-logo)
    .hayme-profile-hero__content {

        padding-top: 55px;
    }


    body.hayme-app-page
    .hayme-profile-hero--has-avatar:not(.hayme-profile-hero--has-logo) {

        /*
         * Vorher:
         * 445px
         */
        min-height: 425px;
    }


    body.hayme-app-page
    .hayme-profile-hero--has-avatar:not(.hayme-profile-hero--has-logo)
    .hayme-profile-hero__waves {

        top: 32px;
    }


    body.hayme-app-page
    .hayme-profile-hero--has-avatar:not(.hayme-profile-hero--has-logo)
    .hayme-profile-hero__ambient {

        top: 28px;
    }


    /* Logo */

    body.hayme-app-page
    .hayme-profile-hero__logo {

        width:
            min(
                260px,
                72vw
            );

        height: 85px;

        margin-right: auto;
        margin-bottom: 62px;
        margin-left: auto;

        transform: translateY(2px);
    }


    body.hayme-app-page
    .hayme-profile-hero--has-logo:not(.hayme-profile-hero--has-avatar)
    .hayme-profile-hero__logo {

        margin-bottom: 178px;
    }


    body.hayme-app-page
    .hayme-profile-hero__logo-image {

        width: 100%;
        height: 100%;

        max-width: none;
        max-height: none;
    }


    body.hayme-app-page
    .hayme-profile-hero__logo-placeholder {

        font-size: 38px;
    }


    body.hayme-app-page
    .hayme-profile-hero__logo-subtitle {

        font-size: 10px;
    }


    /* Wellen */

    body.hayme-app-page
    .hayme-profile-hero__waves {

        top: 78px;

        width: 215%;
        height: 245px;

        transform:
            translateX(-50%)
            scaleY(
                var(
                    --hayme-mobile-wave-scale,
                    0.55
                )
            );

        transform-origin:
            center
            center;
    }


    body.hayme-app-page
    .hayme-profile-hero__ambient {

        top: 96px;

        width: 470px;
        height: 280px;
    }


    /* Profilbild */

    body.hayme-app-page
    .hayme-profile-hero__avatar {

        margin:
            -18px
            0
            var(--hayme-space-avatar-status);
    }


    body.hayme-app-page
    .hayme-profile-hero__placeholder {

        font-size: 34px;
    }


    body.hayme-app-page
    .hayme-profile-hero__avatar-badge {

        right: 6px;
        bottom: 14px;

        width: 32px;
        height: 32px;
    }


    body.hayme-app-page
    .hayme-profile-hero__avatar-badge svg {

        width: 17px;
        height: 17px;
    }


    /* Name */

    body.hayme-app-page
    .hayme-profile-hero__name {

        font-size: 30px;
    }


    body.hayme-app-page
    .hayme-profile-hero__company {

        font-size: 13px;
    }


    /* Position */

    body.hayme-app-page
    .hayme-profile-hero__position,

    body.hayme-app-page
    .hayme-profile-hero__availability {

        padding:
            7px
            13px;

        font-size: 13px;
    }


    /* Elegant Silk */

    body.hayme-app-page
    .hayme-profile-style--elegant_silk
    .hayme-profile-hero__waves {

        width: 225%;

        opacity: 0.66;
    }


    /* Modern Halo */

    body.hayme-app-page
    .hayme-profile-style--modern_halo
    .hayme-profile-hero__ambient {

        top: 42px;

        width: 360px;
        height: 360px;
    }


    body.hayme-app-page
    .hayme-profile-style--modern_halo
    .hayme-profile-hero__waves {

        top: 94px;

        width: 188%;

        opacity: 0.18;
    }


    /* Lifestyle Flow */

    body.hayme-app-page
    .hayme-profile-style--lifestyle_flow
    .hayme-profile-hero__waves {

        top: 68px;

        width: 235%;
        height: 260px;

        opacity: 0.50;
    }
}


/* =========================================================
15. SEHR KLEINE SMARTPHONES
========================================================= */

@media screen and (max-width: 380px) {

    /*
     * Profilbild bleibt absichtlich 165px.
     * Keine kleinere Sondergröße mehr.
     */

    body.hayme-app-page
    .hayme-profile-hero {

        padding-right: 14px;
        padding-left: 14px;
    }


    body.hayme-app-page
    .hayme-profile-hero__logo {

        width:
            min(
                235px,
                72vw
            );

        height: 78px;
    }


    body.hayme-app-page
    .hayme-profile-hero__logo-image {

        width: 100%;
        height: 100%;

        max-width: none;
    }


    body.hayme-app-page
    .hayme-profile-hero__placeholder {

        font-size: 32px;
    }


    body.hayme-app-page
    .hayme-profile-hero__name {

        font-size: 28px;
    }
}


/* =========================================================
16. REDUZIERTE BEWEGUNGEN
========================================================= */

@media (prefers-reduced-motion: reduce) {

    body.hayme-app-page
    .hayme-profile-hero__ambient,

    body.hayme-app-page
    .hayme-profile-hero__wave,

    body.hayme-app-page
    .hayme-profile-hero__availability-dot {

        animation: none !important;
    }


    body.hayme-app-page
    .hayme-profile-hero__status {

        transition: none !important;

        transform: none !important;
    }
}


/* =========================================================
17. TYPOGRAFIE
========================================================= */

body.hayme-app-page .hayme-profile-hero,
body.hayme-app-page .hayme-profile-hero * {

    font-family:
        "Poppins",
        sans-serif !important;
}


/* =========================================================
18. PREMIUM-ÜBERGANG ZUM KONTAKTBEREICH
========================================================= */

body.hayme-app-page
.hayme-contact-actions {

    position: relative !important;

    /*
     * Vorher:
     * 46px
     */
    padding-top: 38px !important;

    overflow: visible !important;
}


/* Große schwarze Kurve */

body.hayme-app-page
.hayme-contact-actions::before {

    content: "" !important;

    position: absolute !important;

    left: 50% !important;

    /*
     * Kurve etwas weiter nach oben.
     *
     * Vorher:
     * -22px
     */
    top: -28px !important;

    width: 150% !important;

    /*
     * Vorher:
     * 60px
     */
    height: 54px !important;

    transform:
        translateX(-50%) !important;

    border-radius:
        50% 50% 0 0 /
        100% 100% 0 0 !important;

    background: #000000 !important;

    box-shadow: none !important;

    pointer-events: none !important;

    z-index: 1 !important;
}


/* Kontakt-Überschrift */

body.hayme-app-page
.hayme-contact-actions
.hayme-action-group:first-child
.hayme-action-group__header {

    position: relative !important;

    z-index: 3 !important;

    /*
     * Vorher:
     * 18px
     */
    padding-top: 14px !important;
}


/* =========================================================
MOBILE ÜBERGANG
========================================================= */

@media screen and (max-width: 767px) {

    body.hayme-app-page
    .hayme-contact-actions {

        /*
         * Kontaktbuttons näher an die schwarze Kurve.
         *
         * Vorher:
         * 40px
         */
        padding-top: 28px !important;
    }


    body.hayme-app-page
    .hayme-contact-actions::before {

        /*
         * Schwarze Kurve weiter nach oben Richtung
         * Erreichbarkeit.
         *
         * Vorher:
         * -18px
         */
        top: -26px !important;

        width: 130% !important;
        height: 40px !important;
    }


    body.hayme-app-page
    .hayme-contact-actions
    .hayme-action-group:first-child
    .hayme-action-group__header {

        /*
         * Die Überschrift wird im mobilen Button-CSS
         * sowieso ausgeblendet.
         */
        padding-top: 0 !important;
    }
}


/* =========================================================
19. LIGHT PROFIL
========================================================= */


/* ---------------------------------------------------------
HERO WEISS
--------------------------------------------------------- */

body.hayme-app-page
.hayme-profile-hero--light-profile {

    background: #ffffff !important;

    color: #111111 !important;
}


/* ---------------------------------------------------------
PROFILBILD LIGHT

Größe bleibt identisch mit Dark.
Nur Darstellung wird verändert.
--------------------------------------------------------- */

body.hayme-app-page
.hayme-profile-hero--light-profile
.hayme-profile-hero__avatar::before {

    opacity: 0.18 !important;

    filter: blur(20px) !important;
}


body.hayme-app-page
.hayme-profile-hero--light-profile
.hayme-profile-hero__placeholder {

    border:
        4px
        solid
        #ffffff !important;

    box-shadow:
        0 0 0 3px #050506 !important;
}


/* ---------------------------------------------------------
PROFILNAME
--------------------------------------------------------- */

body.hayme-app-page
.hayme-profile-hero--light-profile
.hayme-profile-hero__name {

    color: #111111 !important;

    text-shadow: none !important;
}


/* ---------------------------------------------------------
FIRMA
--------------------------------------------------------- */

body.hayme-app-page
.hayme-profile-hero--light-profile
.hayme-profile-hero__company {

    color: #444444 !important;
}


/* ---------------------------------------------------------
POSITION
--------------------------------------------------------- */

body.hayme-app-page
.hayme-profile-hero--light-profile
.hayme-profile-hero__position {

    border:
        1px
        solid
        rgba(
            17,
            17,
            17,
            0.45
        ) !important;

    background:
        transparent !important;

    color:
        #111111 !important;

    box-shadow:
        none !important;
}


/* ---------------------------------------------------------
ERREICHBAR
--------------------------------------------------------- */

body.hayme-app-page
.hayme-profile-hero--light-profile
.hayme-profile-hero__availability.is-open {

    border:
        1px
        solid
        #198754 !important;

    background:
        #198754 !important;

    color:
        #ffffff !important;

    box-shadow:
        none !important;
}


/* ---------------------------------------------------------
NICHT ERREICHBAR
--------------------------------------------------------- */

body.hayme-app-page
.hayme-profile-hero--light-profile
.hayme-profile-hero__availability.is-closed {

    border:
        1px
        solid
        #dc6b6b !important;

    background:
        #dc6b6b !important;

    color:
        #ffffff !important;

    box-shadow:
        none !important;
}


/* Status-Punkt */

body.hayme-app-page
.hayme-profile-hero--light-profile
.hayme-profile-hero__availability-dot {

    background:
        #ffffff !important;

    box-shadow:
        none !important;
}