/* Layout */
.ep-wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 18px;
}

.ep-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.ep-title{
  font-size: clamp(44px, 5vw, 76px);
  line-height: 1.02;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Buttons */
.ep-lang{
  display:flex;
  gap: 10px;
}

.ep-lang__btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  height: 44px;
  padding: 0 18px;
  border-radius: 12px;

  background: #0b1f33;
  color: #fff;
  text-decoration:none;

  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform .15s ease, background .15s ease, opacity .15s ease;
}

.ep-lang__btn:hover{
  background:#123455;
  transform: translateY(-1px);
}

.ep-lang__btn.is-active{
  background:#d81b60;
}

/* Card */
.ep-card{
  background: rgba(0,0,0,.04);
  border-radius: 22px;
  padding: 26px;
}

/* Typography */
.ep-card h2{
  margin: 0 0 14px 0;
  font-size: clamp(28px, 2.8vw, 44px);
  line-height: 1.08;
}

.ep-card h3{
  margin: 22px 0 10px 0;
  font-size: 18px;
}

.ep-card p{
  line-height: 1.7;
  margin: 10px 0;
}

.ep-muted{
  opacity: .75;
  margin-top: 16px;
}

/* Panels logic */
.ep-panel{ display:none; }
html[data-ep-lang="ru"] .ep-panel[data-panel="ru"]{ display:block; }
html[data-ep-lang="en"] .ep-panel[data-panel="en"]{ display:block; }
