.dpc-section {
  margin: 38px 0 24px;
  padding: 28px;
  background: #fff;
  border: 1px solid #dce7f5;
  border-radius: 20px;
  box-shadow: 0 14px 38px rgba(5, 33, 69, .07);
  clear: both;
}
.dpc-heading { display:flex; align-items:center; gap:14px; margin-bottom:22px; }
.dpc-heading__icon { display:grid; place-items:center; width:48px; height:48px; flex:0 0 48px; border-radius:14px; color:#fff; background:linear-gradient(135deg,#0798ff,#4058ef); font-size:25px; font-weight:800; box-shadow:0 9px 22px rgba(25,108,241,.24); }
.dpc-heading__eyebrow { display:block; margin-bottom:2px; color:#0874f9; font-size:11px; line-height:1.2; font-weight:800; letter-spacing:.13em; text-transform:uppercase; }
.dpc-heading h2 { margin:0; color:#061b38; font-size:27px; line-height:1.2; font-weight:800; }
.dpc-products-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,270px));
  gap:18px;
  align-items:stretch;
}
.dpc-card { display:flex; min-width:0; flex-direction:column; overflow:hidden; background:#fff; border:1px solid #dce5f0; border-radius:16px; transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease; }
.dpc-card:hover { transform:translateY(-3px); border-color:#b8d4f7; box-shadow:0 13px 26px rgba(8,40,81,.11); }
.dpc-card__image { display:flex; align-items:center; justify-content:center; width:100%; aspect-ratio:4/3; overflow:hidden; background:#f5f8fc; }
.dpc-card__image img { display:block; width:100%; height:100%; object-fit:cover; }
.dpc-card__body { display:flex; flex:1; flex-direction:column; padding:16px; }
.dpc-card__category { margin-bottom:7px; color:#60738d; font-size:11px; line-height:1.3; font-weight:700; letter-spacing:.05em; text-transform:uppercase; }
.dpc-card__title { min-height:44px; margin:0 0 13px; font-size:15px; line-height:1.45; font-weight:750; }
.dpc-card__title a { color:#0b203d; text-decoration:none; }
.dpc-card__title a:hover { color:#0874f9; }
.dpc-card__price { display:block; margin:auto 0 14px; color:#0874f9; font-size:20px; line-height:1.2; font-weight:800; }
.dpc-view-btn {
  display:flex; align-items:center; justify-content:center; gap:9px;
  min-height:42px; width:100%; padding:10px 14px;
  color:#fff!important; background:linear-gradient(100deg,#078ff5,#4057ef);
  border-radius:11px; font-size:13px; font-weight:750; text-decoration:none!important;
  box-shadow:0 7px 17px rgba(20,104,238,.18);
}
.dpc-view-btn:hover { color:#fff!important; filter:brightness(.96); }
@media (max-width: 767px) {
  .dpc-section { margin-top:28px; padding:20px 14px; border-radius:16px; }
  .dpc-heading h2 { font-size:22px; }
  .dpc-products-grid { grid-template-columns:repeat(2,minmax(0,1fr)); gap:11px; }
  .dpc-card__body { padding:12px; }
  .dpc-card__title { min-height:58px; font-size:13px; }
  .dpc-card__price { font-size:17px; }
  .dpc-view-btn { min-height:39px; padding:8px; font-size:12px; }
}
@media (max-width: 380px) {
  .dpc-products-grid { grid-template-columns:1fr; }
}
