/* HR FAQ Schema Minimal Style */
.hr-faq.hr-faq-minimal {
    margin: 2em 0;
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}

.hr-faq-minimal .hr-faq__item {
    border-bottom: 1px solid #eee;
    margin: 0;
}

.hr-faq-minimal .hr-faq__item:last-child {
    border-bottom: none;
}

.hr-faq-minimal .hr-faq__q {
    padding: 0.6em 0.8em;
    cursor: pointer;
    position: relative;
    padding-right: 2.5em;
    transition: background-color 0.3s ease;
}

.hr-faq-minimal .hr-faq__q:hover {
    background-color: #f9f9f9;
}

.hr-faq-minimal .hr-faq__q:focus {
    outline: none !important;
}

.hr-faq-minimal .hr-faq__q::after {
    content: '';
    position: absolute;
    right: 1em;
    top: 50%;
    width: 7px;
    height: 7px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform-origin: center;
    transition: transform 0.3s ease;
    transform: translateY(-50%) rotate(45deg);
}

.hr-faq-minimal .hr-faq__item--active .hr-faq__q::after,
.hr-faq-minimal .hr-faq__item[open] .hr-faq__q::after {
    transform: translateY(-50%) rotate(-135deg);
}

.hr-faq-minimal .hr-faq__a {
    padding: 0 1em 1em;
}

/* Accessibility improvements */
.hr-faq-minimal .hr-faq__q:focus {
    outline: 2px solid #0073aa;
    outline-offset: -2px;
}