/* Hausinfos Page - Clean & Minimal Design */

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

/* Hausinfos Grid - Symmetrisch */
.hausinfos-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* Clean White Cards - Gleiche Höhe */
.hausinfos-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;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: stretch;
}

.hausinfos-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 */
.hausinfos-item h2 span[style*="font-size:28px"] {
    font-size: 22px !important;
    font-weight: 600;
    color: #2c3e50;
    display: block;
    margin-bottom: 15px;
    padding-bottom: 8px;
    border-bottom: 2px solid #ecf0f1;
}

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

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

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

/* Mobile Responsive - Symmetrisch */
@media (max-width: 1024px) {
    .hausinfos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        max-width: 800px;
    }
}

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

@media (max-width: 480px) {
    .gallery-container {
        padding: 20px 10px;
    }
    
    .hausinfos-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 100%;
    }
    
    .hausinfos-item {
        padding: 18px;
        border-radius: 4px;
    }
    
    .hausinfos-item h2 span[style*="font-size:28px"] {
        font-size: 17px !important;
    }
    
    .hausinfos-item p span[style*="font-size:18px"] {
        font-size: 13px !important;
    }
}