/* Wissenswertes Page - Clean & Minimal Design */

/* Page Container */
.gallery-container {
    padding: 40px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Wissenswertes Grid */
.wissenswertes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

/* Clean White Cards */
.wissenswertes-item {
    background: #ffffff;
    border-radius: 6px;
    padding: 25px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    transition: box-shadow 0.2s ease;
}

.wissenswertes-item:hover {
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

/* Typography - Clean */
.wixui-rich-text__text {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

/* Titles */
.wissenswertes-item h2 span[style*="font-size:28px"] {
    font-size: 24px !important;
    font-weight: 600;
    color: #2c3e50;
    display: block;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ecf0f1;
}

/* Main text */
.wissenswertes-item p span[style*="font-size:18px"] {
    font-size: 16px !important;
    color: #555;
    line-height: 1.6;
    margin-bottom: 12px;
}

/* Subtitles */
.wissenswertes-item p span[style*="font-size:20px"] {
    font-size: 16px !important;
    font-weight: 600;
    color: #34495e;
}

/* Detail text */
.wissenswertes-item p span[style*="font-size:16px"] {
    font-size: 14px !important;
    color: #666;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .gallery-container {
        padding: 30px 15px;
    }
    
    .wissenswertes-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .wissenswertes-item {
        padding: 20px;
    }
    
    .wissenswertes-item h2 span[style*="font-size:28px"] {
        font-size: 20px !important;
        margin-bottom: 12px;
    }
    
    .wissenswertes-item p span[style*="font-size:18px"] {
        font-size: 15px !important;
    }
    
    .wissenswertes-item p span[style*="font-size:20px"] {
        font-size: 15px !important;
    }
}

@media (max-width: 480px) {
    .gallery-container {
        padding: 20px 10px;
    }
    
    .wissenswertes-item {
        padding: 18px;
        border-radius: 4px;
    }
    
    .wissenswertes-item h2 span[style*="font-size:28px"] {
        font-size: 18px !important;
    }
}