/* FAQ Block Frontend Styles */
.thrivent-faq-block {
    padding: 2rem 0;
    font-family: 'Basis Grotesque for Thrivent', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.thrivent-faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.thrivent-faq-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.thrivent-faq-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.thrivent-faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2F4F4F;
    margin: 0;
    line-height: 1.2;
}

.thrivent-faq-contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: auto;
}

.thrivent-faq-contact-text {
    font-size: 1.125rem;
    color: #2F4F4F;
    margin: 0;
    line-height: 1.5;
}

.thrivent-faq-contact-button {
    align-self: flex-start;
}

.thrivent-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.thrivent-button--light {
    background-color: #E0EAEB;
    color: #2F4F4F;
    border-color: #2F4F4F;
}

.thrivent-button--light:hover {
    background-color: #2F4F4F;
    color: #E0EAEB;
}

.thrivent-button--dark {
    background-color: #2F4F4F;
    color: #FFFFFF;
}

.thrivent-button--dark:hover {
    background-color: #1a2f2f;
}

.thrivent-faq-right {
    display: flex;
    flex-direction: column;
}

.thrivent-faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.thrivent-faq-item {
    border-bottom: 1px solid #D1D5DB;
}

.thrivent-faq-item:last-child {
    border-bottom: none;
}

.thrivent-faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
    font-size: 1.125rem;
    font-weight: 600;
    color: #2F4F4F;
    transition: all 0.2s ease;
}

.thrivent-faq-question:hover {
    color: #1a2f2f;
}

.thrivent-faq-question.expanded {
    color: #1a2f2f;
}

.thrivent-faq-question-text {
    flex: 1;
    margin-right: 1rem;
}

.thrivent-faq-icon {
    font-size: 0.875rem;
    transition: transform 0.2s ease;
    color: #2F4F4F;
}

.thrivent-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 0 1.5rem 0;
}

.thrivent-faq-answer-text {
    font-size: 1rem;
    color: #2F4F4F;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .thrivent-faq-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .thrivent-faq-title {
        font-size: 2rem;
    }
    
    .thrivent-faq-container {
        padding: 0 0.75rem;
    }
    
    .thrivent-faq-question {
        padding: 1rem 0;
        font-size: 1rem;
    }
    
    .thrivent-faq-answer {
        padding: 0 0 1rem 0;
    }
    
    .thrivent-faq-answer-text {
        font-size: 0.875rem;
    }
}

/* Accessibility */
.thrivent-faq-question:focus {
    outline: 2px solid #2F4F4F;
    outline-offset: 2px;
}

.thrivent-faq-question:focus:not(:focus-visible) {
    outline: none;
}

/* Print styles */
@media print {
    .thrivent-faq-answer {
        max-height: none !important;
        padding: 1.5rem 0 !important;
    }
    
    .thrivent-faq-icon {
        display: none;
    }
    
    .thrivent-faq-question {
        cursor: default;
    }
} 
