/* =========================
   Intro
========================= */
.mrhost-faq-intro {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mrhost-faq-heading {
    font-size: 20px;
    font-weight: 600;
    color: #1D1E20;
}

.mrhost-faq-description {
    font-size: 14px;
    color: #333;
}

/* =========================
   Wrapper
========================= */
.mrhost-faq-wrapper {
    font-family: "DM Sans", sans-serif;
    display: flex;
    flex-direction: column;
    margin-top: 30px;
    gap: 16px;
}

/* Elementor fix */
.elementor-widget-container .mrhost-faq-wrapper {
    width: 100%;
}

/* =========================
   Item
========================= */
.mrhost-faq-item {
    border: 1px solid #d5dfff;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

/* =========================
   Summary
========================= */
.mrhost-faq-summary {
    list-style: none;
    cursor: pointer;
}

.mrhost-faq-summary::-webkit-details-marker {
    display: none;
}

/* =========================
   Header
========================= */
.mrhost-faq-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #fafbff;
}

.mrhost-faq-title {
    font-size: 15px;
    font-weight: 600;
    color: #1D1E20;
}

/* =========================
   Arrow
========================= */
.mrhost-faq-arrow {
    width: 8px;
    height: 8px;
    border-right: 2px solid #555;
    border-bottom: 2px solid #555;
    transform: rotate(45deg);
    transition: transform 0.2s ease;
}

.mrhost-faq-item[open] .mrhost-faq-arrow {
    transform: rotate(-135deg);
}

/* =========================
   Body
========================= */
.mrhost-faq-body {
    padding: 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    background-color: #fafbff;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
}

/* =========================
   Buttons inside answers
========================= */
.mrhost-faq-body .btn {
    background-color: #673DE6;
    color: #fff !important;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
    display: inline-block;
    white-space: nowrap;
    max-width: 200px;
    text-align: center;
}

.mrhost-faq-body .btn:hover {
    background-color: #5025D1;
}
/* =========================
   IOS summary touch fix
========================= */
.mrhost-faq-summary {
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

.mrhost-faq-summary:focus {
    outline: none;
}