/* ============================================================
   CONTENT.CSS – Stile für alle Unterseiten (Projekt, Risk, FMEA, ...)
   Konfliktfrei · eigenständig · modern
============================================================ */

/* ===========================
   Global Content Wrapper
=========================== */
.content {
    max-width: 1300px;
    margin: 20px auto 40px;
    padding: 0px 60px 50px 60px;
    font-family: inherit;
    line-height: 1.8;
    color: var(--gray-800);
    background: #fff;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.content p {
    margin-bottom: 18px;
    font-size: 1.05rem;
}

/* ===========================
   Headings
=========================== */
.content h2 {
    margin-top: 50px;
    margin-bottom: 12px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
}

.content h3 {
    margin-top: 40px;
    margin-bottom: 8px;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* ===========================
   Ergebnisbox / Benefit Box
   (NEU: Startseiten-Style mit Einrückung + Hover)
=========================== */
.ergebnis {
    background: var(--blue-50);
    padding: 18px 24px;
    border-left: 4px solid var(--blue-600);
    border-radius: 12px;

    /* Anpassung: Einrückung wie Startseite */
    margin: 30px 0 30px 20px;

    /* Anpassung: gleiche Breite wie auf Startseite */
    max-width: 900px;

    font-weight: 600;
    color: var(--gray-800);
    transition: 0.3s ease;
}

/* Hover-Effekt wie Startseite */
.ergebnis:hover {
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    transform: translateX(5px);
}

/* ===========================
   Content Image
=========================== */
.content-image {
    max-width: 900px;
    margin: 30px auto;
    text-align: center;
    padding: 0;
}

.content-image img {
    width: 100%;
    max-width: 1300px;
    height: auto;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

/* ===========================
   CTA Block
=========================== */
.cta-block {
    margin: 80px auto;
    padding: 60px 40px;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    text-align: center;
    max-width: 900px;
}

.cta-block h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.cta-text {
    font-size: 1.1rem;
    color: var(--gray-700);
    margin-bottom: 25px;
}

.cta-icons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

.cta-item {
    background: var(--gray-100);
    padding: 10px 18px;
    border-radius: 10px;
    font-weight: 600;
    color: var(--gray-800);
    box-shadow: var(--shadow-sm);
}

.cta-big-btn {
    display: inline-block;
    padding: 14px 28px;
    background: var(--blue-600);
    color: #fff !important;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.25s ease;
    box-shadow: var(--shadow-sm);
}

.cta-big-btn:hover {
    background: var(--blue-700);
    box-shadow: var(--shadow-md);
}

/* ===========================
   Listen
=========================== */
.content ul {
    margin: 14px 0 22px;
    padding-left: 26px;
}

.content ul li {
    margin-bottom: 7px;
}

/* ===========================
   Links
=========================== */
.content a {
    font-weight: 600;
    color: var(--blue-600);
}

.content a:hover {
    color: var(--blue-800);
}

/* ===========================
   RESPONSIVE CONTENT
=========================== */
@media (max-width: 600px) {
    .content {
        padding: 28px 18px;
    }

    .cta-block {
        padding: 32px 20px;
    }
}

/* ============================================================
   HERO SPLIT – Unterseiten (Projekt, Risk, FMEA, ...)
============================================================ */

.hero.hero-split {
    max-width: 1300px;
    margin: 20px auto 30px;
    background: var(--blue-100);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    padding: 50px 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

/* linke Seite */
.hero-split .hero-content {
    flex: 1;
}

.hero-split h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 0 14px;
    line-height: 1.3;
}

.hero-split .hero-sub {
    font-size: 1.15rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* rechte Seite */
.hero-split .hero-media img {
    width: 260px;
    height: auto;
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    transition: 0.25s ease;
}

.hero-split .hero-media img:hover {
    transform: scale(1.03);
}

/* RESPONSIVE HERO */
@media (max-width: 900px) {
    .hero.hero-split {
        flex-direction: column;
        text-align: center;
        padding: 35px 24px;
    }

    .hero-split .hero-media img {
        width: 70%;
        max-width: 320px;
        margin-top: 20px;
    }

    .hero-split h1 {
        font-size: 1.8rem;
    }
}

/* ============================================
   HERO PDF LINK
============================================ */
.hero-pdf {
    margin-top: 20px;
}

.hero-pdf a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--blue-700);
    transition: 0.2s ease;
}

.hero-pdf a:hover {
    color: var(--blue-900);
}

.hero-pdf .pdf-icon {
    width: 42px;
    height: auto;
    flex-shrink: 0;
    transition: 0.2s ease;
}

.hero-pdf a:hover .pdf-icon {
    transform: scale(1.08);
}