.elfy-wwa{
  width:100%;
}

.elfy-wwa-grid{
  /*max-width: 1200px;*/
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 1.35fr;
  gap: 46px;
  align-items: center;
}

/* LEFT collage */
.elfy-wwa-collage{
  position: relative;
  min-height: 520px;
}

.elfy-wwa-img{
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  background: #eee;
}

.elfy-wwa-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.elfy-wwa-img--big{
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 22px;
}

.elfy-wwa-img--small{
  width: 42%;
  height: 220px;
  position: absolute;
  bottom: 0;
  left: 48%;
  border-radius: 22px;
  border: 4px solid #fff;
  display:none;
}

/* RIGHT content */
.elfy-wwa-eyebrow{
  letter-spacing: .12em;
  font-weight: 700;
  font-size: 13px;
  color: #111;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.elfy-wwa-title{
  font-family: "Instrument Serif", serif !important;
  font-weight: 400;
  font-size: 56px;
  line-height: 1.05;
  margin: 0 0 14px 0;
  color: #111;
}

.elfy-wwa-text{
  margin: 0 0 22px 0;
  color: #333;
  font-size: 16px;
  line-height: 1.75;
  max-width: 780px;
}

/* Progress */
.elfy-wwa-progress{
  margin-top: 18px;
}

.elfy-wwa-progress-top{
  display:flex;
  justify-content: space-between;
  align-items:center;
  font-size: 15px;
  color: #222;
  margin-bottom: 10px;
}

.elfy-wwa-progress-track{
  width: 100%;
  height: 10px;
  background: rgba(15,59,53,.12);
  border-radius: 999px;
  overflow: hidden;
}

.elfy-wwa-progress-fill{
  height: 100%;
  background: var(--elfyAccent);
  border-radius: 999px;
}

/* bottom row */
.elfy-wwa-bottom{
  margin-top: 26px;
  display:flex;
  align-items:center;
  gap: 22px;
  flex-wrap: wrap;
}

.elfy-wwa-btn{
  display:inline-flex;
  align-items:center;
  gap: 14px;
  padding: 14px 22px;
  background: var(--elfyBtnBg);
  color: var(--elfyBtnTxt);
  border-radius: 999px;
  text-decoration:none !important;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}

.elfy-wwa-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0,0,0,.12);
}

.elfy-wwa-btn-icon{
  width: 42px;
  height: 42px;
  border-radius: 999px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background: rgba(0,0,0,.18);
}

.elfy-wwa-person{
  display:flex;
  align-items:center;
  gap: 12px;
}

.elfy-wwa-avatar{
  width: 52px;
  height: 52px;
  border-radius: 999px;
  overflow:hidden;
  border: 3px solid #1dd46e;
  background:#eee;
}

.elfy-wwa-avatar img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.elfy-wwa-avatar-fallback{
  display:block;
  width:100%;
  height:100%;
  background: linear-gradient(135deg, #ddd, #f3f3f3);
}

.elfy-wwa-person-name{
  font-family: "Instrument Serif", serif;
  font-size: 26px;
  line-height: 1.1;
  color:#111;
}

.elfy-wwa-person-title{
  font-size: 13px;
  color:#555;
  margin-top: 3px;
}

/* Responsive */
@media (max-width: 1024px){
  .elfy-wwa-grid{ grid-template-columns: 1fr; gap: 28px; }
  .elfy-wwa-collage{ min-height: 0px; }
  .elfy-wwa-title{ font-size: 46px; }
  .elfy-wwa-img--big{ position: relative; width: 100%; height: auto; }
  .elfy-wwa-img--small{ left: auto; right: 0; width: 70%; height: 280px; }
}
@media (max-width: 767px){
  .elfy-wwa-collage{ min-height:0px; }
  .elfy-wwa-title{ font-size: 38px; }
  .elfy-wwa-img--small{ width: 86%; height: 240px; }
}
