/* =====================================================
   EK4YOU – Artikel Styling
   ===================================================== */

   #maincontent {
    background: #f8f9fa;
}

/* Container */
#maincontent .container-fluid {
    max-width: 1100px;
}

/* Headline Bereich */
#usp {
    background: #ffffff;
    border-radius: 14px;
    padding: 60px 40px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin-bottom: 50px;
}

.headline-category {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
}

#usp p {
    font-size: 1.2rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

/* Artikelbereich */
.article-content {
    background: #ffffff;
    padding: 60px 50px;
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
    line-height: 1.75;
    font-size: 1.05rem;
    color: #333;
}

/* Bilder */
.article-content img {
    width: 100%;
    border-radius: 12px;
    margin: 40px 0;
}

/* Überschriften */
.article-content h2 {
    font-size: 1.9rem;
    margin-top: 60px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #0d3b2e;
}

.article-content h3 {
    font-size: 1.4rem;
    margin-top: 40px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #1a1a1a;
}

/* Listen */
.article-content ul,
.article-content ol {
    margin: 20px 0 30px 25px;
}

.article-content li {
    margin-bottom: 10px;
}

/* Tabellen */
.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 0.95rem;
}

.article-content th {
    background: #0d3b2e;
    color: #fff;
    padding: 14px;
    text-align: left;
}

.article-content td {
    padding: 14px;
    border-bottom: 1px solid #ddd;
}

.article-content tr:nth-child(even) {
    background: #f4f6f7;
}

/* Blockquotes */
.article-content blockquote {
    background: #eef5f2;
    border-left: 5px solid #0d3b2e;
    padding: 20px 25px;
    margin: 40px 0;
    font-style: italic;
    border-radius: 8px;
}

/* Links */
.article-content a {
    color: #0d3b2e;
    font-weight: 600;
    text-decoration: none;
}

.article-content a:hover {
    text-decoration: underline;
}

/* ================================
   Mobile Full Width Fix
   ================================ */

   @media (max-width: 768px) {

    /* Bootstrap Container Padding entfernen */
    #maincontent .container,
    #maincontent .container-fluid {
        padding-left: 0 !important;
        padding-right: 0 !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    /* Karten-Look entfernen */
    .article-content {
        padding: 25px 20px;
        border-radius: 0;
        box-shadow: none;
    }

    .article-content table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .article-content th,
    .article-content td {
        white-space: nowrap;
    }

    #usp {
        padding: 30px 20px;
        border-radius: 0;
        box-shadow: none;
    }

    /* Bilder wirklich Edge-to-Edge */
    .article-content img {
        border-radius: 0;
        margin-left: 0;
        margin-right: 0;
    }

}
