:root {
  --ar-bg: #f4f5f2;
  --ar-panel: #ffffff;
  --ar-card: #ffffff;
  --ar-ink: #121827;
  --ar-muted: #727784;
  --ar-line: #e9e3d7;
  --ar-brand: #f3c847;
  --ar-brand-dark: #8a6b00;
  --ar-green: #178f5b;
  --ar-blue: #255fcf;
  --ar-red: #b83f3f;
  --ar-shadow: 0 18px 44px rgba(31, 36, 48, .08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ar-bg);
  color: var(--ar-ink);
  font-family: "Poppins", "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}

button,
input,
select {
  font: inherit;
}

.ar-login {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 20px;
  background:
    linear-gradient(120deg, rgba(18, 24, 39, .84), rgba(18, 24, 39, .36)),
    radial-gradient(circle at 78% 28%, rgba(243, 200, 71, .44), transparent 30%),
    linear-gradient(135deg, #4d5867 0%, #1a2230 60%, #cab36c 100%);
}

.ar-login-card {
  width: min(460px, 100%);
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, .18);
  padding: 28px;
}

.ar-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff7d5;
  border: 1px solid #eadb91;
  color: var(--ar-brand-dark);
  font-weight: 900;
  overflow: hidden;
  flex: 0 0 auto;
}

.ar-logo-image {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  padding: 10px;
  background: #fff;
  justify-self: start;
}

.ar-logo-wide {
  width: min(360px, 100%);
  height: 132px;
  border-radius: 8px;
  padding: 12px 16px;
}

.ar-logo-square {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  padding: 10px;
}

.ar-logo-tall {
  width: 96px;
  height: 128px;
  border-radius: 8px;
  padding: 10px;
}

.ar-logo-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ar-eyebrow {
  margin: 0 0 6px;
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .08em;
  color: var(--ar-brand-dark);
  font-weight: 900;
}

.ar-muted {
  color: var(--ar-muted);
  line-height: 1.45;
}

.ar-login-card h1,
.ar-topbar h1,
.ar-hero h2,
.ar-card h3 {
  margin: 0;
  line-height: 1.12;
}

.ar-login-card form {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.ar-login-card label {
  font-size: 13px;
  color: #4d5566;
  font-weight: 800;
}

.ar-login-card input {
  min-height: 46px;
  border: 1px solid var(--ar-line);
  border-radius: 8px;
  padding: 0 14px;
}

.ar-login-card button,
.ar-card button,
.ar-card-head button,
.ar-action-button {
  min-height: 42px;
  border: 0;
  border-radius: 8px;
  padding: 0 16px;
  background: var(--ar-brand);
  color: #3a2d00;
  font-weight: 900;
  cursor: pointer;
}

.ar-action-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.ar-back-button,
.ar-login-card .ar-back-button {
  width: auto;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 18px;
  margin: 0 0 18px;
  border: 1px solid #eadb91;
  border-radius: 8px;
  background: #fff7d5;
  color: var(--ar-brand-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(23,27,38,.08);
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, background .16s ease;
}

.ar-back-button:before {
  content: "\2190";
  font-weight: 900;
  color: var(--ar-brand-dark);
}

.ar-back-button:hover,
.ar-login-card .ar-back-button:hover {
  border-color: var(--ar-brand);
  color: var(--ar-brand-dark);
  background: var(--ar-brand);
  box-shadow: 0 14px 26px rgba(23,27,38,.12);
  transform: translateY(-1px);
}

.ar-back-button-inline {
  margin: 0;
  flex: 0 0 auto;
}

.ar-alert {
  margin-top: 14px;
  border: 1px solid #efc5c5;
  background: #fff2f2;
  color: var(--ar-red);
  border-radius: 8px;
  padding: 12px;
  font-weight: 800;
}

.ar-alert-soft {
  border-color: #eadb91;
  background: #fff5d2;
  color: var(--ar-brand-dark);
}

.ar-ok {
  margin-top: 14px;
  border: 1px solid #b7dcbd;
  background: #e9f7ef;
  color: var(--ar-green);
  border-radius: 8px;
  padding: 12px;
  font-weight: 800;
}

.ar-dashboard-alert {
  margin: 0 0 14px;
}

.ar-login-extra {
  margin-top: 14px;
  border-top: 1px solid var(--ar-line);
  padding-top: 12px;
}

.ar-login-extra summary {
  cursor: pointer;
  color: var(--ar-brand-dark);
  font-weight: 900;
}

.ar-login-extra form {
  margin-top: 12px;
}

.ar-result {
  margin-top: 18px;
  padding: 14px;
  border: 1px solid var(--ar-line);
  border-radius: 8px;
  background: #fbfaf4;
  word-break: break-word;
}

.ar-admin-invite-card {
  width: min(760px, 100%);
}

.ar-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
}

.ar-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  background: #fff;
  border-right: 1px solid var(--ar-line);
  padding: 18px 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.ar-sidebar a {
  width: 66px;
  min-height: 42px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  text-decoration: none;
  color: #202436;
  font-size: 11px;
  font-weight: 800;
  border: 1px solid transparent;
}

.ar-sidebar a.active {
  background: var(--ar-brand);
  border-color: var(--ar-brand);
}

.ar-main {
  padding: 22px 28px 46px;
  min-width: 0;
}

.ar-topbar {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 18px;
}

.ar-topbar-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.ar-user-pill {
  border: 1px solid #eadb91;
  background: #fff7d5;
  color: var(--ar-brand-dark);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
}

.ar-hero {
  border-radius: 8px;
  color: #fff;
  padding: 26px;
  box-shadow: var(--ar-shadow);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 18px;
  align-items: center;
  background: linear-gradient(120deg, #111827, #414a58);
}

.ar-accent-gold {
  background:
    radial-gradient(circle at 82% 22%, rgba(243, 200, 71, .34), transparent 28%),
    linear-gradient(120deg, #111827, #414a58);
}

.ar-accent-green {
  background:
    radial-gradient(circle at 82% 22%, rgba(23, 143, 91, .36), transparent 28%),
    linear-gradient(120deg, #10251d, #34463d);
}

.ar-accent-blue {
  background:
    radial-gradient(circle at 82% 22%, rgba(37, 95, 207, .34), transparent 28%),
    linear-gradient(120deg, #111827, #293d67);
}

.ar-hero p {
  color: rgba(255, 255, 255, .82);
  margin: 10px 0 0;
}

.ar-context-panel {
  margin: 18px 0;
  background: var(--ar-panel);
  border: 1px solid var(--ar-line);
  border-radius: 8px;
  padding: 18px;
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(0, 1.2fr);
  gap: 16px;
  box-shadow: var(--ar-shadow);
}

.ar-context-panel h2 {
  margin: 0 0 8px;
  line-height: 1.14;
}

.ar-context-panel p {
  margin: 0;
  color: var(--ar-muted);
  line-height: 1.45;
}

.ar-context-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
}

.ar-context-card {
  border: 1px solid var(--ar-line);
  border-radius: 8px;
  padding: 12px;
  text-decoration: none;
  color: var(--ar-ink);
  background: #fff;
  display: grid;
  gap: 5px;
}

.ar-context-card strong {
  font-size: 14px;
}

.ar-context-card span {
  color: var(--ar-muted);
  font-size: 12px;
  line-height: 1.35;
}

.ar-context-card.active {
  border-color: #eadb91;
  background: #fff8dd;
  box-shadow: inset 0 0 0 1px rgba(243, 200, 71, .32);
}

.ar-context-crm {
  border-color: #c7d7ff;
  background: #f4f7ff;
}

.ar-kpi {
  border: 1px solid rgba(255, 255, 255, .2);
  background: rgba(255, 255, 255, .12);
  border-radius: 8px;
  padding: 16px;
}

.ar-kpi span {
  display: block;
  color: rgba(255, 255, 255, .72);
  margin-bottom: 8px;
  font-size: 12px;
  text-transform: uppercase;
  font-weight: 900;
}

.ar-kpi strong {
  font-size: 24px;
}

.ar-role-tabs {
  margin: 16px 0;
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.ar-role-tabs a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  border-radius: 999px;
  border: 1px solid var(--ar-line);
  background: #fff;
  color: #313746;
  text-decoration: none;
  padding: 0 13px;
  white-space: nowrap;
  font-weight: 900;
  font-size: 13px;
}

.ar-role-tabs a span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #cfd3db;
}

.ar-role-tabs a.active {
  background: #fff7d5;
  border-color: #d1b43f;
  color: #3a2d00;
}

.ar-role-tabs a.active span {
  background: var(--ar-brand-dark);
}

.ar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ar-card {
  background: var(--ar-panel);
  border: 1px solid #ece8df;
  border-radius: 8px;
  box-shadow: var(--ar-shadow);
  padding: 18px;
  min-width: 0;
}

.ar-card-wide {
  grid-column: span 2;
}

.ar-card-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.ar-card p {
  color: var(--ar-muted);
  line-height: 1.45;
}

.ar-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.ar-chip-list span {
  border: 1px solid #e7e9ef;
  background: #fafbfc;
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.ar-slots {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ar-slots button {
  background: #fafbfc;
  color: #343948;
  border: 1px solid #e7e9ef;
  min-height: 38px;
}

.ar-slots button.on {
  background: #eaf8ef;
  color: var(--ar-green);
  border-color: #b7dcbd;
}

.ar-slots button.match {
  background: #fff5bd;
  color: var(--ar-brand-dark);
  border-color: #ead15f;
}

.ar-availability-form {
  display: grid;
  gap: 9px;
  margin-top: 12px;
}

.ar-availability-form label {
  font-size: 12px;
  color: #5d6370;
  font-weight: 900;
}

.ar-availability-form input,
.ar-availability-form select {
  width: 100%;
  min-height: 40px;
  border: 1px solid var(--ar-line);
  border-radius: 8px;
  background: #fff;
  color: var(--ar-ink);
  padding: 0 11px;
}

.ar-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.ar-form-row-single {
  grid-template-columns: 1fr;
}

.ar-calendar-picker {
  border: 1px solid #eee7d2;
  border-radius: 8px;
  background: linear-gradient(180deg, #fffdf3, #fff);
  padding: 12px;
}

.ar-calendar-head {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) 38px;
  gap: 8px;
  align-items: center;
  margin-bottom: 10px;
}

.ar-calendar-head strong {
  text-align: center;
  font-size: 15px;
  font-weight: 950;
}

.ar-calendar-head button {
  min-height: 36px;
  padding: 0;
  border: 1px solid #eadb91;
  background: #fff;
  color: var(--ar-brand-dark);
}

.ar-calendar-weekdays,
.ar-calendar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}

.ar-calendar-weekdays span {
  color: #6b7280;
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}

.ar-calendar-day {
  min-height: 38px;
  border: 1px solid #ece8df;
  border-radius: 8px;
  background: #fff;
  color: var(--ar-ink);
  font-weight: 900;
  cursor: pointer;
}

.ar-calendar-day:hover {
  border-color: #b7dcbd;
  background: #f1fbf5;
}

.ar-calendar-day.is-selected {
  border-color: #178f5b;
  background: #178f5b;
  color: #fff;
}

.ar-calendar-day.is-today {
  box-shadow: inset 0 0 0 2px rgba(243,200,71,.64);
}

.ar-calendar-day.is-disabled,
.ar-calendar-day.is-empty {
  cursor: default;
  opacity: .36;
  background: #f6f6f6;
}

.ar-calendar-day.is-empty {
  border-color: transparent;
  background: transparent;
}

.ar-selected-days {
  margin: 10px 0 0;
  color: var(--ar-green);
  font-size: 12px;
  font-weight: 900;
}

.ar-property-list {
  display: grid;
  gap: 9px;
}

.ar-property {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border: 1px solid #f0ece5;
  background: #fff;
  border-radius: 8px;
  padding: 12px;
}

.ar-property p {
  margin: 4px 0 0;
}

.ar-property span {
  border-radius: 999px;
  background: #fff7d5;
  color: var(--ar-brand-dark);
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 900;
}

.ar-empty {
  border: 1px dashed #d9d3c7;
  border-radius: 8px;
  padding: 16px;
  color: var(--ar-muted);
}

.ar-doc-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border-top: 1px solid #f0ece5;
  padding: 11px 0;
}

.ar-doc-row span {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: #fff7d5;
  color: var(--ar-brand-dark);
  font-weight: 900;
  font-size: 10px;
}

.ar-doc-row a,
.ar-doc-row button {
  background: #fff;
  border: 1px solid #eadb91;
  border-radius: 8px;
  color: var(--ar-brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 64px;
  min-height: 34px;
  padding: 0 12px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 900;
}

.ar-doc-row strong {
  display: block;
  overflow-wrap: anywhere;
}

.ar-doc-row small,
.ar-doc-row em {
  display: block;
  color: var(--ar-muted);
  font-size: 12px;
  font-style: normal;
  line-height: 1.35;
}

.ar-doc-section {
  margin-top: 14px;
}

.ar-doc-section h4 {
  margin: 0 0 6px;
  font-size: 13px;
  color: #4c5362;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .04em;
}

.ar-mini-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.ar-mini-kpis div {
  border: 1px solid #eee7d2;
  border-radius: 8px;
  padding: 10px;
}

.ar-mini-kpis strong {
  display: block;
  font-size: 22px;
}

.ar-mini-kpis span {
  color: var(--ar-muted);
  font-size: 12px;
  font-weight: 800;
}

.ar-timeline {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.ar-timeline div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  border-top: 1px solid #f0ece5;
  padding-top: 8px;
}

.ar-timeline strong {
  overflow-wrap: anywhere;
}

.ar-timeline span {
  color: var(--ar-muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.ar-timeline.compact div {
  grid-template-columns: auto minmax(0, 1fr);
}

.ar-choice {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.84), rgba(255,255,255,.55)),
    radial-gradient(circle at 18% 0%, rgba(243,200,71,.28), transparent 34%),
    var(--ar-bg);
}

.ar-choice-card {
  width: min(1120px, 100%);
  background: rgba(255,255,255,.96);
  border: 1px solid var(--ar-line);
  border-radius: 16px;
  box-shadow: 0 24px 70px rgba(23,27,38,.12);
  padding: 28px;
  margin: 0 auto;
}

.ar-choice-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
}

.ar-choice-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

.ar-choice-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.ar-choice-brand small {
  display: block;
  color: var(--ar-muted);
  font-size: 12px;
  font-weight: 700;
}

.ar-choice-brand strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ar-choice-card h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
}

.ar-choice-card .ar-muted {
  max-width: 780px;
  margin: 14px 0 28px;
  font-size: 16px;
  line-height: 1.55;
}

.ar-choice-list {
  margin-top: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.ar-choice-list .ar-context-card {
  min-height: 118px;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.ar-choice-list .ar-context-card:hover {
  transform: translateY(-2px);
  border-color: rgba(128,100,0,.45);
  box-shadow: 0 15px 32px rgba(23,27,38,.1);
}

.ar-choice-list .ar-context-card strong {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 16px;
  font-weight: 950;
}

.ar-choice-list .ar-context-card strong:after {
  content: "\2192";
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #fff7d5;
  color: var(--ar-brand-dark);
  flex: 0 0 auto;
}

.ar-choice-list .ar-context-card span {
  font-size: 13px;
}

.ar-choice-list .ar-context-crm {
  background: linear-gradient(180deg,#f7faff,#edf3ff);
  border-color: #d8e2f6;
}

.ar-choice-list .ar-context-crm strong:after {
  background: #dfe9ff;
  color: #2b5cb8;
}

.ar-choice-logout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 15px;
  margin-top: 0;
  border: 1px solid var(--ar-line);
  border-radius: 999px;
  background: #fff;
  color: #3b4250;
  font-size: 13px;
  font-weight: 850;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(23,27,38,.05);
}

.ar-choice-logout:before {
  content: "\2190";
  font-weight: 900;
  color: var(--ar-brand-dark);
}

.ar-choice-logout:hover {
  border-color: var(--ar-brand);
  color: var(--ar-brand-dark);
}

.ar-access-gateway {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(120deg, rgba(18, 24, 39, .88), rgba(18, 24, 39, .52)),
    radial-gradient(circle at 80% 20%, rgba(243, 200, 71, .38), transparent 34%),
    var(--ar-bg);
}

.ar-access-panel {
  width: min(920px, 100%);
  background: #fff;
  border: 1px solid var(--ar-line);
  border-radius: 12px;
  box-shadow: var(--ar-shadow);
  padding: 30px;
}

.ar-access-panel > .ar-back-button {
  margin-bottom: 18px;
}

.ar-access-panel h1 {
  margin: 8px 0 10px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.05;
}

.ar-access-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.ar-access-card {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 22px;
  padding: 20px;
  border: 1px solid #eadb91;
  border-radius: 10px;
  background: #fff9df;
  color: var(--ar-ink);
  text-decoration: none;
}

.ar-access-card strong {
  font-size: 24px;
}

.ar-access-card span {
  color: var(--ar-muted);
  line-height: 1.45;
}

.ar-access-card-dark {
  background: #161d2b;
  border-color: #161d2b;
  color: #fff;
}

.ar-access-card-dark span {
  color: rgba(255, 255, 255, .72);
}

@media (max-width: 1080px) {
  .ar-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ar-choice-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .ar-shell {
    grid-template-columns: 1fr;
  }

  .ar-sidebar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    height: 64px;
    z-index: 20;
    flex-direction: row;
    justify-content: space-around;
    padding: 8px;
    border-top: 1px solid var(--ar-line);
    border-right: 0;
  }

  .ar-sidebar .ar-logo {
    display: none;
  }

  .ar-sidebar a {
    width: auto;
    min-width: 54px;
    min-height: 44px;
    padding: 0 8px;
  }

  .ar-main {
    padding: 14px 12px 86px;
  }

  .ar-choice {
    padding: 14px;
    align-items: flex-start;
  }

  .ar-choice-card {
    padding: 18px;
  }

  .ar-access-gateway {
    padding: 12px;
  }

  .ar-access-panel {
    padding: 20px;
  }

  .ar-access-actions {
    grid-template-columns: 1fr;
  }

  .ar-choice-top {
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .ar-choice-actions,
  .ar-topbar-actions {
    justify-content: flex-start;
  }

  .ar-choice-list {
    grid-template-columns: 1fr;
  }

  .ar-choice-card h1 {
    font-size: 32px;
  }

  .ar-logo-wide {
    width: min(100%, 320px);
    height: 124px;
  }

  .ar-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .ar-hero {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .ar-context-panel {
    grid-template-columns: 1fr;
    padding: 14px;
  }

  .ar-grid {
    grid-template-columns: 1fr;
  }

  .ar-card-wide {
    grid-column: auto;
  }

  .ar-card-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .ar-property,
  .ar-doc-row {
    grid-template-columns: 1fr;
  }

  .ar-property span,
  .ar-doc-row a,
  .ar-doc-row button {
    justify-self: start;
  }

  .ar-form-row,
  .ar-timeline div,
  .ar-timeline.compact div {
    grid-template-columns: 1fr;
  }

  .ar-timeline span {
    white-space: normal;
  }
}
