.dcsr-header{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,440px);
  gap:28px;
  align-items:center;
  margin:0 0 28px;
}

.dcsr-header__content{
  min-width:0;
}

.dcsr-header__title{
  margin:0 0 12px;
  font-size:clamp(30px,4vw,46px);
  line-height:1.08;
  color:#0f172a;
  font-weight:700;
  letter-spacing:-0.02em;
}

.dcsr-header__badges{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 14px;
}

.dcsr-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-height:34px;
  padding:0 14px;
  border-radius:999px;
  background:#f1f5f9;
  color:#334155;
  font-size:13px;
  font-weight:600;
  line-height:1;
  border:1px solid #e2e8f0;
  transition:all .2s ease;
}

.dcsr-badge:hover{
  transform:translateY(-1px);
  box-shadow:0 4px 10px rgba(0,0,0,.05);
}

.dcsr-badge--verified{
  background:#ecfdf5;
  color:#16a34a;
  border:1px solid #bbf7d0;
}

.dcsr-badge__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:18px;
  height:18px;
  border-radius:50%;
  background:#16a34a;
  color:#ffffff;
  font-size:12px;
  font-weight:800;
  line-height:1;
}

.dcsr-header__meta{
  display:flex;
  align-items:center;
  gap:8px;
  margin:0 0 8px;
  color:#0f172a;
  font-size:18px;
  font-weight:600;
  line-height:1.5;
}

.dcsr-header__meta-icon{
  font-size:18px;
  line-height:1;
}

.dcsr-header__services{
  margin:0 0 18px;
  color:#475569;
  font-size:16px;
  line-height:1.6;
  max-width:700px;
}

.dcsr-header__actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:0;
}

.dcsr-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 18px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  font-size:14px;
  border:1px solid transparent;
  transition:all .2s ease;
}

.dcsr-btn:hover{
  transform:translateY(-1px);
}

.dcsr-btn--primary{
  background:#2563eb;
  color:#ffffff;
}

.dcsr-btn--primary:hover{
  background:#1d4ed8;
  color:#ffffff;
}

.dcsr-btn--secondary{
  background:#f3f4f6;
  color:#111827;
  border-color:#e5e7eb;
}

.dcsr-btn--secondary:hover{
  background:#e5e7eb;
  color:#111827;
}

.dcsr-btn--ghost{
  background:#ffffff;
  color:#111827;
  border-color:#e5e7eb;
}

.dcsr-btn--ghost:hover{
  background:#f8fafc;
  color:#111827;
}

.dcsr-header__media{
  min-width:0;
}

.dcsr-header__image-wrap{
  height:var(--dcsr-image-height,255px);
  border-radius:18px;
  overflow:hidden;
  background:#f8fafc;
  border:1px solid #e5e7eb;
  box-shadow:0 8px 24px rgba(15,23,42,.06);
  display:flex;
  align-items:center;
  justify-content:center;
}

.dcsr-header__image{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  object-position:60% center;
}

@media (max-width: 900px){
  .dcsr-header{
    grid-template-columns:1fr;
    gap:18px;
  }

  .dcsr-header__title{
    font-size:clamp(28px,7vw,38px);
  }

  .dcsr-header__meta{
    font-size:17px;
  }

  .dcsr-header__services{
    font-size:15px;
  }

  .dcsr-header__image-wrap{
    height:220px;
  }

  .dcsr-header__image{
    object-position:center;
  }
}