.hrpromoduo {
  --hrpd-desktop-gap: 16px;
  --hrpd-mobile-gap: 8px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--hrpd-desktop-gap);
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: var(--hrpd-desktop-gap);
  box-sizing: border-box;
  background: #fff;
}
.hrpromoduo__card { position:relative; overflow:hidden; min-width:0; height:300px; border-radius:16px; background:#111; }
.hrpromoduo__link,.hrpromoduo__picture { position:relative; display:block; width:100%; height:100%; color:inherit; text-decoration:none; }
.hrpromoduo__image { display:block; width:100%; height:100%!important; object-fit:cover; object-position:center; transition:transform .35s ease; }
.hrpromoduo__link:hover .hrpromoduo__image { transform:scale(1.015); }
.hrpromoduo__overlay { position:absolute; inset:0; display:flex; align-items:flex-end; padding:28px; pointer-events:none; background:linear-gradient(to top,rgba(0,0,0,.45),rgba(0,0,0,0) 66%); }
.hrpromoduo__content { width:min(92%,520px); text-shadow:0 2px 12px rgba(0,0,0,.5); }
.hrpromoduo__card--light { color:#fff; }
.hrpromoduo__card--dark { color:#111; }
.hrpromoduo__title { margin:0; font-size:clamp(24px,2vw,40px); line-height:1; font-weight:800; text-transform:uppercase; }
.hrpromoduo__subtitle { margin-top:8px; font-size:clamp(14px,1vw,19px); line-height:1.2; }
.hrpromoduo__button { display:inline-flex; margin-top:14px; padding:10px 18px; background:rgba(255,255,255,.94); color:#168af0; font-size:14px; font-weight:700; text-shadow:none; }
.hrpromoduo__card--dark .hrpromoduo__button { background:rgba(17,17,17,.92); color:#fff; }
@media (max-width:767px) {
  .hrpromoduo { width:100%; margin-left:0; margin-right:0; grid-template-columns:repeat(2,minmax(0,1fr)); gap:var(--hrpd-mobile-gap); padding:var(--hrpd-mobile-gap); }
  .hrpromoduo--mobile-1 { grid-template-columns:1fr; }
  .hrpromoduo__card { height:auto; aspect-ratio:1/1; border-radius:14px; }
  .hrpromoduo--mobile-1 .hrpromoduo__card { aspect-ratio:16/8.5; }
  .hrpromoduo__overlay { padding:14px; }
  .hrpromoduo__title { font-size:clamp(15px,4.6vw,22px); }
  .hrpromoduo__subtitle { margin-top:5px; font-size:clamp(11px,3.3vw,14px); }
  .hrpromoduo__button { margin-top:9px; padding:8px 10px; font-size:11px; }
  .hrpromoduo__card--hide-mobile-text .hrpromoduo__overlay { display:none; }
}
@media (prefers-reduced-motion:reduce) { .hrpromoduo__image { transition:none; } }
