/* ============================================================
   Questudy Exam Builder — Premium SaaS Interface v3
   ============================================================ */

/* --- Design Tokens --- */
.questudy-generator-wrap.eb-wrap {
  --eb-primary: #2563EB;
  --eb-primary-hover: #1D4ED8;
  --eb-primary-light: #EFF6FF;
  --eb-primary-glow: rgba(37,99,235,0.18);
  --eb-success: #22C55E;
  --eb-success-light: #ECFDF5;
  --eb-purple: #7C3AED;
  --eb-purple-light: #F5F3FF;
  --eb-orange: #FB923C;
  --eb-orange-light: #FFF7ED;
  --eb-red: #EF4444;
  --eb-red-light: #FEF2F2;
  --eb-cyan: #0891B2;
  --eb-cyan-light: #ECFEFF;
  --eb-rose: #E11D48;
  --eb-rose-light: #FFF1F2;
  --eb-bg: #F7F9FC;
  --eb-card: #FFFFFF;
  --eb-border: #EEF2F7;
  --eb-border-input: #E2E8F0;
  --eb-text: #0F172A;
  --eb-text-secondary: #475569;
  --eb-text-muted: #6B7280;
  --eb-radius: 24px;
  --eb-radius-sm: 14px;
  --eb-radius-xs: 10px;
  --eb-shadow: 0 8px 35px rgba(20,40,80,.06);
  --eb-shadow-md: 0 12px 40px rgba(20,40,80,.08);
  --eb-shadow-lg: 0 20px 50px rgba(20,40,80,.10);
  --eb-shadow-focus: 0 0 0 4px rgba(37,99,235,0.15);
  --eb-transition: 0.25s cubic-bezier(0.4,0,0.2,1);
}

/* --- Cross-Browser SVG Reset --- */
.questudy-generator-wrap.eb-wrap svg {
  shape-rendering: geometricPrecision;
}

/* --- Container --- */
.questudy-generator-wrap.eb-wrap {
  max-width: 1350px;
  margin: 0 auto;
  padding: 40px 40px 80px;
  background: var(--eb-bg);
  color: var(--eb-text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}

/* --- Shared Card --- */
.eb-card {
  background: var(--eb-card);
  border: 1px solid var(--eb-border);
  border-radius: var(--eb-radius);
  box-shadow: var(--eb-shadow);
  padding: 32px;
  margin-bottom: 28px;
  transition: box-shadow var(--eb-transition), transform var(--eb-transition);
}

.eb-card:hover {
  box-shadow: var(--eb-shadow-md);
  transform: translateY(-2px);
}

/* --- Card Header --- */
.eb-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.eb-card-header-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eb-card-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eb-card-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.eb-card-icon--blue { background: var(--eb-primary-light); }
.eb-card-icon--blue svg { stroke: var(--eb-primary); }

.eb-card-icon--green { background: var(--eb-success-light); }
.eb-card-icon--green svg { stroke: var(--eb-success); }

.eb-card-icon--purple { background: var(--eb-purple-light); }
.eb-card-icon--purple svg { stroke: var(--eb-purple); }

.eb-card-icon--orange { background: var(--eb-orange-light); }
.eb-card-icon--orange svg { stroke: var(--eb-orange); }

.eb-card-icon--red { background: var(--eb-red-light); }
.eb-card-icon--red svg { stroke: var(--eb-red); }

.eb-card-icon--cyan { background: var(--eb-cyan-light); }
.eb-card-icon--cyan svg { stroke: var(--eb-cyan); }

.eb-card-info h3 {
  font-size: 36px;
  font-weight: 700;
  color: var(--eb-text);
  margin: 0;
  letter-spacing: -0.5px;
}

.eb-card-info p {
  font-size: 17px;
  font-weight: 400;
  color: var(--eb-text-muted);
  margin: 6px 0 0;
  line-height: 1.6;
}

/* --- Card Decorative --- */
.eb-card-decoration {
  display: flex;
  gap: 6px;
}

.eb-card-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--eb-border);
}

.eb-card-dot:nth-child(2) { background: #D1D5DB; }
.eb-card-dot:nth-child(3) { background: #E5E7EB; }

/* --- Divider --- */
.eb-divider {
  height: 1px;
  background: var(--eb-border);
  margin: 28px 0;
}

/* ============================================================
   HERO BANNER
   ============================================================ */
.eb-hero {
  display: flex;
  align-items: center;
  gap: 40px;
  background: var(--eb-card);
  border: 1px solid var(--eb-border);
  border-radius: var(--eb-radius);
  box-shadow: var(--eb-shadow);
  padding: 56px;
  margin-bottom: 28px;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  animation: eb-fadeUp 0.5s ease-out both;
}

.eb-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -80px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.eb-hero::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37,99,235,0.04) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.eb-hero-left {
  flex: 0 0 55%;
  position: relative;
  z-index: 1;
}

.eb-hero-right {
  flex: 0 0 43%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.eb-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--eb-success-light);
  color: var(--eb-success);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: 999px;
  margin-bottom: 28px;
  border: 1px solid rgba(34,197,94,0.15);
}

.eb-hero-title {
  font-size: 48px;
  font-weight: 800;
  color: var(--eb-text);
  line-height: 1.15;
  letter-spacing: -1px;
  margin: 0 0 20px;
  max-width: 600px;
}

.eb-hero-desc {
  font-size: 17px;
  font-weight: 400;
  color: var(--eb-text-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 560px;
}

.eb-hero-illustration {
  width: 100%;
  max-width: 420px;
  height: auto;
}

/* ============================================================
   FORM GRID
   ============================================================ */
.eb-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 36px;
}

/* ============================================================
   FORM FIELDS
   ============================================================ */
.eb-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.eb-field--full {
  grid-column: 1 / -1;
}

.eb-field-label {
  display: flex;
  align-items: center;
  gap: 10px;
}

.eb-field-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.eb-field-icon svg {
  width: 15px;
  height: 15px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.eb-field-icon--blue { background: var(--eb-primary-light); }
.eb-field-icon--blue svg { stroke: var(--eb-primary); }

.eb-field-icon--purple { background: var(--eb-purple-light); }
.eb-field-icon--purple svg { stroke: var(--eb-purple); }

.eb-field-icon--green { background: var(--eb-success-light); }
.eb-field-icon--green svg { stroke: var(--eb-success); }

.eb-field-icon--orange { background: var(--eb-orange-light); }
.eb-field-icon--orange svg { stroke: var(--eb-orange); }

.eb-field-icon--red { background: var(--eb-red-light); }
.eb-field-icon--red svg { stroke: var(--eb-red); }

.eb-field-icon--cyan { background: var(--eb-cyan-light); }
.eb-field-icon--cyan svg { stroke: var(--eb-cyan); }

.eb-field-label-text {
  font-size: 15px;
  font-weight: 600;
  color: var(--eb-text);
}

/* --- Inputs & Selects --- */
.questudy-generator-wrap.eb-wrap .questudy-select,
.questudy-generator-wrap.eb-wrap .questudy-input {
  width: 100%;
  height: 56px;
  padding: 0 18px;
  border: 1px solid var(--eb-border-input);
  border-radius: var(--eb-radius-sm);
  font-size: 16px;
  font-family: inherit;
  line-height: 1.5;
  color: var(--eb-text);
  background-color: var(--eb-card);
  transition: all var(--eb-transition);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
  min-height: 56px;
}

.questudy-generator-wrap.eb-wrap .questudy-select:hover,
.questudy-generator-wrap.eb-wrap .questudy-input:hover {
  border-color: #C7CDD6;
}

.questudy-generator-wrap.eb-wrap .questudy-select:focus,
.questudy-generator-wrap.eb-wrap .questudy-input:focus {
  outline: none;
  border-color: var(--eb-primary);
  box-shadow: var(--eb-shadow-focus);
}

.questudy-generator-wrap.eb-wrap .questudy-select:disabled,
.questudy-generator-wrap.eb-wrap .questudy-input:disabled {
  background-color: #F9FAFB;
  color: #9CA3AF;
  cursor: not-allowed;
}

.questudy-generator-wrap.eb-wrap .questudy-input[type="number"],
.questudy-generator-wrap.eb-wrap .questudy-input[type="text"] {
  padding-right: 18px;
  background-image: none;
}

/* --- Field Hint --- */
.eb-field-hint {
  font-size: 14px;
  color: var(--eb-text-muted);
  margin-top: -4px;
}

/* ============================================================
   OPTIONS GRID
   ============================================================ */
.eb-options-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.eb-option-card {
  background: var(--eb-card);
  border: 1px solid var(--eb-border);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  min-height: 120px;
  transition: all var(--eb-transition);
  cursor: pointer;
}

.eb-option-card:hover {
  border-color: #C7D2FE;
  box-shadow: 0 4px 12px rgba(37,99,235,0.08);
}

.eb-option-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  min-width: 0;
}

.eb-option-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eb-option-icon svg {
  width: 16px;
  height: 16px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.eb-option-icon--blue { background: var(--eb-primary-light); }
.eb-option-icon--blue svg { stroke: var(--eb-primary); }

.eb-option-icon--purple { background: var(--eb-purple-light); }
.eb-option-icon--purple svg { stroke: var(--eb-purple); }

.eb-option-icon--green { background: var(--eb-success-light); }
.eb-option-icon--green svg { stroke: var(--eb-success); }

.eb-option-icon--orange { background: var(--eb-orange-light); }
.eb-option-icon--orange svg { stroke: var(--eb-orange); }

.eb-option-icon--red { background: var(--eb-red-light); }
.eb-option-icon--red svg { stroke: var(--eb-red); }

.eb-option-icon--cyan { background: var(--eb-cyan-light); }
.eb-option-icon--cyan svg { stroke: var(--eb-cyan); }

.eb-option-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--eb-text);
  line-height: 1.3;
}

.eb-option-desc {
  font-size: 14px;
  color: var(--eb-text-muted);
  line-height: 1.4;
}

.eb-option-right {
  flex-shrink: 0;
  padding-top: 2px;
}

/* ============================================================
   iOS TOGGLE SWITCH
   ============================================================ */
.eb-toggle {
  position: relative;
  width: 52px;
  height: 28px;
  display: inline-block;
}

.eb-toggle input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.eb-toggle-track {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  border-radius: 14px;
  background: #D1D5DB;
  transition: background var(--eb-transition);
  cursor: pointer;
}

.eb-toggle-track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  transition: transform var(--eb-transition);
}

.eb-toggle input:checked + .eb-toggle-track {
  background: var(--eb-primary);
}

.eb-toggle input:checked + .eb-toggle-track::after {
  transform: translateX(24px);
}

.eb-toggle input:focus-visible + .eb-toggle-track {
  box-shadow: var(--eb-shadow-focus);
}

/* ============================================================
   PENALTY SUB-FIELD
   ============================================================ */
.eb-penalty {
  display: none;
  margin-top: 12px;
  padding: 16px 20px;
  background: #F9FAFB;
  border-radius: var(--eb-radius-xs);
  border: 1px solid var(--eb-border);
  border-left: 3px solid var(--eb-primary);
  grid-column: 1 / -1;
}

.eb-penalty.eb-visible {
  display: block;
}

.eb-penalty label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--eb-text);
  margin-bottom: 8px;
}

.questudy-generator-wrap.eb-wrap .eb-penalty .questudy-input {
  width: 140px;
  height: 46px;
  padding: 0 14px;
  font-size: 15px;
  border-radius: var(--eb-radius-xs);
  background-image: none;
  padding-right: 14px;
}

.eb-penalty-hint {
  display: block;
  font-size: 13px;
  color: var(--eb-text-muted);
  margin-top: 8px;
}

/* ============================================================
   JAMB SUBJECTS
   ============================================================ */
.eb-jamb-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 4px;
}

.questudy-jamb-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px solid var(--eb-border);
  border-radius: var(--eb-radius-xs);
  font-size: 14px;
  cursor: pointer;
  transition: all var(--eb-transition);
  background: #fff;
}

.questudy-jamb-item:hover {
  border-color: var(--eb-primary);
  background: var(--eb-primary-light);
}

.questudy-jamb-item.compulsory {
  background: var(--eb-primary-light);
  border-color: var(--eb-primary);
  color: var(--eb-primary-hover);
  font-weight: 600;
  cursor: default;
}

.questudy-jamb-item input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--eb-primary);
  cursor: pointer;
}

.questudy-jamb-item.compulsory input[type="checkbox"] {
  cursor: default;
}

/* ============================================================
   JAMB ERROR
   ============================================================ */
.questudy-notice-error {
  background: var(--eb-red-light);
  color: #991B1B;
  border: 1px solid #FECACA;
  border-left: 4px solid var(--eb-red);
  border-radius: var(--eb-radius-xs);
  padding: 12px 16px;
  font-size: 14px;
  margin-top: 12px;
}

/* ============================================================
   AI CONDITIONAL FIELDS
   ============================================================ */
#qg-ai-provider-field,
#qg-ai-model-field {
  transition: opacity var(--eb-transition);
}

/* ============================================================
   GENERATE BUTTON
   ============================================================ */
.eb-submit-wrap {
  animation: eb-fadeUp 0.5s ease-out 0.25s both;
}

.eb-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 72px;
  border: none;
  border-radius: 18px;
  background: linear-gradient(135deg, #3B82F6 0%, #1D4ED8 100%);
  color: #fff;
  font-family: inherit;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--eb-transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
  letter-spacing: -0.3px;
}

.eb-submit::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 50%);
  pointer-events: none;
}

.eb-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,99,235,0.35);
  background: linear-gradient(135deg, #60A5FA 0%, #2563EB 100%);
}

.eb-submit:active {
  transform: translateY(0);
  box-shadow: 0 4px 14px rgba(37,99,235,0.3);
}

.eb-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
  box-shadow: none !important;
}

.eb-submit svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.eb-footer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 0 0;
}

.eb-footer-note svg {
  width: 16px;
  height: 16px;
  stroke: var(--eb-text-muted);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  flex-shrink: 0;
}

.eb-footer-note span {
  font-size: 14px;
  color: var(--eb-text-muted);
}

/* ============================================================
   SPINNER / LOADING
   ============================================================ */
.eb-spinner {
  display: none;
  width: 24px;
  height: 24px;
  border: 3px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: eb-spin 0.7s linear infinite;
}

@keyframes eb-spin {
  to { transform: rotate(360deg); }
}

.eb-loading-overlay {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  inset: 0;
  z-index: 9999;
  background: rgba(15,23,42,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
}

.eb-loading-overlay.eb-active {
  display: flex;
}

.eb-loading-spinner {
  width: 52px;
  height: 52px;
  border: 4px solid rgba(255,255,255,0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: eb-spin 0.8s linear infinite;
}

.eb-loading-text {
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

/* ============================================================
   ERROR / NOTICE
   ============================================================ */
.eb-notice {
  margin-top: 20px;
  padding: 14px 18px;
  border-radius: var(--eb-radius-sm);
  font-size: 14px;
  line-height: 1.5;
  display: none;
}

.eb-notice.eb-active {
  display: block;
}

.eb-notice--error {
  background: var(--eb-red-light);
  color: #991B1B;
  border: 1px solid #FECACA;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes eb-fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.eb-card:nth-child(2) { animation: eb-fadeUp 0.5s ease-out 0.05s both; }
.eb-card:nth-child(3) { animation: eb-fadeUp 0.5s ease-out 0.1s both; }
.eb-card:nth-child(4) { animation: eb-fadeUp 0.5s ease-out 0.15s both; }

/* ============================================================
   RESPONSIVE — Tablet (<= 1199px)
   ============================================================ */
@media (max-width: 1199px) {
  .questudy-generator-wrap.eb-wrap {
    max-width: 100%;
    padding: 32px 28px 60px;
  }

  .eb-hero {
    padding: 44px;
    gap: 32px;
  }

  .eb-hero-title {
    font-size: 38px;
  }

  .eb-card-info h3 {
    font-size: 30px;
  }

  .eb-options-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — Mobile (<= 768px)
   ============================================================ */
@media (max-width: 768px) {
  .questudy-generator-wrap.eb-wrap {
    padding: 20px 16px 48px;
  }

  .eb-hero {
    flex-direction: column;
    padding: 32px 24px;
    gap: 28px;
    min-height: auto;
  }

  .eb-hero-left {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .eb-hero-right {
    flex: none;
    width: 100%;
    justify-content: center;
  }

  .eb-hero-title {
    font-size: 30px;
    max-width: none;
  }

  .eb-hero-desc {
    font-size: 16px;
    max-width: none;
  }

  .eb-hero-illustration {
    max-width: 280px;
  }

  .eb-card {
    padding: 24px 20px;
    border-radius: 20px;
    margin-bottom: 20px;
  }

  .eb-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .eb-card-decoration {
    display: none;
  }

  .eb-card-info h3 {
    font-size: 24px;
  }

  .eb-card-info p {
    font-size: 15px;
  }

  .eb-form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .eb-options-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .eb-option-card {
    min-height: auto;
    padding: 18px;
  }

  .eb-submit {
    height: 64px;
    font-size: 18px;
    border-radius: 14px;
  }
}

/* ============================================================
   RESPONSIVE — Small mobile (<= 480px)
   ============================================================ */
@media (max-width: 480px) {
  .eb-hero {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .eb-hero-title {
    font-size: 26px;
  }

  .eb-hero-illustration {
    max-width: 220px;
  }

  .eb-card {
    padding: 20px 16px;
    border-radius: 16px;
  }

  .eb-submit {
    height: 58px;
    font-size: 16px;
    border-radius: 12px;
  }

  .eb-footer-note span {
    font-size: 13px;
    text-align: center;
  }
}

/* ============================================================
   TOUCH DEVICE — suppress hover
   ============================================================ */
@media (hover: none) and (pointer: coarse) {
  .eb-card:hover {
    box-shadow: var(--eb-shadow);
    transform: none;
  }

  .eb-option-card:hover {
    border-color: var(--eb-border);
    box-shadow: none;
  }

  .eb-submit:hover {
    transform: none;
  }
}

/* ============================================================
   LANDSCAPE MOBILE
   ============================================================ */
@media (max-height: 500px) and (orientation: landscape) {
  .eb-hero {
    flex-direction: row;
    padding: 20px 32px;
    min-height: auto;
  }

  .eb-hero-left {
    text-align: left;
    flex: 0 0 55%;
  }

  .eb-hero-right {
    flex: 0 0 43%;
  }

  .eb-hero-title {
    font-size: 28px;
  }

  .eb-hero-desc {
    font-size: 14px;
    display: none;
  }

  .eb-hero-illustration {
    max-width: 200px;
  }
}