/*
             * ========================================================
             * FULL-WIDTH-AUSBRUCH AUS ELEMENTOR
             * ========================================================
             */

            .avh-about {
                position: relative;
                left: 50%;
                width: 100vw;
                max-width: none;
                margin: 0;
                margin-left: -50vw;
                overflow: hidden;
                isolation: isolate;
                color: var(--avh-color-primary);
                background: var(--avh-color-background);
            }

            .avh-about,
            .avh-about *,
            .avh-about *::before,
            .avh-about *::after {
                box-sizing: border-box;
            }


            /*
             * ========================================================
             * HAUPTBEREICHE
             * ========================================================
             */

            .avh-about__area {
                position: relative;
                width: 100%;
            }

            .avh-about__area--homes {
                background:
                    radial-gradient(
                        circle at 18% 45%,
                        rgba(var(--avh-rgb-surface), 0.68),
                        rgba(var(--avh-rgb-background), 0) 36%
                    ),
                    radial-gradient(
                        circle at 84% 18%,
                        rgba(var(--avh-rgb-surface-soft), 0.24),
                        rgba(var(--avh-rgb-background), 0) 34%
                    ),
                    var(--avh-color-background);
            }

            .avh-about__area--media {
                background:
                    radial-gradient(
                        circle at 82% 50%,
                        rgba(var(--avh-rgb-background), 0.82),
                        rgba(var(--avh-rgb-surface), 0) 38%
                    ),
                    radial-gradient(
                        circle at 15% 12%,
                        rgba(var(--avh-rgb-surface-soft), 0.22),
                        rgba(var(--avh-rgb-surface), 0) 32%
                    ),
                    var(--avh-color-surface);
            }

            .avh-about__container {
                position: relative;
                z-index: 2;
                width: min(
                    calc(100% - clamp(40px, 8vw, 150px)),
                    1440px
                );
                margin: 0 auto;
                padding:
                    clamp(85px, 9vw, 145px)
                    0;
            }

            .avh-about__grid {
                display: grid;
                grid-template-columns:
                    minmax(300px, 0.86fr)
                    minmax(0, 1.14fr);
                align-items: center;
                gap: clamp(65px, 8vw, 135px);
            }

            .avh-about__grid--media {
                grid-template-columns:
                    minmax(0, 1.14fr)
                    minmax(300px, 0.86fr);
            }


            /*
             * ========================================================
             * LOGO-KACHELN
             * Nur ein äußerer Rahmen
             * ========================================================
             */

            .avh-about__brand-panel {
                position: relative;
                display: flex;
                align-items: center;
                justify-content: center;
                min-height: clamp(340px, 31vw, 470px);
                padding: clamp(45px, 6vw, 90px);
                overflow: hidden;
                border: 1px solid var(--avh-color-line);
                border-radius: 30px;
                background:
                    linear-gradient(
                        145deg,
                        rgba(var(--avh-rgb-background), 0.96),
                        rgba(var(--avh-rgb-surface), 0.88)
                    );
                box-shadow:
                    inset 0 1px 0
                    rgba(var(--avh-rgb-background), 0.92),

                    inset 0 -32px 65px
                    rgba(var(--avh-rgb-ink), 0.035),

                    0 26px 65px
                    rgba(var(--avh-rgb-ink), 0.10);
            }

            .avh-about__brand-glow {
                position: absolute;
                top: 50%;
                left: 50%;
                width: 72%;
                aspect-ratio: 1;
                border-radius: 50%;
                background:
                    rgba(var(--avh-rgb-surface-soft), 0.54);
                filter: blur(58px);
                transform: translate(-50%, -50%);
                pointer-events: none;
            }

            .avh-about__logo-link {
                position: relative;
                z-index: 3;
                display: flex;
                width: 100%;
                align-items: center;
                justify-content: center;
                text-decoration: none;
            }

            .avh-about__logo {
                display: block;
                width: auto;
                max-width: 100%;
                height: auto;
                object-fit: contain;
                object-position: center;
                filter:
                    drop-shadow(
                        0 12px 20px
                        rgba(var(--avh-rgb-ink), 0.10)
                    );
                transition:
                    transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1),
                    filter 420ms ease;
            }

            .avh-about__logo--homes {
                max-height: 205px;
            }

            .avh-about__logo--media {
                max-height: 180px;
            }

            .avh-about__logo-link:hover .avh-about__logo {
                transform: scale(1.035);
                filter:
                    drop-shadow(
                        0 18px 28px
                        rgba(var(--avh-rgb-ink), 0.15)
                    );
            }


            /*
             * ========================================================
             * TEXTE
             * ========================================================
             */

            .avh-about__content {
                width: 100%;
                max-width: 690px;
            }

            .avh-about__eyebrow {
                display: flex;
                align-items: center;
                gap: 15px;
                margin: 0 0 25px;
                color: var(--avh-color-muted);
                font-family: Verdana, Geneva, sans-serif;
                font-size: 12px;
                font-weight: 700;
                line-height: 1.5;
                letter-spacing: 0.17em;
                text-transform: uppercase;
            }

            .avh-about__eyebrow-line {
                display: block;
                flex: 0 0 36px;
                width: 36px;
                height: 1px;
                background: var(--avh-color-silver);
            }

            .avh-about__title {
                margin: 0 0 27px;
                color: var(--avh-color-ink);
                font-family: Verdana, Geneva, sans-serif;
                font-size: clamp(38px, 4.1vw, 64px);
                font-weight: 600;
                line-height: 1.12;
                letter-spacing: -0.045em;
                text-wrap: balance;
            }

            .avh-about__title--media {
                font-size: clamp(34px, 3.7vw, 56px);
            }

            .avh-about__text {
                max-width: 680px;
                margin: 0 0 18px;
                color: var(--avh-color-muted);
                font-family: Verdana, Geneva, sans-serif;
                font-size: clamp(15px, 1.1vw, 18px);
                font-weight: 400;
                line-height: 1.85;
            }


            /*
             * ========================================================
             * TRENNLINIE
             * ========================================================
             */

            .avh-about__divider {
                position: relative;
                z-index: 4;
                width: 100%;
                height: 1px;
                background: var(--avh-color-line);
            }

            .avh-about__divider-inner {
                position: absolute;
                top: 0;
                left: 50%;
                width: min(
                    calc(100% - clamp(40px, 8vw, 150px)),
                    1440px
                );
                height: 1px;
                background:
                    linear-gradient(
                        90deg,
                        rgba(var(--avh-rgb-line), 0),
                        var(--avh-color-silver),
                        rgba(var(--avh-rgb-line), 0)
                    );
                transform: translateX(-50%);
            }


            /*
             * ========================================================
             * ANVIOLMEDIA-BUTTON
             * ========================================================
             */

            .avh-about__button {
                position: relative;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 14px;
                min-height: 58px;
                margin-top: 24px;
                padding: 16px 29px;
                overflow: hidden;
                border: 1px solid var(--avh-color-charcoal);
                border-radius: 999px;
                background: var(--avh-color-charcoal);
                color: var(--avh-color-floral-white);
                box-shadow:
                    0 15px 34px
                    rgba(var(--avh-rgb-ink), 0.18);
                font-family: Verdana, Geneva, sans-serif;
                font-size: 14px;
                font-weight: 700;
                line-height: 1;
                letter-spacing: 0.02em;
                text-decoration: none;
                transition:
                    transform 250ms ease,
                    background-color 250ms ease,
                    border-color 250ms ease,
                    color 250ms ease,
                    box-shadow 250ms ease;
            }

            .avh-about__button::before {
                content: "";
                position: absolute;
                inset: 0;
                background:
                    linear-gradient(
                        115deg,
                        rgba(var(--avh-rgb-background), 0),
                        rgba(var(--avh-rgb-background), 0.14),
                        rgba(var(--avh-rgb-background), 0)
                    );
                transform: translateX(-125%);
                transition:
                    transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
            }

            .avh-about__button > span,
            .avh-about__button-icon {
                position: relative;
                z-index: 2;
            }

            .avh-about__button-icon {
                width: 20px;
                height: 20px;
                fill: none;
                stroke: currentColor;
                stroke-width: 1.8;
                stroke-linecap: round;
                stroke-linejoin: round;
                transition: transform 250ms ease;
            }

            .avh-about__button:hover {
                transform: translateY(-3px);
                border-color: var(--avh-color-ink);
                background: var(--avh-color-ink);
                color: var(--avh-color-floral-white);
                box-shadow:
                    0 20px 42px
                    rgba(var(--avh-rgb-ink), 0.24);
            }

            .avh-about__button:hover::before {
                transform: translateX(125%);
            }

            .avh-about__button:hover .avh-about__button-icon {
                transform: translateX(4px);
            }

            .avh-about__button:focus-visible,
            .avh-about__logo-link:focus-visible {
                outline: 3px solid var(--avh-color-silver);
                outline-offset: 5px;
            }


            /*
             * ========================================================
             * TABLET
             * ========================================================
             */

            @media (max-width: 960px) {

                .avh-about__container {
                    width: min(
                        calc(100% - 48px),
                        760px
                    );
                    padding: 80px 0;
                }

                .avh-about__grid,
                .avh-about__grid--media {
                    grid-template-columns: 1fr;
                    gap: 50px;
                }

                .avh-about__grid--media .avh-about__content {
                    order: 2;
                }

                .avh-about__grid--media .avh-about__brand-panel {
                    order: 1;
                }

                .avh-about__brand-panel {
                    min-height: 330px;
                    padding: 55px;
                }

                .avh-about__logo--homes {
                    max-height: 175px;
                }

                .avh-about__logo--media {
                    max-height: 155px;
                }

                .avh-about__content,
                .avh-about__text {
                    max-width: none;
                }

            }


            /*
             * ========================================================
             * MOBILE
             * ========================================================
             */

            @media (max-width: 560px) {

                .avh-about__container {
                    width: calc(100% - 30px);
                    padding: 62px 0 70px;
                }

                .avh-about__grid,
                .avh-about__grid--media {
                    gap: 36px;
                }

                .avh-about__brand-panel {
                    min-height: 235px;
                    padding: 32px 27px;
                    border-radius: 23px;
                }

                .avh-about__brand-glow {
                    width: 85%;
                    filter: blur(42px);
                }

                .avh-about__logo--homes {
                    max-height: 115px;
                }

                .avh-about__logo--media {
                    max-height: 100px;
                }

                .avh-about__eyebrow {
                    gap: 11px;
                    margin-bottom: 18px;
                    font-size: 10px;
                    line-height: 1.55;
                    letter-spacing: 0.13em;
                }

                .avh-about__eyebrow-line {
                    flex-basis: 25px;
                    width: 25px;
                }

                .avh-about__title {
                    margin-bottom: 22px;
                    font-size: clamp(33px, 10vw, 45px);
                    letter-spacing: -0.04em;
                }

                .avh-about__title--media {
                    font-size: clamp(30px, 9vw, 40px);
                }

                .avh-about__text {
                    margin-bottom: 15px;
                    font-size: 14px;
                    line-height: 1.75;
                }

                .avh-about__button {
                    width: 100%;
                    min-height: 56px;
                    margin-top: 18px;
                    padding-right: 22px;
                    padding-left: 22px;
                }

            }


            /*
             * ========================================================
             * REDUZIERTE BEWEGUNG
             * ========================================================
             */

            @media (prefers-reduced-motion: reduce) {

                .avh-about *,
                .avh-about *::before,
                .avh-about *::after {
                    scroll-behavior: auto !important;
                    transition-duration: 0.01ms !important;
                    animation-duration: 0.01ms !important;
                    animation-iteration-count: 1 !important;
                }

            }
