@media (max-width: 460px) {
  .aspects-v8-app .controls {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "tabs tabs tabs"
      "side mark tools";
    column-gap: 6px;
    row-gap: 6px;
    padding: 7px 8px;
  }

  .aspects-v8-app .tabs {
    grid-area: tabs;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    width: 100%;
    gap: 6px;
  }

  .aspects-v8-app .tab-btn {
    min-height: 36px;
    padding: 6px 5px;
    font-size: 14px;
    line-height: 1.15;
  }

  .aspects-v8-app .side-toggle {
    grid-area: side;
    display: grid;
    grid-template-columns: auto 34px 34px;
    align-items: center;
    width: auto;
    gap: 4px;
    padding: 0;
  }

  .aspects-v8-app .side-toggle .subtle {
    font-size: 12px;
    white-space: nowrap;
  }

  .aspects-v8-app .side-btn {
    width: 34px;
    height: 34px;
    min-height: 34px;
    padding: 0;
    font-size: 15px;
    line-height: 1;
  }

  .aspects-v8-app .mark-toggle {
    grid-area: mark;
    justify-content: center;
    min-width: 0;
    width: auto;
  }

  .aspects-v8-app .mark-toggle .subtle {
    display: none;
  }

  .aspects-v8-app .mark-hint {
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0 2px;
    color: #185986;
    font-size: 12px;
    font-weight: 760;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .aspects-v8-app .tools {
    grid-area: tools;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    margin-left: 0;
  }

  .aspects-v8-app .ghost-btn {
    min-height: 34px;
    padding: 6px 8px;
    font-size: 13px;
    line-height: 1.1;
  }
}

@media (max-width: 360px) {
  .aspects-v8-app .controls {
    column-gap: 4px;
    padding-left: 7px;
    padding-right: 7px;
  }

  .aspects-v8-app .tabs {
    gap: 5px;
  }

  .aspects-v8-app .tab-btn {
    min-height: 34px;
    padding-left: 4px;
    padding-right: 4px;
    font-size: 13px;
  }

  .aspects-v8-app .side-toggle {
    grid-template-columns: auto 32px 32px;
    gap: 3px;
  }

  .aspects-v8-app .side-btn {
    width: 32px;
    height: 32px;
    min-height: 32px;
  }

  .aspects-v8-app .mark-hint {
    font-size: 11px;
  }

  .aspects-v8-app .ghost-btn {
    min-height: 32px;
    padding-left: 7px;
    padding-right: 7px;
    font-size: 12px;
  }
}
