/* wp-content/themes/certponto/blocks/certponto-faq/style.css */

.certponto-faq-list {
	margin: 20px 0;
}

/* Styling for individual FAQ items on the front-end */
.wp-block-certponto-faq-block .certponto-faq-item {
    margin-bottom: 15px; /* Space between FAQ items */
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0; /* Light separator */
}

/* Remove bottom border from the last FAQ item */
.wp-block-certponto-faq-block .certponto-faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

/* Styling for the question heading on the front-end */
.wp-block-certponto-faq-block h3.faq-question {
    font-size: 1.1em;
    font-weight: bold;
    margin-top: 0; /* Remove default top margin */
    margin-bottom: 10px; /* Space below question */
    line-height: 1.3;
}

/* Styling for the answer text on the front-end */
.wp-block-certponto-faq-block .faq-answer {
    font-size: 1em;
    line-height: 1.7;
}