/* ---------------------------------------------------------
   accrow — light row accordion (icon toggle on the side)
--------------------------------------------------------- */
.accrow-wrap {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}
.accrow-item {
    border: 1px solid #E8E9FF !important;
    border-radius: 16px !important;
    transition: background-color 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, margin 0.25s ease !important;
}
.accrow-item.is-open {
    border: 1px solid #E8E9FF !important;
    background-color: #F7F9FF !important;
    box-shadow: 0 4px 16px rgba(18, 25, 51, 0.05) !important;
}
.accrow-trigger {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    width: 100% !important;
    background: none !important;
    border: 0 !important;
    padding: 20px !important;
    cursor: pointer !important;
    text-align: right !important;
    font-family: inherit !important;
}
.accrow-title {
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #121933 !important;
}
.accrow-toggle {
    flex-shrink: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    background-color: #0D173F !important;
    color: #ffffff !important;
    transition: transform 0.3s ease !important;
}
.accrow-item.is-open .accrow-toggle {
    background-color: #296199 !important;
    transform: rotate(135deg) !important;
}
.accrow-body {
    max-height: 0;
    overflow: hidden !important;
    transition: max-height 0.3s ease !important;
}
.accrow-answer {
    padding: 0 20px 20px !important;
    font-size: 14px !important;
    line-height: 1.75 !important;
    color: #5C6B85 !important;
}
