/* ===================================
   DUSHISTO — MAGAZIN HERO (FINAL)
=================================== */

.dush-mag--hero{
  --ink:#2b211a;
  --muted:#6f655d;
  --line:rgba(43,33,26,.10);
  --accent:#bfa37a;

  position: relative;
  padding: 64px 0 34px;
  background: linear-gradient(to bottom,#faf6f1 0%,#f3ede6 100%);
}

/* Контейнер */
.dush-mag--hero .dush-mag__container{
  width: min(1100px, calc(100% - 56px));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* Премиальная подложка */
.dush-mag--hero .dush-mag__container::before{
  content:"";
  position:absolute;
  inset:-22px;
  border-radius:28px;

  background:
    radial-gradient(1000px 260px at 15% 0%, rgba(191,163,122,.12), transparent 60%),
    radial-gradient(700px 240px at 85% 45%, rgba(60,40,20,.08), transparent 65%),
    rgba(255,255,255,.82);

  border:1px solid rgba(43,33,26,.08);
  box-shadow:0 30px 80px rgba(0,0,0,.07);

  pointer-events:none;
  z-index:-1;
}

/* Eyebrow */
.dush-mag__eyebrow{
  display:inline-flex;
  align-items:center;
  font-size:11px;
  letter-spacing:.26em;
  text-transform:uppercase;
  color:rgba(43,33,26,.65);
  background:rgba(255,255,255,.75);
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 14px;
}

/* H1 */
.dush-mag__title{
  margin:20px 0 14px;
  font-size:36px;
  line-height:1.2;
  font-weight:500;
  color:var(--ink);
  letter-spacing:.02em;
}

/* Trust строка */
.dush-mag__trust{
  margin:18px 0 12px;
  font-size:12.5px;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:rgba(43,33,26,.55);
}

/* Подзаголовок */
.dush-mag__sub{
  margin:0;
  max-width:720px;
  font-size:16px;
  line-height:1.75;
  color:var(--muted);
}

/* Золотая линия под hero */
.dush-mag--hero::after{
  content:"";
  display:block;
  margin:44px auto 0;
  width:min(1100px, calc(100% - 56px));
  height:1px;
  background:linear-gradient(
    90deg,
    transparent 0%,
    rgba(191,163,122,.45) 50%,
    transparent 100%
  );
  opacity:.7;
}

/* Убираем старые before */
.dush-mag--hero::before{
  content:none !important;
}

/* Адаптив */
@media (max-width:920px){

  .dush-mag--hero{
    padding:52px 0 28px;
  }

  .dush-mag__title{
    font-size:30px;
  }

  .dush-mag__sub{
    font-size:15.5px;
  }

}

@media (max-width:520px){

  .dush-mag--hero .dush-mag__container{
    width:calc(100% - 32px);
  }

  .dush-mag--hero .dush-mag__container::before{
    inset:-16px;
    border-radius:22px;
  }

  .dush-mag__title{
    font-size:26px;
  }

}
