/* =========================================================
   BLOCKQUOTE 1
   ========================================================= */

.quote_large {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: 420px;

    margin: 40px auto;
    padding: 0;

    overflow: hidden;
    background: #fff;
    border: 0;
}


/* =========================================================
   BILD
   ========================================================= */

.quote_large img {
    position: absolute;
    top: 0;
    left: 0;

    width: 72%;
    height: 100%;

    object-fit: cover;
    object-position: center;

    z-index: 0;

    -webkit-mask-image: linear-gradient(
        to right,
        #000 0%,
        #000 55%,
        rgba(0,0,0,0.75) 70%,
        rgba(0,0,0,0.25) 85%,
        transparent 100%
    );

    mask-image: linear-gradient(
        to right,
        #000 0%,
        #000 55%,
        rgba(0,0,0,0.75) 70%,
        rgba(0,0,0,0.25) 85%,
        transparent 100%
    );
}


/* =========================================================
   WEISSER VERLAUF RECHTS
   ========================================================= */

 .quote_large::after {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        to right,
        rgba(255,255,255,0) 45%,
        rgba(255,255,255,0.30) 60%,
        rgba(255,255,255,0.85) 78%,
        #fff 100%
    );

    z-index: 1;
    pointer-events: none;
}


/* =========================================================
   BLAUES SVG-ANFÜHRUNGSZEICHEN
   ========================================================= */

 .quote_large .quote-mark {
    position: absolute;

    top: 18px;
    left: 24px;

    width: 145px;
    height: 145px;

    z-index: 3;

    fill: #2637e8;
}


/* =========================================================
   ZITAT
   ========================================================= */

 .quote_large .quote-text {
    position: absolute;

    left: 48%;
    right: 5%;
    bottom: 82px;

    z-index: 4;

    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1.05rem, 1.9vw, 1.7rem);
    font-weight: 700;
    line-height: 1.18;

    color: #111;
}


/* =========================================================
   AUTOR
   ========================================================= */

 .quote_large cite {
    position: absolute;

    right: 5%;
    bottom: 35px;

    z-index: 4;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.85rem;
    font-style: normal;

    color: #444;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 800px) {

     .quote_large {
        height: 360px;
    }

     .quote_large img {
        width: 78%;
    }

     .quote_large .quote-mark {
        width: 110px;
        height: 110px;

        top: 14px;
        left: 16px;
    }

     .quote_large .quote-text {
        left: 43%;
        right: 5%;

        font-size: clamp(1rem, 2.4vw, 1.4rem);
    }
}


/* =========================================================
   HANDY
   ========================================================= */

@media (max-width: 560px) {

     .quote_large {
        height: 430px;
    }

     .quote_large img {
        width: 100%;
        height: 58%;

        object-position: center top;

        -webkit-mask-image: linear-gradient(
            to bottom,
            #000 0%,
            #000 65%,
            transparent 100%
        );

        mask-image: linear-gradient(
            to bottom,
            #000 0%,
            #000 65%,
            transparent 100%
        );
    }

     .quote_large::after {
        background: linear-gradient(
            to bottom,
            rgba(255,255,255,0) 35%,
            rgba(255,255,255,0.7) 55%,
            #fff 72%
        );
    }

     .quote_large .quote-mark {
        width: 85px;
        height: 85px;

        top: 12px;
        left: 12px;
    }

     .quote_large .quote-text {
        left: 7%;
        right: 7%;
        bottom: 70px;

        font-size: 1.05rem;
    }

     .quote_large cite {
        right: 7%;
        bottom: 30px;
    }
}