/* Styles for the [nq_faq] shortcode, extracted from the original faq-reference.md markup. */

.tonic-faq-section {
    max-width: 850px;
    margin: 40px auto;
    font-family: "Helvetica Neue", Arial, sans-serif;
    padding: 0 15px;
    color: #333;
}
.tonic-faq-header {
    text-align: center;
    font-size: 28px;
    color: #2c2c2c;
    margin-bottom: 35px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.tonic-faq-wrapper {
    border-top: 1px solid #e0e0e0;
}
.tonic-faq-item {
    border-bottom: 1px solid #e0e0e0;
}
.tonic-faq-btn {
    width: 100%;
    padding: 22px 15px;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    outline: none;
}
.tonic-faq-btn:hover {
    background-color: #fcfcfc;
}
.tonic-faq-btn strong {
    font-size: 17px;
    font-weight: 600;
    color: #1a1a1a;
    padding-right: 20px;
}
.tonic-icon-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid #b59560;
    border-bottom: 2px solid #b59560;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-right: 5px;
}
.tonic-faq-btn.active .tonic-icon-arrow {
    transform: rotate(-135deg);
}
.tonic-faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #fff;
}
.tonic-faq-content {
    padding: 0 15px 25px 15px;
    line-height: 1.8;
    color: #555;
    font-size: 16px;
}
@media (max-width: 600px) {
    .tonic-faq-header { font-size: 22px; }
    .tonic-faq-btn strong { font-size: 16px; }
}
