/* 06-content-pages.css: policies, grading rubric, about, contact, FAQ. */

.content-page {
    max-width: 860px;
    padding-top: 36px;
    padding-bottom: 56px;
}

.content-page.content-wide {
    max-width: 1080px;
}

.content-header {
    margin-bottom: 32px;
}

.content-header h1 {
    margin-bottom: 12px;
}

.content-lede {
    font-size: 1.08rem;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 700px;
}

.content-section {
    margin-bottom: 36px;
}

.content-section h2 {
    margin-bottom: 12px;
}

.content-section p {
    margin-bottom: 12px;
    line-height: 1.7;
}

.content-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

/* ---------- checklists ---------- */

.checklist {
    list-style: none;
    margin: 0 0 12px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.checklist i {
    color: var(--success);
    margin-right: 8px;
}

.checklist i.bi-shield-exclamation {
    color: var(--warning);
}

/* ---------- grading rubric ---------- */

.rubric-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.rubric-card {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rubric-card-head {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.rubric-card-head h3 {
    font-size: 1.02rem;
}

.rubric-card p {
    font-size: 0.92rem;
    margin: 0;
    flex: 1;
}

.rubric-warranty {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-top: 10px;
    border-top: 1px solid var(--border);
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand-700);
}

.rubric-warranty i {
    color: var(--brand-600);
}

/* ---------- contact ---------- */

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
}

.contact-card {
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--brand-600);
}

.contact-card h2 {
    font-size: 1.05rem;
    margin: 0;
}

.contact-card p {
    margin: 0;
}

/* ---------- FAQ ---------- */

.faq-list h2 {
    margin: 28px 0 14px;
}

.faq-list h2:first-child {
    margin-top: 0;
}

.faq-item {
    padding: 0;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 44px;
    padding: 14px 20px;
    font-weight: 600;
    color: var(--brand-900);
    cursor: pointer;
    list-style: none;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "\002B";
    font-size: 1.3rem;
    color: var(--brand-600);
    line-height: 1;
    flex-shrink: 0;
}

.faq-item[open] summary::after {
    content: "\002212";
}

.faq-item summary:hover {
    background: var(--bg-subtle);
}

.faq-answer {
    padding: 0 20px 16px;
}

.faq-answer p {
    margin: 0 0 8px;
    font-size: 0.95rem;
    line-height: 1.7;
}
