.mrc-faq {
    display: grid;
    gap: 12px;
    width: 100%;
}

.mrc-faq-item {
    margin: 0;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
}

.mrc-faq-question {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
}

.mrc-faq-question::-webkit-details-marker {
    display: none;
}

.mrc-faq-question::marker {
    content: "";
}

.mrc-faq-question-text {
    min-width: 0;
    margin: 0;
    padding: 0;
    font: inherit;
    font-weight: 600;
    line-height: inherit;
    color: inherit;
}

.mrc-faq-icon {
    position: relative;
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
}

.mrc-faq-icon::before,
.mrc-faq-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 1.5px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform .2s ease, opacity .2s ease;
}

.mrc-faq-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.mrc-faq-item[open] .mrc-faq-icon::after {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(0deg);
}

.mrc-faq-answer {
    padding: 0 20px 20px;
    line-height: 1.6;
}

.mrc-faq-answer > :first-child {
    margin-top: 0;
}

.mrc-faq-answer > :last-child {
    margin-bottom: 0;
}

.mrc-faq-answer p {
    margin: 0 0 1em;
}

.mrc-faq-answer ul,
.mrc-faq-answer ol {
    margin: 0 0 1em 1.25em;
    padding: 0;
}

.mrc-faq-answer li + li {
    margin-top: .35em;
}

.mrc-faq-answer h2,
.mrc-faq-answer h3 {
    margin: 1.2em 0 .55em;
    line-height: 1.25;
}

.mrc-faq-answer h2 {
    font-size: 1.25em;
}

.mrc-faq-answer h3 {
    font-size: 1.1em;
}

.mrc-faq-answer a {
    text-decoration: underline;
}

.mrc-faq-error {
    padding: 12px 14px;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    background: #fff;
}

@media (max-width: 767px) {
    .mrc-faq {
        gap: 10px;
    }

    .mrc-faq-question {
        padding: 16px;
    }

    .mrc-faq-answer {
        padding: 0 16px 16px;
    }
}
