.ecah-hero,
.ecah-hero * { box-sizing: border-box; }
.ecah-hero {
  --ecah-green: #327E3D;
  --ecah-dark: #1F3E2A;
  --ecah-terracotta: #D96B49;
  --ecah-beige: #F8F2E0;
  --ecah-grey: #6D6E6E;
  position: relative;
  overflow: hidden;
  min-height: 520px;
  width: 100%;
  border-radius: 18px;
  isolation: isolate;
  background: var(--ecah-dark);
}
.ecah-bg { position:absolute; inset:0; display:grid; grid-template-columns: 1fr 1fr; z-index:0; }
.ecah-panel { position:relative; min-width:0; background-size:cover; background-position:center; transform: scale(1.001); }
.ecah-panel::after { content:""; position:absolute; inset:0; pointer-events:none; }
.ecah-panel-left::after { background: rgba(0,0,0,.62); }
.ecah-panel-right::after { background: rgba(47,93,58,.34); }
.ecah-tear {
  position:absolute; top:-3%; bottom:-3%; left:50%; transform: translateX(-50%);
  width:28px; background: var(--ecah-beige); z-index:2;
  clip-path: polygon(44% 0, 62% 7%, 43% 14%, 58% 22%, 38% 31%, 57% 41%, 41% 52%, 60% 63%, 40% 73%, 58% 84%, 46% 100%, 0 100%, 0 0);
  filter: drop-shadow(0 0 4px rgba(0,0,0,.18));
}
.ecah-content {
  position: relative; z-index:3; min-height: inherit; max-width: 480px; margin: 0 auto;
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding: clamp(36px, 6vw, 80px) 24px; text-align:center;
}
.ecah-card { border-radius: 18px; background: rgba(248,242,224,.94); backdrop-filter: blur(8px); }
.ecah-category {
  margin-bottom: 12px; color: var(--ecah-terracotta); font-family: 'Poppins', Arial, sans-serif;
  font-size: 14px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em;
}
.ecah-title {
  margin: 0; color: #fff; font-family: 'Kalam', 'Poppins', cursive; font-size: clamp(38px, 6vw, 72px);
  line-height: .98; font-weight: 700; letter-spacing: .005em; text-wrap: balance;
}
.ecah-card .ecah-title { color: var(--ecah-green); }
.ecah-rule { width: 52px; height: 2px; background: rgba(255,255,255,.7); margin: 26px auto 20px; }
.ecah-card .ecah-rule { background: var(--ecah-terracotta); }
.ecah-meta { display:flex; gap:22px; align-items:center; justify-content:center; flex-wrap:wrap; color:#fff; font-family:'Poppins', Arial, sans-serif; font-size:15px; font-weight:500; }
.ecah-card .ecah-meta { color: var(--ecah-grey); }
.ecah-meta-item { display:inline-flex; align-items:center; gap:8px; }
.ecah-meta svg { width:18px; height:18px; }
.ecah-meta i { font-size:17px; }
@media (max-width: 767px) {
  .ecah-hero { min-height: 520px; border-radius: 16px; }
  .ecah-bg { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .ecah-tear { top:50%; bottom:auto; left:-3%; right:-3%; width:106%; height:22px; transform:translateY(-50%); clip-path: polygon(0 42%, 10% 58%, 20% 41%, 31% 57%, 43% 40%, 55% 59%, 66% 42%, 78% 60%, 90% 44%, 100% 56%, 100% 100%, 0 100%); }
  .ecah-content { min-height: 520px; padding: 40px 20px; }
  .ecah-title { font-size: clamp(34px, 11vw, 50px); }
  .ecah-meta { gap:14px; font-size:13px; }
}
