/**
 * BRK Impressum - Frontend CSS
 * 
 * Optionale Styles für das Frontend-Impressum
 * Kann im Theme überschrieben werden
 */

.brk-impressum {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    max-width: 800px;
    margin: 0 auto;
}

.brk-impressum h2 {
    font-size: 1.8em;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #d70f1d;
    border-bottom: 2px solid #d70f1d;
    padding-bottom: 0.3em;
}

.brk-impressum h3 {
    font-size: 1.4em;
    margin-top: 1.3em;
    margin-bottom: 0.5em;
    color: #333;
}

.brk-impressum h4 {
    font-size: 1.2em;
    margin-top: 1em;
    margin-bottom: 0.5em;
    color: #333;
}

.brk-impressum p {
    margin-bottom: 1em;
}

.brk-impressum a {
    color: #d70f1d;
    text-decoration: none;
    transition: all 0.3s ease;
}

.brk-impressum a:hover {
    text-decoration: underline;
    color: #b50d18;
}

.brk-impressum strong {
    font-weight: 600;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .brk-impressum {
        padding: 0 15px;
    }
    
    .brk-impressum h2 {
        font-size: 1.5em;
    }
    
    .brk-impressum h3 {
        font-size: 1.2em;
    }
}

/* Print Styles */
@media print {
    .brk-impressum a {
        color: #000;
        text-decoration: none;
    }
    
    .brk-impressum a::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #666;
    }
}
