/* faq-details.css */

.faq-content {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.faq-content h1 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.faq-content .source-link {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 1.5rem;
    display: block;
}

.faq-content .answer-content {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #343a40;
}

.source-link-card {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1rem;
    margin-top: 1.5rem;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.source-link-card:hover {
    background: #e9ecef;
    border-color: #dee2e6;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.source-link-card i {
    font-size: 1.5rem;
    color: #3172ae; /* Primary color */
    margin-right: 1rem;
}

.source-link-card a {
    font-weight: 600;
    color: #3172ae;
    text-decoration: underline;
}

.sidebar .cta-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.sidebar .cta-card h5 {
    font-weight: 600;
}

.breadcrumb-nav {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #6c757d;
}

.breadcrumb-nav a {
    color: #3172ae;
    text-decoration: none;
    font-weight: 500;
}

.breadcrumb-nav a:hover {
    text-decoration: underline;
}

.breadcrumb-nav .separator {
    margin: 0 0.5rem;
}

.sidebar-container {
    margin-top: 3rem;
}
