/* ========================================
   FAQ SECTION
======================================== */

.schema-faq-section {
    margin: 10px auto;
    padding: 10px;

    border: 1px solid #ddd;
    border-radius: 6px;

    font-size: 16px;
}

/* ========================================
   FAQ QUESTIONS
======================================== */

.schema-faq-question {
    font-weight: 700;

    margin-bottom: 8px;
}

/* ========================================
   FAQ ANSWERS
======================================== */

.schema-faq-answer {
    line-height: 1.7;
}

/* ========================================
   TABLE SUPPORT
======================================== */

table {
    width: 100%;

    border-collapse: collapse;
}

/* Gutenberg table wrapper */

.wp-block-table {
    overflow-x: auto;
}

/* Cells */

th,
td {
    padding: 10px;

    border: 1px solid #ddd;

    text-align: left;
}

/* Header */

th {
    background: #f5f7fa;

    font-weight: 600;
}

/* Zebra */

tr:nth-child(even) {
    background: #fafafa;
}

/* Hover */

tr:hover {
    background: #f1f5f9;
}