/* ==============================
   Elmister — Reusable UI Components
   Use these classes across the whole project.
   ============================== */

:root {
  --primary:       #f96f7e;
  --primary-dark:  #e04f61;
  --primary-light: #ffecef;
  --primary-soft:  rgba(249, 111, 126, 0.12);
  --surface:       #ffffff;
  --surface-muted: #f4f6fb;
  --border:        #e2e8f0;
  --text:          #1e293b;
  --text-muted:    #64748b;
  --danger:        #dc2626;
  --danger-bg:     #fef2f2;
  --success:       #16a34a;
  --radius-sm:     8px;
  --radius:        11px;
  --radius-lg:     16px;
  --radius-xl:     20px;
  --shadow-sm:     0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow:        0 8px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg:     0 20px 50px rgba(15, 23, 42, 0.12);
}

/* ── Buttons ── */
.ui-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
  font-family: inherit;
}

.ui-btn:disabled {
  opacity: .65;
  cursor: not-allowed;
  transform: none;
}

.ui-btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 8px 20px rgba(249, 111, 126, 0.35);
}

.ui-btn--primary:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(249, 111, 126, 0.42);
}

.ui-btn--ghost {
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--border);
}

.ui-btn--block { width: 100%; }

/* ── Form fields ── */
.ui-field { margin-bottom: 16px; }

.ui-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--field-label, #1e293b);
}

.ui-input-wrap {
  position: relative;
}

.ui-input {
  display: block;
  width: 100%;
  box-sizing: border-box;
  min-height: var(--field-min-height, 46px);
  padding-block: var(--field-padding-block, 13px);
  padding-inline: var(--field-padding-inline, 14px);
  border: var(--field-border-width, 1.5px) solid var(--field-border, #e2e6ef);
  border-radius: var(--field-radius, 11px);
  background: var(--field-bg, #fafbfc);
  font-size: 14px;
  color: var(--field-text, #1a1d24);
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  direction: inherit;
  font-family: inherit;
}

.ui-input::placeholder {
  color: var(--field-placeholder, #94a3b8);
  opacity: 1;
}

.ui-input:hover:not(:disabled):not(:focus) {
  border-color: var(--field-border-hover, #cbd5e1);
}

.ui-input:focus {
  outline: none;
  border-color: var(--field-focus-border, #94a3b8);
  box-shadow: 0 0 0 3px var(--field-focus-ring, rgba(148, 163, 184, 0.28));
  background: var(--field-bg, #fafbfc);
}

.ui-input:disabled {
  background: #f8fafc;
  color: #64748b;
  cursor: not-allowed;
  opacity: 0.85;
}

.ui-input-wrap .ui-input {
  padding-inline-start: var(--field-padding-icon, 44px);
}

.ui-input-wrap.has-toggle .ui-input {
  padding-inline-end: var(--field-padding-icon, 44px);
}

.ui-input-icon {
  position: absolute;
  top: 50%;
  inset-inline-start: 14px;
  transform: translateY(-50%);
  color: var(--field-icon, #94a3b8);
  pointer-events: none;
  display: flex;
  font-size: 16px;
  line-height: 1;
  opacity: 0.85;
}

.ui-input-toggle {
  position: absolute;
  top: 50%;
  inset-inline-end: 12px;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  color: var(--field-icon, #94a3b8);
  cursor: pointer;
  padding: 4px;
  font-size: 16px;
  line-height: 1;
  opacity: 0.85;
  transition: color .15s ease, opacity .15s ease;
}

.ui-input-toggle:hover {
  color: var(--field-focus-border, #94a3b8);
  opacity: 1;
}

/* Email / phone stay LTR for readability in all UI languages */
.ui-input[type="email"],
.ui-input[type="tel"],
.ui-input[inputmode="tel"],
.ui-input[name="emailAddress"],
.ui-input[name="username"] {
  direction: ltr;
  text-align: start;
}

/* ── Segmented tabs ── */
.ui-segment {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 4px;
  border-radius: var(--radius);
  background: var(--surface-muted);
  margin-bottom: 18px;
}

.ui-segment__btn {
  border: none;
  background: transparent;
  border-radius: calc(var(--radius-sm) + 2px);
  padding: 10px 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  transition: .15s ease;
  font-family: inherit;
}

.ui-segment__btn.is-active {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

/* ── Alerts ── */
.ui-alert {
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
  display: none;
}

.ui-alert.is-visible { display: block; }
.ui-alert--danger { background: var(--danger-bg); color: var(--danger); }
.ui-alert--success { background: #ecfdf5; color: var(--success); }
.ui-alert--warning { background: #fffbeb; color: #b45309; }

/* ── Auth layout ── */
.auth-page {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: var(--surface-muted);
  direction: inherit;
}

.auth-brand {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, #0c1528 0%, #122038 38%, #1a3352 72%, #1e3d5c 100%);
  color: #fff;
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  height: 100%;
}

.auth-brand__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.auth-brand__dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.35;
  mask-image: linear-gradient(to bottom, #000 0%, #000 55%, transparent 92%);
}

.auth-brand__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
}

.auth-brand__glow--1 {
  width: 280px;
  height: 280px;
  top: -60px;
  inset-inline-start: -40px;
  background: rgba(249, 111, 126, 0.35);
}

.auth-brand__glow--2 {
  width: 220px;
  height: 220px;
  top: 35%;
  inset-inline-end: -30px;
  background: rgba(96, 165, 250, 0.22);
}

.auth-brand__doodle {
  position: absolute;
  color: rgba(255, 255, 255, 0.12);
  width: 72px;
  height: 72px;
}

.auth-brand__doodle--book {
  top: 18%;
  inset-inline-start: 8%;
  width: 56px;
  height: 56px;
  transform: rotate(-12deg);
}

.auth-brand__doodle--pencil {
  top: 8%;
  inset-inline-end: 14%;
  width: 48px;
  height: 48px;
  transform: rotate(18deg);
}

.auth-brand__doodle--cap {
  top: 42%;
  inset-inline-start: 4%;
  width: 64px;
  height: 64px;
  opacity: 0.7;
}

.auth-brand__doodle--calc {
  bottom: 28%;
  inset-inline-end: 10%;
  width: 52px;
  height: 52px;
  transform: rotate(8deg);
}

.auth-brand__doodle--star {
  top: 28%;
  inset-inline-end: 6%;
  width: 36px;
  height: 36px;
  color: rgba(249, 111, 126, 0.25);
}

.auth-brand__doodle--abc {
  bottom: 38%;
  inset-inline-start: 12%;
  width: 44px;
  height: 44px;
  color: rgba(255, 255, 255, 0.08);
}

.auth-brand__waves {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
}

.auth-brand::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 15%, rgba(255, 255, 255, 0.06), transparent 28%),
    radial-gradient(circle at 15% 85%, rgba(249, 111, 126, 0.12), transparent 32%);
  pointer-events: none;
  z-index: 0;
}

.auth-brand__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 580px;
  margin-inline: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.auth-brand__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.auth-brand__logo-wrap {
  flex-shrink: 0;
}

.auth-brand__logo-img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.auth-brand__meta {
  min-width: 0;
}

.auth-brand__name {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.auth-brand__badge {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.62);
  margin-top: 2px;
}

.auth-brand__title {
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 900;
  line-height: 1.35;
  margin-bottom: 14px;
  max-width: 520px;
  letter-spacing: -0.5px;
}

.auth-brand__subtitle {
  font-size: 14px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
  max-width: 480px;
  margin-bottom: 22px;
}

.auth-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.auth-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  padding: 14px 14px 13px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.auth-feature:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.auth-feature__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.92);
}

.auth-feature__icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.auth-feature__body {
  flex: 1;
  min-width: 0;
  text-align: start;
}

.auth-feature__title {
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 3px;
  line-height: 1.35;
}

.auth-feature__desc {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.55;
}

.auth-brand__logo-img,
.sidebar-logo-img,
.app-logo {
  display: block;
  object-fit: contain;
  border-radius: 14px;
}

.auth-brand__logo-img.app-logo-fallback,
.app-logo-fallback.auth-brand__logo-img {
  box-shadow: 0 8px 20px rgba(249, 111, 126, 0.35);
}

.sidebar-logo-img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.app-logo-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  font-weight: 900;
  border-radius: 16px;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ui-lang-switcher {
  display: inline-flex;
  align-items: center;
}

.ui-lang-switcher .ui-lang-picker {
  width: auto;
  min-width: 148px;
}

.ui-lang-field {
  flex-shrink: 0;
  min-width: 168px;
}

.ui-lang-field__label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--field-label, #1e293b);
  margin-bottom: 6px;
}

.ui-lang-picker {
  position: relative;
  z-index: 50;
  width: 100%;
}

.ui-lang-picker__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  box-sizing: border-box;
  min-height: var(--field-min-height, 46px);
  padding-block: var(--field-padding-block, 13px);
  padding-inline: var(--field-padding-inline, 14px);
  border: var(--field-border-width, 1.5px) solid var(--field-border, #e2e6ef);
  border-radius: var(--field-radius, 11px);
  font-size: 14px;
  font-weight: 400;
  font-family: inherit;
  background: var(--field-bg, #fafbfc);
  color: var(--field-text, #1a1d24);
  cursor: pointer;
  box-shadow: none;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
  -webkit-appearance: none;
  appearance: none;
}

.ui-lang-picker__trigger:hover:not(:disabled):not(:focus) {
  border-color: var(--field-border-hover, #cbd5e1);
  background: var(--field-bg, #fafbfc);
}

.ui-lang-picker__trigger:focus {
  outline: none;
  border-color: var(--field-focus-border, #94a3b8);
  box-shadow: 0 0 0 3px var(--field-focus-ring, rgba(148, 163, 184, 0.28));
  background: var(--field-bg, #fafbfc);
}

.ui-lang-picker.is-open .ui-lang-picker__trigger {
  border-color: var(--field-focus-border, #94a3b8);
  box-shadow: 0 0 0 3px var(--field-focus-ring, rgba(148, 163, 184, 0.28));
  background: var(--field-bg, #fafbfc);
}

.ui-lang-picker__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f96f7e;
  flex-shrink: 0;
}

.ui-lang-picker__current {
  flex: 1;
  text-align: start;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ui-lang-picker__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--field-icon, #94a3b8);
  flex-shrink: 0;
  transition: transform .2s ease, color .2s ease;
}

.ui-lang-picker.is-open .ui-lang-picker__chevron {
  transform: rotate(180deg);
  color: var(--field-focus-border, #94a3b8);
}

.ui-lang-picker__menu {
  position: absolute;
  top: calc(100% + 8px);
  inset-inline-start: 0;
  inset-inline-end: 0;
  margin: 0;
  padding: 6px;
  background: var(--field-bg, #fafbfc);
  border: var(--field-border-width, 1.5px) solid var(--field-border, #e2e6ef);
  border-radius: var(--field-radius, 11px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  max-height: 280px;
  overflow-y: auto;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 2px;
  list-style: none;
}

.ui-lang-picker__menu[hidden] {
  display: none !important;
}

.ui-lang-picker__option {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  border: none;
  background: transparent;
  border-radius: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Rubik', system-ui, sans-serif;
  text-align: start;
  cursor: pointer;
  color: #1f2937;
  transition: background .12s ease, color .12s ease;
  -webkit-appearance: none;
  appearance: none;
}

.ui-lang-picker__option:hover,
.ui-lang-picker__option:focus {
  outline: none;
  background: #ffecef;
  color: #e04f61;
}

.ui-lang-picker__option.is-active {
  background: rgba(249, 111, 126, 0.12);
  color: #e04f61;
}

.ui-lang-select-wrap {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 130px;
}

.ui-lang-select-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
}

.ui-lang-select {
  width: 100%;
  min-height: var(--field-min-height, 46px);
  border: var(--field-border-width, 1.5px) solid var(--field-border, #e2e6ef);
  border-radius: var(--field-radius, 11px);
  padding: 11px 14px;
  font-size: 14px;
  font-family: inherit;
  background: var(--field-bg, #fafbfc);
  color: var(--field-text, #1a1d24);
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.ui-lang-select:hover {
  border-color: var(--field-border-hover, #cbd5e1);
}

.ui-lang-select:focus {
  outline: none;
  border-color: var(--field-focus-border, #94a3b8);
  box-shadow: 0 0 0 3px var(--field-focus-ring, rgba(148, 163, 184, 0.28));
}

.ui-lang-btn {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 10px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}

.ui-lang-btn.is-active {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: var(--primary-light);
}

.auth-panel {
  min-height: 100vh;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 24px 28px;
  overflow: visible;
  background: var(--surface-muted);
}

.auth-panel__lang {
  flex-shrink: 0;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-bottom: 8px;
  position: relative;
  z-index: 40;
}

.auth-panel__lang .ui-lang-picker {
  min-width: 148px;
  max-width: 200px;
}

.auth-panel__main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
  width: 100%;
}

.auth-card {
  width: min(100%, 460px);
  background: var(--surface);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: 28px 28px 24px;
  overflow: visible;
}

.auth-card__footer {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid var(--field-border, #e2e6ef);
}

.auth-forgot-link {
  font-size: 12px;
  font-weight: 600;
  color: var(--blue, #1565C0);
  text-decoration: none;
  white-space: nowrap;
  transition: color .15s ease;
}

.auth-forgot-link:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

.auth-card__logo-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 20px;
}

.auth-card__logo,
.auth-card__logo.app-logo-fallback {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  box-shadow: 0 6px 16px rgba(249, 111, 126, 0.25);
}

.auth-card__header {
  text-align: start;
  margin-bottom: 20px;
}

a.ui-btn {
  text-decoration: none;
}

.auth-card__title {
  font-size: 24px;
  font-weight: 900;
  color: var(--text);
}

.auth-card__subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 6px;
  line-height: 1.6;
}

.lang-switch {
  display: inline-flex;
  gap: 4px;
  background: var(--surface-muted);
  border-radius: 999px;
  padding: 4px;
}

.lang-switch button {
  border: none;
  background: transparent;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
}

.lang-switch button.is-active {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.auth-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  padding: 4px;
  background: var(--surface-muted);
  border-radius: var(--radius);
  margin-bottom: 18px;
}

.auth-tabs button {
  border: none;
  background: transparent;
  border-radius: calc(var(--radius-sm) + 2px);
  padding: 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  cursor: pointer;
  font-family: inherit;
}

.auth-tabs button.is-active {
  background: #fff;
  color: var(--primary-dark);
  box-shadow: var(--shadow-sm);
}

.auth-pane { display: none; }
.auth-pane.is-active { display: block; }

.auth-options {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 4px 0 16px;
  font-size: 12px;
}

.auth-options label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  cursor: pointer;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 14px 0 4px;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
}
.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border, #e5e7eb);
}

.auth-google {
  margin: 0 0 4px;
}
.auth-google__btn {
  display: flex;
  justify-content: center;
  width: 100%;
  min-height: 44px;
}
.auth-google__custom {
  width: 100%;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  padding: .7rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border, #e5e7eb);
  background: #fff;
  color: var(--text, #1f2937);
  font: inherit;
  font-weight: 700;
  font-size: .95rem;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease, background .15s ease;
}
.auth-google__custom:hover {
  border-color: color-mix(in srgb, var(--primary) 28%, var(--border, #e5e7eb));
  box-shadow: var(--shadow-sm, 0 1px 2px rgba(0,0,0,.06));
  background: #fafafa;
}
.auth-google__custom:disabled {
  opacity: .7;
  cursor: wait;
}
.auth-google__custom-icon {
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.auth-google__custom-text {
  text-align: center;
  line-height: 1.3;
}

.auth-google-phone {
  margin-top: 8px;
}
.auth-google-phone__hint {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.auth-phone-row {
  display: flex;
  gap: 8px;
  align-items: stretch;
}
.auth-phone-row .auth-dial {
  width: 118px;
  flex-shrink: 0;
  padding-inline: 8px;
}
.auth-phone-row input {
  flex: 1;
}

.auth-role-fields { display: none; }
.auth-role-fields.is-active { display: block; }

@media (max-width: 960px) {
  .auth-page { grid-template-columns: 1fr; }
  .auth-brand {
    min-height: auto;
    height: auto;
    padding: 32px 24px;
    justify-content: flex-start;
  }
  .auth-panel {
    min-height: auto;
    height: auto;
  }
  .auth-brand__doodle { opacity: 0.6; transform: scale(0.85); }
  .auth-features { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .auth-card { padding: 22px 18px; border-radius: var(--radius-lg); }
  .auth-brand__title { font-size: 24px; }
  .auth-features { grid-template-columns: 1fr; }
  .auth-brand__doodle--calc,
  .auth-brand__doodle--abc { display: none; }
  .ui-segment { grid-template-columns: 1fr; }
}
