  .abhsm-org {
    --org-blue: #173f67;
    --org-blue-dark: #123452;
    --org-line: #5d6b78;
    --org-bg: #ffffff;
    --org-muted: #f4f7fb;
    font-family: "Cairo", "Arial", sans-serif;
    color: #102a43;
    background: var(--org-bg);
    padding: 24px 10px;
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .organigramme-page .content-side,
  .organigramme-page .ao-content,
  .organigramme-page .inner-box,
  .organigramme-page .actu-detail-body {
    min-width: 0;
    max-width: 100%;
  }

  .abhsm-org * {
    box-sizing: border-box;
  }

  .organigramme-media {
    margin: 0 0 28px;
    width: 100%;
    overflow: auto;
    text-align: center;
  }

  .organigramme-media img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    object-fit: contain;
  }

  .abhsm-org-title {
    text-align: center;
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 28px;
    color: var(--org-blue-dark);
  }

  .abhsm-org-level {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 28px;
    margin-bottom: 22px;
    position: relative;
  }

  .abhsm-org-card {
    background: var(--org-blue);
    color: #ffffff;
    min-width: 260px;
    max-width: 360px;
    padding: 16px 18px;
    border-radius: 3px;
    text-align: center;
    box-shadow: 0 4px 9px rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(255, 255, 255, 0.12);
  }

  .abhsm-org-card.small {
    min-width: 280px;
  }

  .abhsm-org-card.division {
    min-width: 260px;
    width: 100%;
  }

  .abhsm-org-card.service {
    width: 100%;
    min-width: 240px;
    margin-top: 14px;
  }

  .abhsm-org-card .role {
    display: block;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .abhsm-org-card .person {
    display: block;
    font-size: 15px;
    line-height: 1.35;
    margin-bottom: 8px;
  }

  .abhsm-org-card .email,
  .abhsm-org-card .email a {
    display: block;
    color: #ffffff;
    font-size: 16px;
    font-weight: 800;
    text-decoration: none;
    word-break: break-word;
  }

  .abhsm-org-card .vacant {
    display: block;
    margin-top: 18px;
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.3px;
  }

  .abhsm-org-separator {
    width: 2px;
    height: 28px;
    margin: -10px auto 14px;
    background: var(--org-line);
  }

  .abhsm-org-supports {
    display: grid;
    grid-template-columns: 1fr 330px 1fr;
    gap: 24px;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto 34px;
  }

  .abhsm-org-supports .left-support,
  .abhsm-org-supports .right-supports {
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .abhsm-org-supports .center-empty {
    min-height: 1px;
  }

  .abhsm-org-divisions {
    display: grid;
    grid-template-columns: repeat(4, minmax(230px, 1fr));
    gap: 22px;
    min-width: 1040px;
    max-width: 1180px;
    margin: 0 auto;
    align-items: start;
  }

  .abhsm-org-column {
    position: relative;
  }

  .abhsm-org-column::before {
    content: "";
    display: block;
    width: 2px;
    height: 16px;
    background: var(--org-line);
    margin: 0 auto 10px;
  }

  .abhsm-org-note {
    max-width: 960px;
    margin: 24px auto 0;
    padding: 12px 16px;
    border-right: 4px solid var(--org-blue);
    background: var(--org-muted);
    color: #334e68;
    font-size: 14px;
    line-height: 1.7;
  }

  @media (max-width: 1100px) {
    .abhsm-org-supports {
      grid-template-columns: 1fr;
      max-width: 700px;
    }

    .abhsm-org-supports .center-empty {
      display: none;
    }

    .abhsm-org-divisions {
      grid-template-columns: repeat(2, minmax(250px, 1fr));
    }
  }

  @media (max-width: 650px) {
    .abhsm-org {
      padding: 18px 6px;
    }

    .abhsm-org-title {
      font-size: 22px;
    }

    .abhsm-org-level {
      gap: 12px;
    }

    .abhsm-org-card,
    .abhsm-org-card.small,
    .abhsm-org-card.division,
    .abhsm-org-card.service {
      min-width: 100%;
      max-width: 100%;
    }

    .abhsm-org-divisions {
      grid-template-columns: 1fr;
    }
  }
