/* eBoardResults Homepage — front-end styles (scoped under .ebrh-root). */

.ebrh-root {
  --green: #059669;
  --green-dark: color-mix(in srgb, var(--green) 75%, #000);
  --green-mid: color-mix(in srgb, var(--green) 85%, #fff);
  --green-soft: color-mix(in srgb, var(--green) 60%, #fff);
  --green-tint: color-mix(in srgb, var(--green) 6%, #fff);
  --green-tint-2: color-mix(in srgb, var(--green) 3%, #fff);
  --blue: #2563eb;
  --blue-tint: #eef3fe;
  --danger: #ef4444;
  --card: #ffffff;
  --page: #f1f5f9;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.16);
  --text: #090d16;
  --body: #1e293b;
  --muted: #334155;
  --hint: #64748b;
  --radius: 24px;
  --radius-sm: 16px;
  --radius-lg: 28px;
  --radius-pill: 999px;
  --shadow-xs: 0 1px 2px rgba(15, 23, 42, 0.03);
  --shadow-sm: 0 4px 6px -1px rgba(15, 23, 42, 0.04), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 10px 15px -3px rgba(15, 23, 42, 0.06), 0 4px 6px -4px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.08);
  --shadow-xl: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.03);
  --shadow-green: 0 12px 20px -6px color-mix(in srgb, var(--green) 35%, transparent);
  --shadow-card: 0 16px 24px -6px rgba(15, 23, 42, 0.04), 0 6px 12px rgba(15, 23, 42, 0.02), 0 0 0 1px rgba(15, 23, 42, 0.02);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --maxw: 1200px;
  
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans Bengali", "Nirmala UI", sans-serif;
  background: transparent;
  color: var(--text);
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.ebrh-root * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.ebrh-root h1, .ebrh-root h2, .ebrh-root h3, .ebrh-root h4 {
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
  color: var(--text);
}

.ebrh-root a {
  color: inherit;
  text-decoration: none;
}

.ebrh-root button {
  font-family: inherit;
  cursor: pointer;
}

.ebrh-root ul, .ebrh-root ol {
  list-style: none;
}

.ebrh-root img, .ebrh-root svg {
  display: block;
  max-width: 100%;
}

.ebrh-root .ebrh-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Liberation Mono', monospace;
  letter-spacing: -0.02em;
}

.ebrh-root ::selection {
  background: var(--green);
  color: #fff;
}

.ebrh-root :focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.45);
  outline-offset: 2px;
  border-radius: 8px;
}

.ebrh-wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 10px;
}

/* SECTIONS */
.ebrh-section {
  padding: 40px 0;
  position: relative;
}

.ebrh-section.ebrh-tint {
  background: transparent;
}

.ebrh-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-dark);
  background: color-mix(in srgb, var(--green) 8%, transparent);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid color-mix(in srgb, var(--green) 20%, transparent);
}

.ebrh-eyebrow-ico {
  width: 14px;
  height: 14px;
}

.ebrh-section-head {
  max-width: 680px;
  margin: 0 auto 40px;
  text-align: center;
}

.ebrh-section-head h2 {
  font-size: clamp(28px, 3.6vw, 42px);
  margin: 12px 0;
}

.ebrh-section-head p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

/* BUTTONS */
.ebrh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  padding: 14px 24px;
  border-radius: 14px;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  text-decoration: none;
}

.ebrh-btn svg {
  width: 18px;
  height: 18px;
}

.ebrh-root a.ebrh-btn-primary, 
.ebrh-root .ebrh-btn-primary, 
.ebrh-root .ebrh-btn-primary:hover, 
.ebrh-root .ebrh-btn-primary:focus {
  color: #fff !important;
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  box-shadow: var(--shadow-green);
}

.ebrh-root a.ebrh-btn-primary:hover, 
.ebrh-root .ebrh-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 24px -5px color-mix(in srgb, var(--green) 50%, transparent);
}

.ebrh-root a.ebrh-btn-secondary, 
.ebrh-root .ebrh-btn-secondary, 
.ebrh-root .ebrh-btn-secondary:hover {
  color: var(--text) !important;
  background: var(--card);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-xs);
}

.ebrh-root a.ebrh-btn-secondary:hover, 
.ebrh-root .ebrh-btn-secondary:hover {
  transform: translateY(-2px);
  border-color: color-mix(in srgb, var(--text) 20%, transparent);
  box-shadow: var(--shadow-sm);
}

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

.ebrh-btn-lg {
  padding: 16px 32px;
  font-size: 17px;
  border-radius: 16px;
}

.ebrh-btn-sm {
  padding: 10px 18px;
  font-size: 14px;
  border-radius: 10px;
}

.ebrh-nav-cta {
  padding: 10px 20px;
  font-size: 14px;
}

/* MOBILE DRAWER */
.ebrh-mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease), visibility 0.3s var(--ease);
}

.ebrh-mobile-menu.ebrh-open {
  opacity: 1;
  visibility: visible;
}

.ebrh-mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(85%, 340px);
  height: 100%;
  background: #fff;
  padding: 28px 24px;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
}

.ebrh-mobile-menu.ebrh-open .ebrh-mobile-panel {
  transform: none;
}

.ebrh-mp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.ebrh-mp-close {
  background: none;
  border: none;
  padding: 8px;
  color: var(--text);
  border-radius: 50%;
  transition: background-color 0.2s;
}

.ebrh-mp-close:hover {
  background: var(--page);
}

.ebrh-mp-close svg {
  width: 24px;
  height: 24px;
}

.ebrh-mobile-panel a {
  padding: 14px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, padding-left 0.2s;
}

.ebrh-mobile-panel a:hover {
  color: var(--green);
  padding-left: 8px;
}

.ebrh-mobile-panel .ebrh-btn {
  margin-top: 24px;
}

/* HERO */
.ebrh-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.ebrh-orb-1 {
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, color-mix(in srgb, var(--green) 35%, transparent), transparent 70%);
  top: -120px;
  right: -60px;
}

.ebrh-orb-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.2), transparent 70%);
  bottom: -160px;
  left: -80px;
}

.ebrh-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.ebrh-hero-grid.is-single {
  grid-template-columns: 1fr;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.ebrh-hero-left {
  padding-top: 12px;
}

.ebrh-hero h1 {
  font-size: clamp(34px, 4.5vw, 54px);
  margin: 10px 0 18px;
  letter-spacing: -0.03em;
  text-transform: none;
  line-height: 1.1;
}

.ebrh-tagline {
  font-size: clamp(16px, 2vw, 21px);
  font-weight: 700;
  color: var(--green);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.ebrh-tagline::before {
  content: "";
  width: 32px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--green), var(--green-mid));
}

.ebrh-lead {
  font-size: 18px;
  line-height: 1.8;
  color: var(--muted);
  max-width: 580px;
  margin: 0;
}

.ebrh-root .ebrh-lead a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ebrh-hero-grid.is-single .ebrh-tagline {
  justify-content: center;
}

.ebrh-hero-grid.is-single .ebrh-lead {
  margin-left: auto;
  margin-right: auto;
  max-width: 720px;
}

.ebrh-hero-right {
  width: 100%;
}

/* HERO NAV */
.ebrh-hero-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 12px 24px;
  box-shadow: var(--shadow-sm);
}

.ebrh-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.03em;
}

.ebrh-brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ebrh-brand-logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.ebrh-brand b {
  color: var(--green);
}

.ebrh-nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.ebrh-nav-links a {
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 10px;
  transition: all 0.25s var(--ease);
}

.ebrh-nav-links a:hover {
  color: var(--text);
  background: rgba(15, 23, 42, 0.04);
}

.ebrh-nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ebrh-nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--text);
  border-radius: 8px;
}

.ebrh-nav-toggle:hover {
  background: rgba(15, 23, 42, 0.04);
}

.ebrh-nav-toggle svg {
  width: 24px;
  height: 24px;
}

/* CHECKER CARD */
.ebrh-checker {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.ebrh-checker:hover {
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 25px 60px -15px rgba(15, 23, 42, 0.15);
}

.ebrh-checker-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--green-tint-2), #fff);
}

.ebrh-checker-top .ebrh-ttl {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 15px;
}

.ebrh-checker-top .ebrh-ico {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--green-tint);
  border: 1px solid color-mix(in srgb, var(--green) 12%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ebrh-checker-top .ebrh-ico svg {
  width: 18px;
  height: 18px;
  color: var(--green);
}

.ebrh-checker-top .ebrh-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-tint);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid color-mix(in srgb, var(--green) 10%, transparent);
}

.ebrh-checker-top .ebrh-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.5);
  animation: ebrh-pulse 2s infinite;
}

@keyframes ebrh-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(5, 150, 105, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(5, 150, 105, 0);
  }
}

.ebrh-checker-body {
  padding: 20px;
}

.ebrh-field-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ebrh-cfield {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.ebrh-cfield.ebrh-full {
  grid-column: 1 / -1;
}

.ebrh-cfield label {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: -0.01em;
}

.ebrh-muted-inline {
  color: var(--hint);
  font-weight: 400;
}

.ebrh-ctrl {
  position: relative;
}

.ebrh-cfield select, .ebrh-cfield input {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  background: #f8fafc;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  padding: 11px 14px;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background-color 0.25s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

.ebrh-cfield select {
  padding-right: 36px;
  cursor: pointer;
}

.ebrh-cfield input::placeholder {
  color: var(--hint);
  font-weight: 400;
  opacity: 0.7;
}

.ebrh-cfield select:focus, .ebrh-cfield input:focus {
  outline: none;
  border-color: var(--green);
  background: #fff;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--green) 12%, transparent);
}

.ebrh-cfield .ebrh-ctrl::after {
  content: "";
  position: absolute;
  right: 14px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.ebrh-cfield input.ebrh-no-arrow ~ .ebrh-ctrl::after {
  display: none;
}

.ebrh-field-grid .ebrh-cfield {
  margin-bottom: 0;
}

.ebrh-checker-foot {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.ebrh-checker-foot svg {
  width: 16px;
  height: 16px;
  color: var(--green);
  flex-shrink: 0;
}

.ebrh-checker-foot b {
  color: var(--text);
  font-weight: 700;
}

/* by-device toggle */
.ebrh-checker-toggle {
  display: flex;
  gap: 6px;
  background: rgba(15, 23, 42, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 5px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-xs);
}

.ebrh-ct-btn {
  flex: 1;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  transition: all 0.25s var(--ease);
}

.ebrh-ct-btn.is-active {
  background: linear-gradient(135deg, var(--green-mid), var(--green));
  color: #fff;
  box-shadow: var(--shadow-green);
}

/* Result-type field groups in the static checker (toggled by JS). */
.ebrh-checker-static .ebrh-rt-fields[hidden] {
  display: none;
}

/* Remove padding on the live-checker shortcode's own container. */
.ebrh-root .checker-container {
  padding: 0 !important;
}

/* By-device mode: each device shows exactly one checker, with no toggle.
   Desktop -> static card only.  Mobile -> live checker only. */
.ebrh-bydevice .ebrh-checker-toggle {
  display: none;
}

@media (min-width: 1081px) {
  .ebrh-bydevice .ebrh-checker-live {
    display: none !important;
  }
}

@media (max-width: 1080px) {
  .ebrh-bydevice .ebrh-checker-static {
    display: none !important;
  }
}

/* ABOUT */
.ebrh-about-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 32px;
  align-items: center;
}

.ebrh-about-text .ebrh-eyebrow {
  margin-bottom: 16px;
}

.ebrh-about-text h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  margin-bottom: 16px;
}

.ebrh-about-text p {
  color: var(--body);
  font-size: 16.5px;
  line-height: 1.75;
  margin-bottom: 16px;
}

.ebrh-about-text p b {
  color: var(--text);
  font-weight: 700;
}

.ebrh-about-text .ebrh-mono {
  color: var(--green-dark);
  font-weight: 700;
}

.ebrh-about-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ebrh-fact-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.ebrh-fact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: color-mix(in srgb, var(--green) 15%, transparent);
}

.ebrh-fact-card .ebrh-fi {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-tint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border: 1px solid color-mix(in srgb, var(--green) 8%, transparent);
}

.ebrh-fact-card .ebrh-fi svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.ebrh-fact-card .ebrh-fn {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}

.ebrh-fact-card .ebrh-fl {
  font-size: 13.5px;
  color: var(--muted);
  font-weight: 600;
  margin-top: 4px;
}

/* STEPS */
.ebrh-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}

.ebrh-steps::before {
  content: "";
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, color-mix(in srgb, var(--green) 25%, transparent) 0 6px, transparent 6px 12px);
  z-index: 0;
}

.ebrh-step {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ebrh-step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.ebrh-step:hover .ebrh-step-num {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--green);
}

.ebrh-step-num svg {
  width: 26px;
  height: 26px;
  color: var(--green);
}

.ebrh-step-num .ebrh-tag {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-xs);
}

.ebrh-step h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.ebrh-step p {
  font-size: 14.5px;
  color: var(--muted);
  max-width: 210px;
  margin: 0 auto;
  line-height: 1.6;
}

/* RESULT TYPES GRID */
.ebrh-rt-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ebrh-rt-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.ebrh-rt-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--green) 15%, transparent);
}

.ebrh-rt-card .ebrh-ri {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  margin-bottom: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-tint);
  border: 1px solid color-mix(in srgb, var(--green) 12%, transparent);
}

.ebrh-rt-card .ebrh-ri svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.ebrh-rt-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ebrh-rt-card p {
  font-size: 15.5px;
  color: var(--body);
  margin-bottom: 18px;
  flex: 1;
  line-height: 1.65;
}

.ebrh-root .ebrh-rt-view {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--green);
  align-self: flex-start;
  background: var(--green-tint);
  padding: 8px 16px;
  border-radius: 10px;
  transition: background-color 0.25s, color 0.25s, transform 0.25s var(--ease);
  border: 1px solid transparent;
}

.ebrh-rt-view svg {
  width: 16px;
  height: 16px;
  transition: transform 0.25s var(--ease);
}

.ebrh-rt-card:hover .ebrh-rt-view {
  background: var(--green);
  color: #fff !important;
}

.ebrh-rt-card:hover .ebrh-rt-view svg {
  transform: translateX(4px);
  color: #fff !important;
}

/* RT DETAIL */
.ebrh-rtsec {
  padding: 56px 0;
  border-top: 1px solid var(--border);
}

.ebrh-rtsec.ebrh-tint {
  background: linear-gradient(180deg, var(--green-tint-2), #fff);
}

.ebrh-rtsec-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.ebrh-rtsec.ebrh-alt .ebrh-rtsec-grid {
  direction: rtl;
}

.ebrh-rtsec.ebrh-alt .ebrh-rtsec-grid > * {
  direction: ltr;
}

.ebrh-rtsec-left .ebrh-rt-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--green);
}

.ebrh-rtsec-left .ebrh-rt-eyebrow .ebrh-rn {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Liberation Mono', monospace;
  background: var(--green);
  color: #fff;
  width: 28px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
}

.ebrh-rtsec-left h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  margin: 14px 0;
}

.ebrh-rtsec-left p {
  color: var(--body);
  font-size: 16.5px;
  line-height: 1.7;
  margin-bottom: 18px;
}

.ebrh-rt-see {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.ebrh-rt-see li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15.5px;
  color: var(--text);
}

.ebrh-rt-see li svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}

.ebrh-rt-who {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.ebrh-rt-who span {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--green-dark);
  background: var(--green-tint);
  border: 1px solid color-mix(in srgb, var(--green) 12%, transparent);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
}

.ebrh-rt-panel {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.ebrh-rt-panel:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(15, 23, 42, 0.12);
}

.ebrh-rt-panel-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, var(--green-tint-2), #fff);
}

.ebrh-rt-panel-head .ebrh-ph-ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-tint);
  border: 1px solid color-mix(in srgb, var(--green) 12%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ebrh-rt-panel-head .ebrh-ph-ico svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.ebrh-rt-panel-head .ebrh-ph-t {
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.ebrh-rt-panel-head .ebrh-ph-h {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--text);
}

.ebrh-rt-steps {
  padding: 8px 20px 20px;
  counter-reset: s;
}

.ebrh-rt-steps li {
  counter-increment: s;
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15.5px;
  color: var(--body);
  align-items: center;
}

.ebrh-rt-steps li:last-child {
  border-bottom: none;
}

.ebrh-rt-steps li::before {
  content: counter(s);
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: var(--green-tint);
  color: var(--green-dark);
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Liberation Mono', monospace;
}

/* EXAM CARDS */
.ebrh-exr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ebrh-exr-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.ebrh-exr-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--green) 15%, transparent);
}

.ebrh-exr-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 18px 12px;
}

.ebrh-exr-head .ebrh-et {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ebrh-exr-head .ebrh-ei {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--green-tint), var(--green-tint-2));
  border: 1px solid color-mix(in srgb, var(--green) 10%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ebrh-exr-head .ebrh-ei svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.ebrh-exr-head h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.ebrh-exr-head .ebrh-pub {
  font-size: 12px;
  color: var(--muted);
  margin-top: 3px;
}

.ebrh-status {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.ebrh-status.ebrh-live {
  color: var(--green);
  background: var(--green-tint);
  border: 1px solid color-mix(in srgb, var(--green) 15%, transparent);
}

.ebrh-status.ebrh-soon {
  color: #854d0e;
  background: #fef9c3;
  border: 1px solid rgba(133, 77, 14, 0.15);
}

.ebrh-exr-stats {
  padding: 4px 18px 10px;
}

.ebrh-exr-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}

.ebrh-exr-row:last-child {
  border-bottom: none;
}

.ebrh-exr-row .ebrh-k {
  font-size: 14.5px;
  color: var(--muted);
  font-weight: 500;
}

.ebrh-exr-row .ebrh-v {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Liberation Mono', monospace;
  letter-spacing: -0.02em;
}

.ebrh-exr-row .ebrh-v.ebrh-dash {
  color: #cbd5e1;
}

.ebrh-exr-foot {
  padding: 12px 18px 18px;
  margin-top: auto;
}

/* BOARD CARDS */
.ebrh-bdr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ebrh-bdr-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 20px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.ebrh-bdr-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--green) 15%, transparent);
}

.ebrh-bdr-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ebrh-bdr-emblem {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
}

.ebrh-bdr-emblem img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.ebrh-bdr-top h3 {
  font-size: 19px;
  font-weight: 700;
}

.ebrh-bdr-desc {
  font-size: 15px;
  color: var(--body);
  margin-bottom: 14px;
  line-height: 1.65;
}

.ebrh-bdr-table {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 14px;
}

.ebrh-bdr-table .ebrh-th {
  display: flex;
  justify-content: space-between;
  background: var(--green-tint-2);
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.ebrh-bdr-table .ebrh-tr {
  display: flex;
  justify-content: space-between;
  padding: 10px 12px;
  font-size: 13.5px;
  border-bottom: 1px solid var(--border);
}

.ebrh-bdr-table .ebrh-tr:last-child {
  border-bottom: none;
}

.ebrh-bdr-table .ebrh-tr .ebrh-k {
  color: var(--muted);
  font-weight: 500;
}

.ebrh-bdr-table .ebrh-tr .ebrh-v {
  font-weight: 700;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, 'Liberation Mono', monospace;
  color: var(--text);
}

.ebrh-bdr-web {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-bottom: 16px;
}

.ebrh-bdr-web svg {
  width: 14px;
  height: 14px;
  color: var(--green);
  flex-shrink: 0;
}

.ebrh-bdr-web a {
  color: var(--green);
  font-weight: 600;
  word-break: break-all;
  transition: color 0.2s;
}

.ebrh-bdr-web a:hover {
  color: var(--green-dark);
  text-decoration: underline;
}

.ebrh-bdr-card .ebrh-btn {
  margin-top: auto;
}

.ebrh-bdr-analytics {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--green);
  background: var(--green-tint);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 12px;
  width: fit-content;
  border: 1px solid color-mix(in srgb, var(--green) 12%, transparent);
}

.ebrh-bdr-analytics svg {
  width: 14px;
  height: 14px;
}

/* promo card */
.ebrh-bdr-promo {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border: none;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: #fff;
}

.ebrh-bdr-promo h3 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 8px;
}

.ebrh-bdr-promo p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14.5px;
  margin-bottom: 18px;
  line-height: 1.6;
}

.ebrh-promo-emblem {
  margin: 0 auto 16px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: none;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 14px;
}

.ebrh-promo-emblem svg {
  width: 22px;
  height: 22px;
  color: #fff;
}

.ebrh-root .ebrh-promo-btn, 
.ebrh-root .ebrh-promo-btn:hover {
  background: #fff;
  color: var(--green-dark) !important;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

/* FAQ */
.ebrh-faq-wrap {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ebrh-faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.ebrh-faq-item.ebrh-open {
  border-color: color-mix(in srgb, var(--green) 30%, transparent);
  box-shadow: var(--shadow-md);
}

.ebrh-faq-h {
  margin: 0;
  padding: 0;
  font: inherit;
  font-weight: inherit;
  letter-spacing: 0;
  line-height: inherit;
}

.ebrh-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
  -webkit-appearance: none;
  appearance: none;
  -webkit-tap-highlight-color: transparent;
}

.ebrh-faq-q,
.ebrh-faq-q:hover,
.ebrh-faq-q:focus,
.ebrh-faq-q:active,
.ebrh-faq-q:focus-visible,
.ebrh-faq-item.ebrh-open .ebrh-faq-q {
  color: var(--text);
}

.ebrh-faq-q span:first-child {
  color: inherit;
}

.ebrh-faq-q .ebrh-qico {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--green-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s var(--ease);
}

.ebrh-faq-q .ebrh-qico svg {
  width: 14px;
  height: 14px;
  color: var(--green);
  transition: transform 0.35s var(--ease);
}

.ebrh-faq-item.ebrh-open .ebrh-qico {
  background: var(--green);
}

.ebrh-faq-item.ebrh-open .ebrh-qico svg {
  color: #fff;
  transform: rotate(45deg);
}

.ebrh-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
  padding: 0 24px;
}

.ebrh-faq-a p {
  color: var(--body);
  font-size: 15.5px;
  line-height: 1.7;
  padding-bottom: 20px;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.ebrh-faq-a .ebrh-mono {
  color: var(--green-dark);
  font-weight: 700;
}

/* CTA */
.ebrh-cta-band {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.ebrh-cta-band::before {
  content: "";
  position: absolute;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.12), transparent 70%);
  top: -280px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

.ebrh-cta-band h2 {
  color: #fff;
  font-size: clamp(26px, 3.8vw, 40px);
  margin-bottom: 12px;
  position: relative;
}

.ebrh-cta-band p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16.5px;
  max-width: 560px;
  margin: 0 auto 28px;
  position: relative;
  line-height: 1.7;
}

.ebrh-btn-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.ebrh-root .ebrh-btn-white, 
.ebrh-root .ebrh-btn-white:hover {
  background: #fff;
  color: var(--green-dark) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
}

.ebrh-root .ebrh-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.ebrh-root .ebrh-btn-outline, 
.ebrh-root .ebrh-btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.ebrh-root .ebrh-btn-outline:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

/* WAYS TO CHECK */
.ebrh-ways-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ebrh-way-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.ebrh-way-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--green) 15%, transparent);
}

.ebrh-way-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ebrh-way-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--green-tint);
  border: 1px solid color-mix(in srgb, var(--green) 12%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ebrh-way-ico svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.ebrh-way-head h3 {
  font-size: 19px;
  font-weight: 700;
}

.ebrh-way-desc {
  font-size: 15px;
  color: var(--body);
  margin-bottom: 18px;
  line-height: 1.65;
}

.ebrh-way-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
}

.ebrh-way-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.55;
}

.ebrh-way-list li svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 3px;
}

.ebrh-root .ebrh-way-list a {
  color: var(--green);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ebrh-root .ebrh-way-list a:hover {
  color: var(--green-dark);
}

/* GOV-SITE GUIDE */
.ebrh-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.ebrh-guide-left .ebrh-eyebrow {
  margin-bottom: 16px;
}

.ebrh-guide-left h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  margin: 12px 0 16px;
}

.ebrh-guide-left p {
  color: var(--body);
  font-size: 16.5px;
  line-height: 1.75;
  margin-bottom: 18px;
}

.ebrh-guide-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--green-tint);
  border: 1px solid color-mix(in srgb, var(--green) 12%, transparent);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14px;
  color: var(--green-dark);
  margin-bottom: 20px;
  line-height: 1.6;
}

.ebrh-guide-note svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ABOUT EDUCATION BOARD */
.ebrh-eduab-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ebrh-eduab-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 24px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}

.ebrh-eduab-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: color-mix(in srgb, var(--green) 15%, transparent);
}

.ebrh-eduab-ico {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--green-tint);
  border: 1px solid color-mix(in srgb, var(--green) 12%, transparent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ebrh-eduab-ico svg {
  width: 22px;
  height: 22px;
  color: var(--green);
}

.ebrh-eduab-card h3 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 10px;
}

.ebrh-eduab-card p {
  font-size: 15.5px;
  color: var(--body);
  line-height: 1.7;
}

/* CONCLUSION */
.ebrh-conclusion {
  max-width: 760px;
  margin: 0 auto;
}

.ebrh-conclusion p {
  color: var(--body);
  font-size: 17px;
  line-height: 1.85;
  margin-bottom: 18px;
}

.ebrh-conclusion p:last-child {
  margin-bottom: 0;
}

/* First line reads as a lead so the block has a visual anchor without a heading. */
.ebrh-conclusion p:first-of-type {
  font-size: 19px;
  line-height: 1.7;
  color: var(--text);
  font-weight: 500;
}

/* REVEAL */
.ebrh-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.ebrh-reveal.ebrh-in {
  opacity: 1;
  transform: none;
}

.ebrh-reveal.d1 {
  transition-delay: 0.08s;
}
.ebrh-reveal.d2 {
  transition-delay: 0.16s;
}
.ebrh-reveal.d3 {
  transition-delay: 0.24s;
}
.ebrh-reveal.d4 {
  transition-delay: 0.32s;
}

@media(prefers-reduced-motion: reduce) {
  .ebrh-root * {
    animation: none !important;
    transition: none !important;
  }
  .ebrh-reveal {
    opacity: 1;
    transform: none;
  }
}

/* LIVE EMBED BAND (outside .ebrh-root) */
/* LIVE CHECKER (embedded in the hero right column) */
.ebrh-checker-live {
  width: 100%;
}

.ebrh-checker-live > * {
  max-width: 100%;
}

/* RESPONSIVE */
@media(max-width: 1080px) {
  .ebrh-nav-links {
    display: none;
  }
  .ebrh-nav-toggle {
    display: block;
  }
  .ebrh-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .ebrh-hero-left {
    padding-top: 0;
  }
  .ebrh-lead {
    max-width: none;
  }
  .ebrh-hero-right {
    max-width: 560px;
    margin: 0 auto;
  }
  .ebrh-about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .ebrh-rtsec-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ebrh-rtsec.ebrh-alt .ebrh-rtsec-grid {
    direction: ltr;
  }
  .ebrh-exr-grid, .ebrh-bdr-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ebrh-guide-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .ebrh-ways-grid, .ebrh-eduab-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 820px) {
  .ebrh-section, .ebrh-rtsec {
    padding: 48px 0;
  }
  .ebrh-rt-grid {
    grid-template-columns: 1fr 1fr;
  }
  .ebrh-ways-grid, .ebrh-eduab-grid {
    grid-template-columns: 1fr;
  }
  .ebrh-steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px 20px;
  }
  .ebrh-steps::before {
    display: none;
  }
  .ebrh-about-facts {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 560px) {
  .ebrh-wrap {
    padding: 0 10px;
  }
  .ebrh-hero {
    padding: 36px 0 44px;
  }
  .ebrh-hero h1 {
    font-size: 30px;
  }
  .ebrh-hero-cta .ebrh-btn, .ebrh-cta-band .ebrh-btn {
    width: 100%;
  }
  .ebrh-rt-grid, .ebrh-exr-grid, .ebrh-bdr-grid {
    grid-template-columns: 1fr;
  }
  .ebrh-steps {
    grid-template-columns: 1fr;
  }
  .ebrh-about-facts {
    grid-template-columns: 1fr;
  }
  .ebrh-field-grid {
    grid-template-columns: 1fr;
  }
  .ebrh-cta-band {
    padding: 36px 20px;
  }
  .ebrh-section-head {
    margin-bottom: 24px;
  }
}

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