/* =============================================================================
   GOLDSTANDARD ARTIKEL STYLING - PREMIUM VERSION
   Inspiriert von: The Prepared, Urban Survival Site, SurvivalBlog
   ============================================================================= */

/* === ARTIKEL CONTAINER === */
.styled-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 30px;
    background: linear-gradient(to bottom, #1a1a1a 0%, #0f0f0f 100%);
    color: #e8e8e8;
    font-size: 18px;
    line-height: 1.8;
    letter-spacing: 0.3px;
}

/* === PREMIUM HEADER === */
.premium-header {
    background: linear-gradient(135deg, #1e2a1e 0%, #2a3a2a 100%);
    border: 3px solid #4a9b8e;
    border-radius: 16px;
    padding: 3rem 2.5rem;
    margin-bottom: 4rem;
    position: relative;
    box-shadow: 0 8px 32px rgba(74, 155, 142, 0.2);
}

.premium-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
    color: #000;
    font-weight: 900;
    padding: 0.7rem 2rem;
    border-radius: 50px;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4); }
    50% { box-shadow: 0 4px 25px rgba(255, 215, 0, 0.7); }
}

.premium-header h1 {
    font-size: 3rem;
    color: #fff;
    margin: 1rem 0;
    font-weight: 900;
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}

.premium-header .subtitle {
    font-size: 1.4rem;
    color: #b8d4b8;
    margin: 1.5rem 0;
    line-height: 1.5;
    font-weight: 300;
}

.meta-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(74, 155, 142, 0.3);
}

.meta-info span {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    font-size: 1.05rem;
    color: #a8c8a8;
    font-weight: 600;
}

/* === TABLE OF CONTENTS === */
.table-of-contents {
    background: linear-gradient(135deg, #1a2a2a 0%, #2a3a3a 100%);
    padding: 2.5rem;
    border-radius: 16px;
    margin: 3rem 0;
    border: 3px solid #4a9b8e;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}

.table-of-contents h2 {
    margin-top: 0;
    color: #4a9b8e;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.table-of-contents ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.table-of-contents li {
    margin: 0.5rem 0;
}

.table-of-contents a {
    color: #d8e8d8;
    display: flex;
    align-items: center;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.05rem;
    border-left: 4px solid transparent;
    background: rgba(255,255,255,0.03);
}

.table-of-contents a:hover {
    background: rgba(74, 155, 142, 0.2);
    border-left-color: #4a9b8e;
    padding-left: 2rem;
    color: #4a9b8e;
    box-shadow: 0 4px 12px rgba(74, 155, 142, 0.3);
}

/* === TYPOGRAPHY === */
.styled-container h1 {
    font-size: 3.2rem;
    color: #fff;
    font-weight: 900;
    margin: 4rem 0 2rem 0;
    padding-bottom: 1.5rem;
    border-bottom: 5px solid #4a9b8e;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: -0.5px;
}

.styled-container h2 {
    font-size: 2.5rem;
    color: #4a9b8e;
    font-weight: 800;
    margin: 4rem 0 2rem 0;
    padding-left: 1.5rem;
    border-left: 8px solid #4a9b8e;
    background: linear-gradient(to right, rgba(74, 155, 142, 0.15) 0%, transparent 100%);
    padding: 1.2rem 1.5rem;
    border-radius: 0 12px 12px 0;
    letter-spacing: -0.3px;
}

.styled-container h3 {
    font-size: 1.9rem;
    color: #ffd700;
    font-weight: 700;
    margin: 3rem 0 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.styled-container h4 {
    font-size: 1.5rem;
    color: #b8d4b8;
    font-weight: 700;
    margin: 2.5rem 0 1.2rem 0;
}

.styled-container p {
    margin-bottom: 1.5rem;
    line-height: 1.9;
    font-size: 1.05rem;
    color: #d8d8d8;
}

.styled-container strong {
    color: #4a9b8e;
    font-weight: 700;
}

.styled-container ul,
.styled-container ol {
    margin: 2rem 0 2rem 2rem;
    line-height: 1.9;
}

.styled-container li {
    margin-bottom: 1.2rem;
    padding-left: 0.5rem;
    color: #d8d8d8;
}

.styled-container ul li::marker {
    color: #4a9b8e;
    font-size: 1.2em;
}

/* === SECTIONS === */
.styled-container section {
    margin-bottom: 5rem;
    padding-bottom: 4rem;
    border-bottom: 2px solid rgba(74, 155, 142, 0.2);
}

.styled-container section:last-of-type {
    border-bottom: none;
}

/* === PREMIUM TABLES - FINAL VERSION === */
.styled-container table {
    width: 100%;
    margin: 3rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 48px rgba(0,0,0,0.6);
    border: 4px solid #2a2a2a;
    background: #0f0f0f;
    border-collapse: separate;
    border-spacing: 0;
}

.styled-container thead {
    background: linear-gradient(135deg, #4a9b8e 0%, #3a8b7e 100%);
    box-shadow: 0 6px 20px rgba(74, 155, 142, 0.4);
}

.styled-container thead tr {
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

/* DESKTOP: ALLE TABELLEN HEADER LINKSBÜNDIG */
@media (min-width: 769px) {
    .styled-container table th,
    table th,
    .styled-container thead th,
    thead th {
        text-align: left !important;
        padding: 2rem 1.8rem !important;
        color: #fff !important;
        font-weight: 900 !important;
        font-size: 1.15rem !important;
        text-transform: none !important;
        letter-spacing: 0.5px !important;
        vertical-align: middle !important;
    }
    
    /* ALLE TABELLEN ZELLEN */
    .styled-container table td,
    table td,
    .styled-container tbody td,
    tbody td {
        text-align: left !important;
        padding: 2rem 1.8rem !important;
        color: #f0f0f0 !important;
        font-size: 1.1rem !important;
        line-height: 1.9 !important;
        vertical-align: middle !important;
    }
}

.styled-container th:last-child {
    border-right: none;
}

.styled-container td {
    padding: 2rem 1.8rem;
    border-bottom: 3px solid #0a0a0a;
    border-right: 3px solid #0a0a0a;
    vertical-align: middle;
    background: linear-gradient(135deg, #1e1e1e 0%, #1a1a1a 100%);
    color: #f0f0f0;
    font-size: 1.1rem;
    line-height: 1.9;
    font-weight: 500;
}

.styled-container td strong {
    color: #4a9b8e;
    font-weight: 800;
}

.styled-container td em {
    color: #ffd700;
    font-style: normal;
    font-weight: 700;
}

.styled-container td:last-child {
    border-right: none;
}

.styled-container tbody tr {
    transition: all 0.3s ease;
}

.styled-container tbody tr:hover {
    background: linear-gradient(135deg, #252525 0%, #202020 100%);
    box-shadow: inset 6px 0 0 #4a9b8e;
    transform: translateX(6px) scale(1.01);
}

.styled-container tbody tr:hover td {
    background: transparent;
    color: #fff;
}

.styled-container tbody tr:last-child td {
    border-bottom: none;
}

/* Star ratings using Font Awesome */
.styled-container td .stars {
    color: #ffd700;
    font-size: 1.3rem;
    letter-spacing: 3px;
    display: inline-block;
}

/* Emoji replacements with Font Awesome */
.styled-container td strong::before,
.styled-container li strong::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5rem;
    color: #4a9b8e;
}

/* Checkmark and X styling */
.styled-container td:has(.checkmark),
.styled-container li:has(.checkmark) {
    color: #4caf50;
    font-weight: 700;
}

.styled-container td:has(.xmark),
.styled-container li:has(.xmark) {
    color: #d32f2f;
    font-weight: 700;
}

/* Better text wrapping in tables */
.styled-container td {
    white-space: normal;
    word-wrap: break-word;
    max-width: 400px;
}

.styled-container td ul,
.styled-container td ol {
    margin: 0.5rem 0 0.5rem 1.5rem;
    padding: 0;
}

.styled-container td li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

/* === INFO BOXES - PREMIUM === */
.info-box,
.warning-box {
    margin: 3rem 0;
    padding: 2.5rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    border: 3px solid;
}

.info-box::before,
.warning-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 8px;
    height: 100%;
    opacity: 0.8;
}

.info-box {
    background: linear-gradient(135deg, rgba(74, 155, 142, 0.15) 0%, rgba(74, 155, 142, 0.05) 100%);
    border-color: #4a9b8e;
}

.info-box::before {
    background: linear-gradient(to bottom, #4a9b8e 0%, #3a8b7e 100%);
}

.info-box.blue {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.15) 0%, rgba(33, 150, 243, 0.05) 100%);
    border-color: #2196f3;
}

.info-box.blue::before {
    background: linear-gradient(to bottom, #2196f3 0%, #1976d2 100%);
}

.info-box.green {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(76, 175, 80, 0.05) 100%);
    border-color: #4caf50;
}

.info-box.green::before {
    background: linear-gradient(to bottom, #4caf50 0%, #388e3c 100%);
}

.info-box.yellow {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.15) 0%, rgba(255, 193, 7, 0.05) 100%);
    border-color: #ffc107;
}

.info-box.yellow::before {
    background: linear-gradient(to bottom, #ffc107 0%, #ffa000 100%);
}

.warning-box {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.15) 0%, rgba(211, 47, 47, 0.05) 100%);
    border-color: #d32f2f;
}

.warning-box::before {
    background: linear-gradient(to bottom, #d32f2f 0%, #b71c1c 100%);
}

.info-box h3,
.info-box h4,
.warning-box h3,
.warning-box h4 {
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.6rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.info-box p,
.warning-box p {
    line-height: 1.9;
    font-size: 1.05rem;
}

.info-box ul,
.info-box ol,
.warning-box ul,
.warning-box ol {
    margin-left: 2rem;
    line-height: 1.9;
}

/* === CHECKLIST GRID - PREMIUM === */
.checklist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.checklist-item {
    background: linear-gradient(135deg, #1e1e1e 0%, #1a1a1a 100%);
    padding: 1.5rem;
    border-radius: 12px;
    border: 2px solid #333;
    border-left: 6px solid #4a9b8e;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1.05rem;
    line-height: 1.7;
    position: relative;
    overflow: hidden;
}

.checklist-item::before {
    content: '☐';
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: #4a9b8e;
    transition: all 0.3s ease;
}

.checklist-item {
    padding-left: 3.5rem;
}

.checklist-item:hover {
    background: linear-gradient(135deg, #252525 0%, #1e1e1e 100%);
    border-left-color: #ffd700;
    border-color: #4a9b8e;
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 24px rgba(74, 155, 142, 0.4);
}

.checklist-item:hover::before {
    content: '☑';
    color: #ffd700;
    transform: translateY(-50%) scale(1.2);
}

/* === FAQ SECTION - PREMIUM === */
.faq-item {
    background: linear-gradient(135deg, #1e1e1e 0%, #1a1a1a 100%);
    padding: 2.5rem;
    margin: 2.5rem 0;
    border-radius: 16px;
    border: 3px solid #333;
    border-left: 8px solid #4a9b8e;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-left-color: #ffd700;
    box-shadow: 0 12px 36px rgba(74, 155, 142, 0.3);
    transform: translateX(4px);
}

.faq-item h3 {
    color: #ffd700;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.7rem;
    font-weight: 800;
}

.faq-item p {
    margin-bottom: 1.2rem;
    line-height: 1.9;
    font-size: 1.05rem;
}

.faq-item ul,
.faq-item ol {
    margin-left: 2rem;
    line-height: 1.9;
}

.faq-item strong {
    color: #4a9b8e;
    font-weight: 800;
}

/* === CTA BOX - PREMIUM === */
.cta-box {
    background: linear-gradient(135deg, #4a9b8e 0%, #3a8b7e 100%);
    padding: 4rem 3rem;
    border-radius: 20px;
    text-align: center;
    margin: 5rem 0;
    box-shadow: 0 12px 48px rgba(74, 155, 142, 0.4);
    border: 3px solid #5aaba9;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.cta-box h2 {
    color: #fff;
    margin: 0 0 1.5rem 0;
    font-size: 2.5rem;
    font-weight: 900;
    border: none;
    padding: 0;
    background: none;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.cta-box p {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #1a1a1a;
    padding: 1.3rem 3rem;
    border-radius: 50px;
    font-weight: 800;
    margin: 0.7rem;
    transition: all 0.3s ease;
    border: 3px solid #fff;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.cta-button:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(0,0,0,0.5);
    border-color: #ffd700;
}

/* === RELATED ARTICLES - PREMIUM === */
.related-articles {
    background: linear-gradient(135deg, #1e1e1e 0%, #1a1a1a 100%);
    padding: 3rem;
    border-radius: 16px;
    margin: 5rem 0;
    border: 3px solid #333;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.related-articles h2 {
    color: #4a9b8e;
    margin: 0 0 2rem 0;
    font-size: 2.2rem;
    font-weight: 800;
    border: none;
    padding: 0;
    background: none;
}

.related-articles ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.related-articles li {
    margin: 1.5rem 0;
    padding: 0;
}

.related-articles a {
    display: block;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #252525 0%, #1e1e1e 100%);
    border-radius: 12px;
    border: 2px solid #333;
    border-left: 6px solid #4a9b8e;
    transition: all 0.3s ease;
    color: #d8d8d8;
    font-weight: 600;
    font-size: 1.1rem;
}

.related-articles a:hover {
    background: linear-gradient(135deg, #2a2a2a 0%, #252525 100%);
    border-left-color: #ffd700;
    border-color: #4a9b8e;
    transform: translateX(12px);
    box-shadow: 0 8px 24px rgba(74, 155, 142, 0.3);
    color: #4a9b8e;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 1200px) {
    .styled-container table {
        font-size: 1rem;
    }
    
    .styled-container th,
    .styled-container td {
        padding: 1.5rem 1.2rem;
    }
}

/* 📱 RESPONSIVE FONT-SCALING - Passt sich automatisch an Bildschirmgröße an */
@media (max-width: 768px) {
    .styled-container {
        padding: 20px 10px;
        /* Dynamische Font-Size: 14px-16px je nach Viewport */
        font-size: clamp(14px, 3.5vw, 16px);
    }
    
    .premium-header {
        padding: 1.5rem 1rem;
    }
    
    .premium-header h1 {
        /* 1.4rem-1.8rem je nach Viewport */
        font-size: clamp(1.4rem, 4vw, 1.8rem);
    }
    
    .styled-container h2 {
        /* 1.2rem-1.5rem je nach Viewport */
        font-size: clamp(1.2rem, 3.5vw, 1.5rem);
        padding: 1rem 0.5rem;
    }
    
    .styled-container h3 {
        /* 1.1rem-1.3rem je nach Viewport */
        font-size: clamp(1.1rem, 3vw, 1.3rem);
    }
    
    .styled-container h4 {
        /* 1rem-1.2rem je nach Viewport */
        font-size: clamp(1rem, 2.5vw, 1.2rem);
    }
    
    /* Paragraphen auch responsive */
    .styled-container p {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
        line-height: 1.6;
    }
    
    .styled-container li {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    
    /* KRITISCHER FIX: Tabellen mit echtem Scroll-Container */
    .styled-container table {
        display: block;
        width: 100%;
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
        border: 2px solid #2a2a2a;
        border-radius: 8px;
        margin: 1.5rem 0;
        /* WICHTIG: Tabelle darf NICHT viewport-Breite überschreiten */
        max-width: calc(100vw - 40px);
    }
    
    /* Tabelle selbst muss breit genug sein zum Scrollen */
    .styled-container thead,
    .styled-container tbody {
        display: table;
        width: auto;
        min-width: 100%;
    }
    
    .styled-container tr {
        display: table-row;
    }
    
    .styled-container th,
    .styled-container td {
        display: table-cell;
        /* Dynamisches Padding je nach Viewport */
        padding: clamp(0.6rem, 2vw, 0.8rem) clamp(0.4rem, 1.5vw, 0.6rem) !important;
        /* Dynamische Font-Size: 0.7rem-0.85rem */
        font-size: clamp(0.7rem, 2vw, 0.85rem) !important;
        /* Dynamische Min-Width: 120px-160px */
        min-width: clamp(120px, 30vw, 160px);
        white-space: normal;
        word-break: break-word;
        vertical-align: top;
        line-height: 1.4;
    }
    
    /* Erste Spalte etwas breiter (für Beschreibungen) - RESPONSIVE */
    .styled-container th:first-child,
    .styled-container td:first-child {
        /* Dynamische Min-Width: 150px-200px */
        min-width: clamp(150px, 40vw, 200px);
        position: sticky;
        left: 0;
        /* WICHTIG: Hintergrund muss explizit sein für sticky */
        background: linear-gradient(135deg, #1e1e1e 0%, #1a1a1a 100%);
        z-index: 1;
        /* EXPLIZIT: Gleiche Font-Size wie andere Spalten! */
        font-size: clamp(0.7rem, 2vw, 0.85rem) !important;
        padding: clamp(0.6rem, 2vw, 0.8rem) clamp(0.4rem, 1.5vw, 0.6rem) !important;
    }
    
    /* Erste Spalte in Header (thead) */
    .styled-container thead th:first-child {
        background: linear-gradient(135deg, #4a9b8e 0%, #3a8b7e 100%);
    }
    
    .styled-container td strong {
        display: block;
        margin-bottom: 0.2rem;
        /* Dynamische Font-Size für Strong: 0.75rem-0.9rem */
        font-size: clamp(0.75rem, 2.2vw, 0.9rem);
        font-weight: 700;
    }
    
    .checklist-grid {
        grid-template-columns: 1fr;
    }
    
    .meta-info {
        grid-template-columns: 1fr;
    }
    
    .cta-box {
        padding: 2.5rem 1.5rem;
    }
    
    .cta-button {
        display: block;
        margin: 1rem 0;
    }
}

/* MOBILE: Scroll-Hinweis für Tabellen - RESPONSIVE FONT */
@media (max-width: 768px) {
    /* Orange Hinweis-Box VOR jeder Tabelle */
    .styled-container table {
        position: relative;
        margin-top: 3rem;
    }
    
    .styled-container table::before {
        content: '👉 Nach rechts wischen zum Scrollen →';
        position: absolute;
        top: -3rem;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
        color: #fff;
        padding: 0.8rem 1rem;
        text-align: center;
        /* Responsive Font-Size: 0.75rem-0.9rem */
        font-size: clamp(0.75rem, 2.2vw, 0.9rem);
        font-weight: 800;
        border-radius: 8px 8px 0 0;
        box-shadow: 0 4px 12px rgba(255, 152, 0, 0.4);
    }
    
    /* Rechter Pfeil-Indikator - auch responsive */
    .styled-container table::after {
        content: '→';
        position: absolute;
        right: 5px;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255, 152, 0, 0.9);
        color: #fff;
        /* Dynamische Größe: 30px-40px */
        width: clamp(30px, 8vw, 40px);
        height: clamp(30px, 8vw, 40px);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        /* Dynamische Font-Size für Pfeil */
        font-size: clamp(1.1rem, 3vw, 1.4rem);
        font-weight: 900;
        pointer-events: none;
        box-shadow: -4px 0 16px rgba(0, 0, 0, 0.5);
        animation: bounce 1.5s ease-in-out infinite;
    }
    
    @keyframes bounce {
        0%, 100% {
            transform: translateY(-50%) translateX(0);
        }
        50% {
            transform: translateY(-50%) translateX(-8px);
        }
    }
}

@media (max-width: 480px) {
    /* Noch kleinere Bildschirme: Alles etwas kompakter */
    .premium-header h1 {
        font-size: clamp(1.2rem, 5vw, 1.4rem);
    }
    
    .styled-container h2 {
        font-size: clamp(1.1rem, 4vw, 1.3rem);
    }
    
    .styled-container {
        padding: 15px 8px;
        font-size: clamp(13px, 3.2vw, 15px);
    }
    
    .styled-container th,
    .styled-container td {
        padding: clamp(0.5rem, 1.5vw, 0.6rem) clamp(0.3rem, 1vw, 0.4rem) !important;
        font-size: clamp(0.65rem, 1.8vw, 0.75rem) !important;
        min-width: clamp(100px, 28vw, 130px);
    }
    
    /* Erste Spalte - EXPLIZIT gleiche Font-Size! */
    .styled-container th:first-child,
    .styled-container td:first-child {
        min-width: clamp(130px, 38vw, 170px);
        /* EXPLIZIT: Gleiche Font-Size wie andere Spalten! */
        font-size: clamp(0.65rem, 1.8vw, 0.75rem) !important;
        padding: clamp(0.5rem, 1.5vw, 0.6rem) clamp(0.3rem, 1vw, 0.4rem) !important;
    }
    
    /* Tabelle noch kompakter */
    .styled-container table {
        max-width: calc(100vw - 20px);
        margin: 1rem 0;
    }
    
    .styled-container td strong {
        font-size: clamp(0.7rem, 2vw, 0.8rem);
    }
}

/* === PRINT STYLES === */
@media print {
    .styled-container {
        background: white;
        color: black;
    }
    
    .premium-header,
    .info-box,
    .warning-box,
    .faq-item {
        border: 2px solid #000;
        box-shadow: none;
    }
    
    .cta-box,
    .related-articles {
        display: none;
    }
}