/* =====================================================
   ABOUT & CMS PAGES – FULL WIDTH
===================================================== */

/* ===============================
   ABOUT – SIDE BY SIDE (FULL WIDTH)
================================ */

.about-grid {
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    gap: 4rem;
    align-items: center;

    width: 200%;
    max-width: none;
    margin: 0;
    padding: 3rem 4rem;

    box-sizing: border-box;
}

/* LOGO BLOCK */
.about-logo {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 18px;
    padding: 3rem;
    text-align: center;

    /* WICHTIG: KEIN max-width mehr */
    width: 100%;

    filter: drop-shadow(0 0 30px rgba(255,26,26,0.6));
}

.about-logo img {
    width: 100%;
    max-width: 260px;

    filter: drop-shadow(0 0 25px rgba(255, 48, 80, 0.5));
}

/* CONTENT */
.about-content {
    width: 100%;
}

.about-content h2 {
    margin-bottom: 1rem;
}

.about-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
    max-width: 1000px; /* Lesbarkeit */
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 1100px) {
    .about-grid {
        padding: 2.5rem 2rem;
        gap: 3rem;
    }
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .about-content p {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
    }
}
