/* ==========================
   AUDIENCE (for who) block
   ========================== */
.audience{
  padding: 64px 0;
background: linear-gradient(180deg, #fff3f3 0%, #ffffff 60%);
}

.audience__inner{
  max-width: 1100px;
}

.audience__title{
  margin: 0;
  text-align: center;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 900;
  color: rgba(20,48,74,.95);
}

.audience__sub{
  margin: 10px 0 18px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: rgba(20,48,74,.65);
}

.audience__lead{
  max-width: 880px;
  margin: 0 auto 34px;
  text-align: center;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 650;
  color: rgba(20,48,74,.62);
}

.audience__list{
  display: grid;
  gap: 18px;
}

/* ===== Card ===== */
.audCard{
  position: relative;
  display: grid;
  grid-template-columns: 1fr 260px; /* текст + фото */
  gap: 18px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(15,40,70,.10);
  box-shadow: 0 16px 38px rgba(0,0,0,.08);
  overflow: hidden;
}

.audCard::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(420px 220px at 15% 0%, rgba(255,255,255,.9), rgba(255,255,255,0) 60%),
    radial-gradient(520px 260px at 85% 100%, rgba(255,255,255,.7), rgba(255,255,255,0) 62%);
  pointer-events:none;
}

.audCard__left{
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr; /* бейдж + контент */
  gap: 14px;
  align-items: start;
}

.audBadge{
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 20px;
  color: #fff;
  box-shadow: 0 10px 22px rgba(0,0,0,.12);
}

.audCard__content{
  min-width: 0;
}

.audCard__title{
  margin: 0 0 8px;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 900;
  color: rgba(20,48,74,.95);
}

.audCard__text{
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 650;
  color: rgba(20,48,74,.70);
}

.audCard__label{
  margin: 10px 0 8px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(20,48,74,.85);
}

.audList{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.audList li{
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 650;
  color: rgba(20,48,74,.70);
}

.audList li::before{
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 900;
  background: rgba(255,255,255,.85);
  border: 1px solid rgba(15,40,70,.10);
}

.audCard__note{
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 650;
  color: rgba(20,48,74,.60);
}

/* photo side */
.audCard__photo{
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(230,244,255,.9);
  border: 1px solid rgba(15,40,70,.10);
  min-height: 220px;
}

.audCard__photo img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ===== Color variants (badge + slight tint) ===== */
.audCard--amber{
  background: rgba(255,255,255,.92);
}
.audCard--amber .audBadge{ background: #f2b233; }
.audCard--amber .audList li::before{ color: #f2b233; }

.audCard--red .audBadge{ background: #e2544f; }
.audCard--red .audList li::before{ color: #e2544f; }

.audCard--green .audBadge{ background: #2fb66a; }
.audCard--green .audList li::before{ color: #2fb66a; }

/* ===== Responsive ===== */
@media (max-width: 980px){
  .audCard{
    grid-template-columns: 1fr; /* фото вниз */
  }
  .audCard__photo{
    min-height: 200px;
  }
}

@media (max-width: 640px){
  .audience{
    padding: 44px 0;
  }
  .audience__title{
    font-size: 26px;
  }
  .audCard__left{
    grid-template-columns: 44px 1fr;
  }
  .audBadge{
    width: 38px;
    height: 38px;
    font-size: 18px;
    border-radius: 11px;
  }
}
