/* Category Page - Custom Intro/Supporting Copy */

.category-intro-section {
    background: #f8f9fa;
    padding: 40px 20px;
    margin-bottom: 40px;
}

.category-intro-content {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
}

.category-intro-content p {
    margin-bottom: 16px;
}

/* Supporting Copy Section */

.category-supporting-section {
    padding: 60px 20px;
    background: #fff;
    border-top: 1px solid #eee;
}

.category-supporting-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.category-supporting-copy {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

.category-supporting-copy h3 {
    font-size: 22px;
    font-weight: 600;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #222;
    border-bottom: 2px solid #e02b20;
    padding-bottom: 8px;
}

.category-supporting-copy h3:first-child {
    margin-top: 0;
}

.category-supporting-copy p {
    margin-bottom: 16px;
}

.category-supporting-copy strong {
    font-weight: 600;
    color: #222;
}

/* FAQ Section */

.category-faq-section {
    padding: 60px 20px;
    background: #f8f9fa;
    border-top: 1px solid #eee;
}

.category-faq-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.category-faq-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

.faq-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 30px;
}

.faq-item {
    background: #fff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-size: 18px;
    font-weight: 600;
    color: #e02b20;
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-answer {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

/* Responsive */

@media (max-width: 768px) {
    .category-intro-section,
    .category-supporting-section,
    .category-faq-section {
        padding: 30px 15px;
    }

    .category-supporting-copy h3 {
        font-size: 18px;
        margin-top: 30px;
    }

    .faq-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-item {
        padding: 18px;
    }
}
