/* FAQ v10 — accordion panel height */
.faq-answer {
    max-height: 0;
    transition: max-height 0.3s ease-in-out;
}

.faq-icon-circle { width: 1.5rem; height: 1.5rem; }

/* Bootstrap: grid + gap (row gutters often collapse) */
.tips-detailed__bs-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .tips-detailed__bs-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.tips-detailed__subtitle-max {
    max-width: 42rem;
}

.tips-detailed__thumb {
    width: 3rem;
    height: 3rem;
}

.tips-detailed__cta-thumb {
    width: 2rem;
    height: 2rem;
}

/* contact-accordion — UA reset for <summary> disclosure triangle */
.contact-accordion__summary {
    list-style: none;
    cursor: pointer;
}

.contact-accordion__summary::-webkit-details-marker {
    display: none;
}

/* contact-accordion — chevron rotation when details is open */
.contact-accordion__chevron {
    transition: transform 0.2s ease;
}

details[open] .contact-accordion__chevron {
    transform: rotate(180deg);
}

