    /* ZWORLD_CLASSIC_TROMBONE_V4_START */

    /*
     * Classic verrouillé :
     * le trombone appartient à la composition,
     * jamais aux actions directes du salon.
     */
    .attachment-wrap {
      position: relative;
      flex: 0 0 auto;
    }

    .attachment-action {
      width: 31px;
      height: 31px;
      padding: 0;

      display: grid;
      place-items: center;

      border: 0;
      border-radius: 8px;

      color: #92929a;
      background: transparent;

      cursor: pointer;
    }

    .attachment-action:hover,
    .attachment-action[aria-expanded="true"] {
      color: #f4f4f5;

      background:
        linear-gradient(
          145deg,
          #36363d,
          #1b1b1f
        );
    }

    .attachment-action svg {
      width: 17px;
      height: 17px;

      display: block;
      fill: currentColor;
    }

    .attachment-menu {
      top: auto;
      right: auto;
      left: -7px;
      bottom: calc(100% + 11px);

      width: 260px;
    }

    @media (max-width: 760px) {
      .attachment-menu {
        width:
          min(260px, calc(100vw - 38px));
      }
    }

    /* ZWORLD_CLASSIC_TROMBONE_V4_END */
