/* ═══════════════════════════════
   EBRD SME PAGE
═══════════════════════════════ */
:root {
  --grc-primary: #1B6CA8;
  --grc-accent:  #2FBCD3;
  --grc-dark:    #1a1a2e;
}

/* ── Reset Astra containers ── */
#main.site-main,
#primary,
.ast-article-single,
.entry-content,
.site-content .ast-container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

.grc-ebrd-page {
  font-family: 'Poppins', sans-serif;
}

/* ═══════════════════════════════
   HERO
═══════════════════════════════ */
.ge-hero {
  position: relative;
  background: var(--grc-dark);
  padding: 140px 48px 90px;
  overflow: hidden;
}

.ge-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(27,108,168,.4) 0%, transparent 60%),
              radial-gradient(ellipse at 10% 85%, rgba(47,188,211,.15) 0%, transparent 50%);
  pointer-events: none;
}

.ge-hero__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 26px 26px; pointer-events: none;
}

.ge-hero__inner {
  position: relative; z-index: 2;
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}

.ge-hero__eyebrow {
  display: inline-block;
  font-size: .68rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--grc-accent); margin-bottom: 16px;
}

.ge-hero__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; color: #fff;
  line-height: 1.12; margin: 0 0 20px;
  letter-spacing: -.02em;
}

.ge-hero__title span {
  background: linear-gradient(90deg, #2FBCD3, #7ee8f5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ge-hero__desc {
  font-size: .97rem; font-weight: 300;
  color: rgba(255,255,255,.7); line-height: 1.8;
  margin: 0 0 32px;
}

.ge-hero__btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--grc-primary); color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: .875rem; font-weight: 600;
  text-decoration: none;
  padding: 13px 30px; border-radius: 50px;
  border: 2px solid transparent;
  box-shadow: 0 8px 28px rgba(27,108,168,.4);
  transition: background .25s, border-color .25s, transform .22s, box-shadow .25s;
}

.ge-hero__btn:hover {
  background: transparent; border-color: var(--grc-accent); color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(47,188,211,.3);
}

.ge-hero__btn svg {
  width: 15px; height: 15px;
  stroke: currentColor; fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
  transition: transform .2s;
}

.ge-hero__btn:hover svg { transform: translateX(4px); }

/* right side */
.ge-hero__right {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 16px;
}

.ge-hero__logo-wrap {
  background: rgba(255,255,255,.95);
  border-radius: 16px; padding: 24px 32px;
  width: 100%;
  display: flex; align-items: center; justify-content: center;
}

.ge-hero__logo-wrap img {
  max-width: 220px; width: 100%; height: auto; display: block;
}

.ge-hero__pills {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; width: 100%;
}

.ge-pill {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 14px 16px;
  transition: background .25s, border-color .25s;
}

.ge-pill:hover {
  background: rgba(47,188,211,.1);
  border-color: rgba(47,188,211,.3);
}

.ge-pill__num {
  font-size: 1.3rem; font-weight: 800;
  color: #fff; line-height: 1; margin-bottom: 4px;
}

.ge-pill__num span { color: var(--grc-accent); }

.ge-pill__label {
  font-size: .63rem; font-weight: 500;
  color: rgba(255,255,255,.5);
  letter-spacing: .08em; text-transform: uppercase;
  line-height: 1.35;
}

.ge-hero__bar {
  position: absolute; bottom: 0; left: 0;
  width: 100%; height: 4px;
  background: linear-gradient(90deg, var(--grc-primary), var(--grc-accent));
}

/* ═══════════════════════════════
   BODY (native block-editor content)
═══════════════════════════════ */
.ge-body {
  background: #ffffff;
  padding: 64px 24px;
}

.ge-body__inner {
  max-width: 760px;
  margin: 0 auto;
}

.ge-body__inner h2 {
  font-size: 1.6rem;
  margin: 0 0 1rem;
}

.ge-body__inner h3 {
  font-size: 1.25rem;
  margin: 2rem 0 0.75rem;
}

.ge-body__inner p {
  margin: 0 0 1rem;
  line-height: 1.7;
}

.ge-body__inner ul {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  line-height: 1.7;
}

.ge-body__inner li {
  margin-bottom: 0.4rem;
}

/* responsive */
@media (max-width: 960px) {
  .ge-hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .ge-hero { padding: 120px 24px 72px; }
}

@media (max-width: 560px) {
  .ge-hero__pills { grid-template-columns: 1fr 1fr; }
}
