/* ============================================
   GLOBALE FIXES (WordPress MH Magazine Theme)
   ============================================ */

.mh-breadcrumb,
.breadcrumb,
nav.breadcrumb,
.mh-breadcrumb-wrap {
    display: none !important;
}

.mh-content header.entry-header,
.entry-header,
article > header,
.page-header,
.mh-content > .entry-header {
    display: none !important;
}

.mh-content,
.mh-content-inner,
.mh-wrapper,
.entry-content {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.mh-sidebar,
#secondary,
aside.mh-sidebar {
    display: none !important;
}

.mh-content {
    float: none !important;
    width: 100% !important;
}

.mh-container-outer {
    padding-top: 0 !important;
}

.side-rail-container,
.rail-left,
.rail-right {
    display: none !important;
}

/* Anzeigen ausblenden - NUR innerhalb des Inhaltsbereichs */
.dse-page .ad-label,
.dse-page .ad-wrapper,
.dse-page .advads-close-button,
.dse-page .advanced-ads-wrapper,
.dse-page div.advads-ad-widget,
.dse-page div[id^="advads-"] {
    display: none !important;
}

/* FOOTER SCHUTZ */
.mh-footer,
.mh-footer-wrap,
.mh-footer-area,
.mh-footer-widget-area,
.mh-footer-nav,
.mh-footer-mobile-nav,
.mh-copyright-wrap,
.mh-copyright,
footer,
footer.mh-footer,
#footer,
.site-footer {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    height: auto !important;
    overflow: visible !important;
}

/* Weißer Hintergrund */
.dse-page {
    background: #ffffff !important;
}

.mh-content article.page,
.mh-content .type-page {
    background: #ffffff !important;
}

/* ============================================
   DATENSCHUTZ STYLES
   ============================================ */

.dse-page {
    --kunst-accent: #9a1815;
    --kunst-accent-hover: #7a1210;
    --kunst-text: #333333;
    --kunst-text-dark: #1a1a1a;
    --kunst-text-light: #666666;
    --kunst-text-muted: #999999;
    --kunst-lines: #e0e0e0;
    --kunst-bg-light: #f5f5f5;
    --kunst-bg-dark: #1a1a1a;
    --kunst-white: #ffffff;
    
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: var(--kunst-text);
    background: var(--kunst-white);
}

.dse-page *,
.dse-page *::before,
.dse-page *::after {
    box-sizing: border-box;
}

/* ============================================
   SEITEN-TITEL (minimalistisch mit Akzent)
   ============================================ */

.dse-page .page-title {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 20px 25px;
    background: var(--kunst-white) !important;
}

.dse-page .page-title h1 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: clamp(2.2rem, 5vw, 2.8rem);
    font-weight: 500;
    margin: 0;
    color: var(--kunst-text-dark);
    background: transparent !important;
    display: inline-block;
    position: relative;
}

.dse-page .page-title h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--kunst-accent);
    border-radius: 2px;
}

.dse-page .page-title .stand {
    font-size: 0.9rem;
    color: var(--kunst-text-muted);
    margin-top: 20px;
}

/* ============================================
   HAUPTINHALT
   ============================================ */

.dse-page .dse-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 20px 60px;
}

.dse-page .dse-block {
    margin-bottom: 50px;
    scroll-margin-top: 20px;
}

.dse-page .dse-block:last-child {
    margin-bottom: 0;
}

.dse-page .block-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 20px 0;
    color: var(--kunst-text-dark);
    padding-bottom: 12px;
    border-bottom: 2px solid var(--kunst-accent);
    display: flex;
    align-items: center;
    gap: 12px;
}

.dse-page .block-num {
    background: var(--kunst-accent);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 600;
    flex-shrink: 0;
}

.dse-page .block-content {
    font-size: 0.95rem;
    line-height: 1.8;
}

.dse-page .block-content p {
    margin: 0 0 15px 0;
}

.dse-page .block-content p:last-child {
    margin-bottom: 0;
}

.dse-page .block-content a {
    color: var(--kunst-accent);
    text-decoration: none;
}

.dse-page .block-content a:hover {
    text-decoration: underline;
}

/* Unterabschnitte */
.dse-page .sub-section {
    background: var(--kunst-bg-light);
    border-radius: 8px;
    padding: 20px 25px;
    margin: 20px 0;
}

.dse-page .sub-section:first-child {
    margin-top: 0;
}

.dse-page .sub-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--kunst-text-dark);
    margin: 0 0 12px 0;
}

/* Listen */
.dse-page .block-content ul {
    margin: 15px 0;
    padding: 0 0 0 20px;
}

.dse-page .block-content ul li {
    margin: 0 0 8px 0;
}

/* 4-Kästen Grid */
.dse-page .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.dse-page .info-card {
    background: var(--kunst-bg-light);
    border: 1px solid var(--kunst-lines);
    border-radius: 8px;
    padding: 25px;
}

.dse-page .info-card-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--kunst-text-muted);
    margin: 0 0 15px 0;
}

.dse-page .info-card-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--kunst-text-dark);
    margin: 0 0 10px 0;
}

.dse-page .info-card p {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.dse-page .info-card p:last-child {
    margin-bottom: 0;
}

.dse-page .info-card a {
    color: var(--kunst-accent);
    text-decoration: none;
}

.dse-page .info-card a:hover {
    text-decoration: underline;
}

/* Kontakt-Box */
.dse-page .contact-box {
    background: var(--kunst-bg-light);
    border-radius: 10px;
    padding: 25px;
    margin: 20px 0;
}

.dse-page .contact-box .firma {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--kunst-text-dark);
    margin: 0 0 10px 0;
}

.dse-page .contact-box p {
    margin: 0 0 8px 0;
}

/* Rechte-Grid */
.dse-page .rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin: 20px 0;
}

.dse-page .right-item {
    background: var(--kunst-bg-light);
    border-radius: 8px;
    padding: 18px 20px;
    border-left: 3px solid var(--kunst-accent);
}

.dse-page .right-item h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--kunst-text-dark);
    margin: 0 0 8px 0;
}

.dse-page .right-item p {
    font-size: 0.88rem;
    color: var(--kunst-text-light);
    margin: 0;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .dse-page .page-title {
        padding: 35px 15px 20px;
    }
    
    .dse-page .dse-section {
        padding: 20px 15px 50px;
    }
    
    .dse-page .block-title {
        font-size: 1.3rem;
    }
    
    .dse-page .sub-section {
        padding: 18px 20px;
    }
    
    .dse-page .info-grid {
        grid-template-columns: 1fr;
    }
    
    .dse-page .rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .dse-page .block-title {
        font-size: 1.2rem;
        flex-wrap: wrap;
    }
    
    .dse-page .contact-box {
        padding: 20px;
    }
    
    .dse-page .info-card {
        padding: 20px;
    }
}
