/* ========================================
   Hausgemacht Teaser Element
   ======================================== */

.hausgemacht-teaser {
    padding: 80px 0;
    padding-top: 112px;
    padding-bottom: 432px;
    background-color: #f5f1e9;
    border-radius: 8px;
    position: relative;
    z-index: 15;
    max-width: 1672px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -280px;
}

/* Row Spacing - mehr Abstand zwischen Bild und Text */
.hausgemacht-teaser .row {
    --bs-gutter-x: 5rem;
    padding-left: 112px;
    padding-right: 0px;
    align-items: center;
}

/* Bild Styling */
.hausgemacht-teaser .teaser-image img {
    border-radius: 0;
    box-shadow: none;
    width: 100%;
    height: auto;
}

/* Text Content */
.hausgemacht-teaser .teaser-content {
    padding-left: 0;
}

/* H1 als Überschrift */
.hausgemacht-teaser h1 {
    font-size: 36px;
    line-height: 48px;
    font-weight: 200;
    color: #000000;
    padding-bottom: 30px;
}

.hausgemacht-teaser h1 strong {
    font-weight: 500;
    color: #000;
}

/* Paragraph Styling */
.hausgemacht-teaser p {
    font-size: 1.25rem;
    font-weight: 200;
    line-height: 1.8;
    color: #000000;
    margin-bottom: 1.5rem;
}

.hausgemacht-teaser p strong {
    font-weight: 700;
}

/* Letzter Paragraph (Hinweis) */
.hausgemacht-teaser p:last-child {
    margin-bottom: 0;
}

/* ========================================
   ✅ Link Styling - Kein Blau, keine Unterstreichung
   ======================================== */

.hausgemacht-teaser a {
    color: #000000;
    text-decoration: underline;
    font-weight: 700;
    transition: color 0.3s ease;
}

.hausgemacht-teaser a:hover {
    color: #e73331;
}

.hausgemacht-teaser a:focus {
    color: #000000;
    outline: 2px solid #e73331;
    outline-offset: 2px;
}

/* Letzter Paragraph (Hinweis) */
.hausgemacht-teaser p:last-child {
    margin-bottom: 0;
}


/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1600px) {
    .hausgemacht-teaser .row {
        align-items: flex-start;
    }

    .container {
        max-width: 1400px;
    }

    .hausgemacht-teaser {
        max-width: 1300px;
    }
}

@media (max-width: 1400px) {
    .container {
        max-width: 1200px;
    }

    .hausgemacht-teaser {
        max-width: 1100px;
        padding-bottom: 220px;
    }
}

@media (max-width: 1200px) {
    .hausgemacht-teaser {
        padding-bottom: 220px;
    }

    .hausgemacht-teaser .row {
        --bs-gutter-x: 2rem;
        padding-left: 30px;
        padding-right: 30px;
    }

    .hausgemacht-teaser .container {
        max-width: 960px;
    }
}

@media (max-width: 991px) {
    .hausgemacht-teaser {
        max-width: 720px;
        padding-bottom: 220px;
    }

    .hausgemacht-teaser .row {
        --bs-gutter-x: 2rem;
        padding-left: 30px;
        padding-right: 30px;
    }

    .hausgemacht-teaser h1 {
        font-size: 2rem;
    }

    .hausgemacht-teaser p {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .hausgemacht-teaser {
        padding: 30px 0;
        padding-bottom: 85px;
    }

    .hausgemacht-teaser .row {
        --bs-gutter-x: 1.5rem;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hausgemacht-teaser h1 {
        font-size: 1.75rem;
    }
    .hausgemacht-teaser p {
        font-size: 1.1rem;
    }
}


@media (max-width: 576px) {
    .hausgemacht-teaser {
        max-width: 100%;
        margin-left: 15px;
        margin-right: 15px;
    }

    .hausgemacht-teaser .row {
        padding-left: 15px;
        padding-right: 15px;
    }
}