/* ===============================
   IMPRESSUM – EDITORIAL LAYOUT
================================ */

.feature-editorial {
    width: 100%;
    padding: 60px 24px 140px 24px;
    background: #ffffff;
}

/* Header Bereich */

.editorial-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.editorial-line {
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin: 0 auto 24px auto;
}

.editorial-title {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Layout */

.editorial-layout {
    max-width: 900px;
    margin: 0 auto;
}

.editorial-right {
    width: 100%;
}

/* Section Headlines */

.editorial-right h3 {
    margin-top: 48px;
    margin-bottom: 14px;
    font-size: 20px;
    font-weight: 600;
    color: var(--accent);
    position: relative;
    padding-left: 16px;
}

.editorial-right h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 18px;
    background: var(--accent);
}

/* Paragraphs */

.editorial-right p {
    font-size: 16px;
    line-height: 1.8;
    color: #444;
}

/* Links */

.editorial-right a {
    color: var(--accent);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.editorial-right a:hover {
    opacity: 0.7;
}


/* ===============================
   DEZENTE TYPOGRAPHISCHE RUHE
================================ */

.editorial-right p + h3 {
    margin-top: 56px;
}


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

@media (max-width: 768px) {

    .feature-editorial {
        padding: 120px 20px 100px 20px;
    }

    .editorial-title {
        font-size: 30px;
    }

    .editorial-right h3 {
        font-size: 18px;
    }

    .editorial-right p {
        font-size: 15px;
        line-height: 1.7;
    }

}