/* Post FAQ Widget Styles */
.aelab-faq-widget {
    width: 100% !important;
    max-width: 100% !important;
    margin: 40px 0 !important;
    box-sizing: border-box;
    padding: 0 !important;
}

.aelab-faq-title {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    font-weight: 600;
    color: #222;
}

.aelab-faq-row {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    align-items: stretch;
    width: 100%;
    padding: 0 !important;
}

.aelab-faq-col {
    flex: 1 1 0;
    min-width: 0 !important;
    max-width: 100% !important;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 0 !important;
}

.aelab-faq-box {
    flex: 1 1 0%;
    height: 100%;
    margin: 0;
    background: #fff;
    border: 1.5px solid #e5e5e5;
    border-radius: 12px;
    padding: 18px 20px;
    box-shadow: 0 2px 8px #f3f3f3;
    transition: all 0.3s ease;
}

.aelab-faq-box:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.aelab-faq-question {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.aelab-faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #00bcd4;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.aelab-faq-question-text {
    font-weight: 600;
    font-size: 1rem;
    color: #0097a7;
    line-height: 1.4;
}

.aelab-faq-answer {
    font-size: 1rem;
    color: #444;
    line-height: 1.7;
    margin-left: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .aelab-faq-row {
        flex-direction: column !important;
        gap: 20px !important;
        align-items: stretch !important;
    }
    
    .aelab-faq-col {
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        flex: 1 1 100% !important;
        padding: 0 !important;
        display: block !important;
        gap: 15px !important;
    }
    
    .aelab-faq-box {
        margin-left: 0 !important;
        margin-right: 0 !important;
        width: 100% !important;
        display: block !important;
    }
    
    .aelab-faq-number {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        min-height: 32px !important;
        max-width: 32px !important;
        max-height: 32px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.1rem !important;
        border-radius: 50% !important;
        box-sizing: border-box !important;
        padding: 0 !important;
    }
    
    .aelab-faq-title {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .aelab-faq-box {
        padding: 15px 16px;
        margin-bottom: 15px;
    }
    
    .aelab-faq-question-text {
        font-size: 0.95rem;
    }
    
    .aelab-faq-answer {
        font-size: 0.95rem;
        margin-left: 35px;
    }
    
    .aelab-faq-number {
        width: 28px !important;
        height: 28px !important;
        min-width: 28px !important;
        min-height: 28px !important;
        max-width: 28px !important;
        max-height: 28px !important;
        font-size: 1rem !important;
        margin-right: 8px;
    }
} 