.motor-faq {
    margin: 0 auto;
    padding: 0 0 64px;
    box-sizing: border-box;
}

.motor-faq *,
.motor-faq *::before,
.motor-faq *::after {
    box-sizing: border-box;
}

.motor-faq__hero-wrap {
    position: relative;
    width: 100%;
}

.motor-faq__hero-media {
    aspect-ratio: 1.6;
    width: 100%;
    height: 14rem;
    overflow: hidden;
}

@media (min-width: 768px) {
    .motor-faq__hero-media {
        aspect-ratio: 2.07;
        height: 22.375rem;
    }
}

@media (min-width: 1024px) {
    .motor-faq__hero-media {
        aspect-ratio: 2.57;
        height: 31.125rem;
    }
}

@media (min-width: 1536px) {
    .motor-faq__hero-media {
        aspect-ratio: 4.19;
        height: 28.625rem;
    }
}

.motor-faq__hero-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.motor-faq__hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 2rem 1rem 0;
    pointer-events: none;
}

@media (min-width: 768px) {
    .motor-faq__hero-overlay {
        padding-top: 3.875rem;
    }
}

@media (min-width: 1024px) {
    .motor-faq__hero-overlay {
        padding-top: 7.375rem;
    }
}

.motor-faq__hero-kicker {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    color: #111827;
    text-align: center;
}

@media (min-width: 768px) {
    .motor-faq__hero-kicker {
        font-size: 1.875rem;
        line-height: 2.5rem;
        font-weight: 300;
    }
}

.motor-faq__hero-title {
    margin: 0;
    font-size: 1.875rem;
    line-height: 2.5rem;
    font-weight: 500;
    color: #111827;
    text-align: center;
}

@media (min-width: 768px) {
    .motor-faq__hero-title {
        font-size: 3.75rem;
        line-height: 1;
    }
}

@media (min-width: 1024px) {
    .motor-faq__hero-title {
        font-size: 6rem;
    }
}

.motor-faq__body {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.25rem 0;
}

@media (min-width: 1024px) {
    .motor-faq__body {
        padding-top: 4rem;
    }
}

.motor-faq__layout {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .motor-faq__layout {
        flex-direction: row;
        gap: 3rem;
    }
}

.motor-faq__categories {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .motor-faq__categories--desktop {
        display: flex;
        width: 11rem;
    }

    .motor-faq__categories--mobile {
        display: none;
    }
}

@media (min-width: 1024px) {
    .motor-faq__categories--desktop {
        width: 14rem;
    }
}

.motor-faq__categories--mobile {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .motor-faq__categories--mobile {
        display: none;
    }
}

.motor-faq__category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    width: 100%;
    min-height: 2.5rem;
    padding: 0.75rem 1rem;
    border: none;
    border-radius: 0.75rem;
    background: transparent;
    color: #111827;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.25;
    text-align: left;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, outline 0.2s ease;
}

@media (min-width: 768px) {
    .motor-faq__category {
        min-height: 3rem;
        padding: 0.75rem 1.5rem;
        font-size: 1.125rem;
    }
}

.motor-faq__category:hover {
    background: #f9fafb;
}

.motor-faq__category.is-active {
    background: #111827;
    color: #f3f4f6;
    outline: 1px solid #f3f4f6;
}

.motor-faq__category--mobile {
    width: auto;
    flex: 1 1 auto;
    min-width: calc(50% - 0.25rem);
}

.motor-faq__category-icon {
    flex-shrink: 0;
    width: 1rem;
    height: 1rem;
    transition: transform 0.2s ease;
}

@media (min-width: 768px) {
    .motor-faq__category-icon {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.motor-faq__category.is-active .motor-faq__category-icon {
    color: #f3f4f6;
}

.motor-faq__panels {
    flex: 1;
    min-width: 0;
}

.motor-faq__panel {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
}

.motor-faq__panel.is-active {
    display: flex;
}

.motor-faq__item {
    border-radius: 1.5rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.motor-faq__item:hover {
    background: #f3f4f6;
}

.motor-faq__item.is-open {
    padding: 1rem;
    background: #f3f4f6;
}

@media (min-width: 768px) {
    .motor-faq__item.is-open {
        padding: 1.25rem;
    }
}

@media (min-width: 1024px) {
    .motor-faq__item.is-open {
        padding: 2rem;
    }
}

.motor-faq__item:not(.is-open) {
    padding: 1.25rem 1rem;
}

@media (min-width: 768px) {
    .motor-faq__item:not(.is-open) {
        padding: 1.5rem 1.25rem;
    }
}

@media (min-width: 1024px) {
    .motor-faq__item:not(.is-open) {
        padding: 1.5rem 2rem;
    }
}

.motor-faq__item-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
}

@media (min-width: 768px) {
    .motor-faq__item-inner {
        gap: 4rem;
    }
}

.motor-faq__item-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
}

@media (min-width: 768px) {
    .motor-faq__item-content {
        gap: 1.5rem;
    }
}

.motor-faq__question {
    margin: 0;
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    color: #111827;
}

@media (min-width: 768px) {
    .motor-faq__question {
        font-size: 1.25rem;
        line-height: 2rem;
    }
}

@media (min-width: 1024px) {
    .motor-faq__question {
        font-size: 1.5rem;
    }
}

.motor-faq__answer {
    margin: 0;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #111827;
    white-space: pre-line;
}

@media (min-width: 768px) {
    .motor-faq__answer {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .motor-faq__answer {
        font-size: 1.125rem;
    }
}

.motor-faq__toggle {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    min-height: 2.5rem;
    padding: 0.625rem;
    border: none;
    border-radius: 1.5rem;
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease;
}

@media (min-width: 768px) {
    .motor-faq__toggle {
        min-width: 3rem;
        min-height: 3rem;
        padding: 0.75rem;
    }
}

.motor-faq__toggle:hover {
    background: #e5e7eb;
}

.motor-faq__toggle-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #ef4444;
}

@media (min-width: 768px) {
    .motor-faq__toggle-icon {
        width: 2rem;
        height: 2rem;
    }
}

.motor-faq__toggle-icon--minus {
    display: none;
}

.motor-faq__item.is-open .motor-faq__toggle-icon--plus {
    display: none;
}

.motor-faq__item.is-open .motor-faq__toggle-icon--minus {
    display: block;
}
