/* ==========================
   FAQ PAGE
========================== */

.op-main--faq {
    background-color: #ffffff;
  }
  
  /* ---------- breadcrumb ---------- */
  
  .faq-breadcrumb {
    padding: 2rem 0;
  }
  
  .op-breadcrumb__inner {
    font-family: var(--font-jp, 'Noto Sans JP', sans-serif);
    font-size: 1.4rem;
    letter-spacing: 0.06em;
    color: #111111;
  }
  
  .op-breadcrumb__inner a {
    color: #021237;
    text-decoration: underline;
    font-weight: 400;
    font-style: 1.4rem;
  }
  
  .op-breadcrumb__inner a:hover {
    text-decoration: underline;
  }
  
  .op-breadcrumb__sep {
    margin: 0 0.8rem;
  }
  
  .op-breadcrumb__current {
    color: #111111;
  }

  .breadcrumb-ctn.rtl {
    display: flex;
    gap: 10px;
  }
  
  /* ---------- liste FAQ ---------- */
  
  .faq {
    padding: 8rem 0 9rem;
    /* background-color: #f5f7fb; */
  }
  
  .faq__inner {
    max-width: 960px;
    margin: 0 auto;
  }
  
  .faq-list {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  .faq-item + .faq-item {
    /* margin-top: 1rem; */
  }
  
  /* card globale */
  .faq-details {
    background-color: #ffffff;
    border-radius: 0.4rem;
    border-top: 1px solid #D5D6D8;
    /* border-bottom: 1px solid #D5D6D8; */
    overflow: hidden;
  }
  .faq-item:last-of-type .faq-details {
    border-bottom: 1px solid #D5D6D8;
  }
  
  /* enlever le triangle natif de <summary> */
  .faq-summary {
        list-style: none;
    }
.faq-summary::-webkit-details-marker {
    display: none;
  }
  
  /* ligne question */
  .faq-summary {
    display: flex;
    gap: 1.6rem;
    padding: 2rem 3rem 2.5rem 2rem;
    cursor: pointer;
    align-items: baseline;
  }
  
  /* pastille Q */
  .faq-q-icon {
    height: 6rem;
    width: 6rem;
    min-width: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    font-family: var(--font-en, 'Crimson Text', serif);
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: 600;
    text-align: center;
    background-color: #113A95;
  }
  
  /* texte question */
  .faq-question {
    flex: 1 1 auto;
    font-family: var(--font-jp, 'Noto Sans JP', sans-serif);
    font-size: 2.4rem;
    letter-spacing: 0.06em;
    line-height: 1.5;
    font-weight: 500;
    color: #021237;
  }
  
  /* toggle + / - */
  .faq-toggle {
    position: relative;
    width: 1.6rem;
    height: 1.6rem;
    flex: 0 0 1.6rem;
  }
  
  .faq-toggle-bar {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 0.18rem;
    background-color: #0c4fa3;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  }
  
  .faq-toggle-bar--v {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  
  /* quand open => passe en "-" */
  .faq-details[open] .faq-toggle-bar--v {
    transform: translate(-50%, -50%) rotate(90deg) scaleX(0);
  }
  
  /* zone réponse */
  .faq-answer {
    display: flex;
    align-items: flex-start;
    gap: 1.6rem;
    padding: 2rem 3rem 2.5rem 2rem;
    /* border-top: 1px solid #e4e7ef; */
    /* background-color: #f9fbff; */
  }
  
  .faq-a-icon {
    height: 6rem;
    width: 6rem;
    min-width: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #111;
    font-family: var(--font-en, 'Crimson Text', serif);
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 0.06em;
    font-weight: 600;
    text-align: center;
    background-color: #86CFEB;
    margin-top: -1.5rem;
  }
  
  .faq-answer__content {
    font-family: var(--font-jp, 'Noto Sans JP', sans-serif);
    font-size: 1.6rem;
    line-height: 1.9;
    font-family: Noto Sans JP;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.06em;
    color: #111;
  }
  
  /* message vide */
  .faq-empty {
    text-align: center;
    font-size: 1.5rem;
    color: #666f80;
  }
  
  /* ---------- responsive ---------- */
  
  @media (max-width: 768px) {
    .faq {
      padding: 0rem 0 5rem;
    }
  
    .faq__inner {
      padding: 0 2rem;
    }
  
    .faq-summary,
    .faq-answer {
      padding: 1.6rem 1.6rem 1.8rem;
    }
    .faq-question {
      font-size: 1.8rem;
    }

  }
  