/* ─── ABOUT STORY ─── */
.eas-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 40px;
  max-width: 1300px;
  margin: 0 auto;
}

/* LEFT */
.eas-badge { display:inline-block; font-size:11px; letter-spacing:2px; text-transform:uppercase; color:#c9973f; font-weight:600; margin-bottom:16px; }
.eas-heading { font-size:46px; font-weight:300; line-height:1.15; color:#1a1a1a; margin:0 0 30px 0; }
.eas-para { font-size:15px; line-height:1.75; color:#555; font-weight:300; margin-bottom:18px; }
.eas-para:last-child { margin-bottom:0; }

/* RIGHT STACK */
.eas-right { position: relative; }

.eas-img-stack {
  position: relative;
  width: 100%;
}

/* LARGE — Full width base image */
.eas-img-large {
  position: relative;
  width: 100%;
  height: 480px; /* default, overridden by Elementor slider */
  border-radius: 20px;
  overflow: hidden;
  background: #e8e4de;
}
.eas-img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.eas-img-large:hover img { transform: scale(1.03); }

.eas-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; letter-spacing: 1px; color: #aaa; text-transform: uppercase;
}

/* SMALL — Absolute overlay */
.eas-img-small {
  position: absolute;
  top: -30px;   /* default, overridden by Elementor */
  right: -30px;
  width: 220px;
  height: 200px;
  border-radius: 16px;
  overflow: hidden;
  background: #d8d0c4;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
  z-index: 2;
}
.eas-img-small img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.eas-img-small:hover img { transform: scale(1.05); }

/* Image labels */
.eas-img-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #888;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(4px);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 600;
}

/* TAGLINE CARD */
.eas-tagline-card {
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 58%;
  background: #1a3d3f;
  padding: 24px 28px;
  border-radius: 14px;
  z-index: 3;
  box-shadow: 0 10px 40px rgba(26,61,63,0.3);
}
.eas-tagline-h   { font-size:22px; font-weight:400; font-style:italic; color:#fff; margin:0 0 6px 0; }
.eas-tagline-sub { font-size:10px; letter-spacing:1.5px; text-transform:uppercase; color:#c9973f; font-weight:500; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .eas-wrapper { grid-template-columns:1fr; gap:80px; padding:60px 30px; }
  .eas-heading { font-size:36px; }
  .eas-img-large { height:380px; }
}
@media (max-width: 767px) {
  .eas-wrapper { padding:50px 20px; gap:70px; }
  .eas-heading  { font-size:28px; }
  .eas-img-large { height:300px; border-radius:14px; }
  .eas-img-small { width:160px; height:150px; top:-20px; right:-10px; }
  .eas-tagline-card { width:80%; padding:18px 20px; }
  .eas-tagline-h { font-size:18px; }
}
