/* Карточка тендера (новый шаблон 122) — доступность, адаптив, sticky. П4 UX-ревизии. */

/* --- Видимый фокус (клавиатурная доступность) --- */
.tender-detail-cta input:focus,
.tender-detail-cta textarea:focus,
#detailForm input:focus {
  outline: none;
  border-color: #0477B3;
  box-shadow: 0 0 0 3px rgba(4,119,179,.18);
}
.tender-detail-cta button:focus-visible,
.tender-block a:focus-visible,
.tender-final-cta a:focus-visible,
.tender-sticky-cta a:focus-visible,
.tender-breadcrumbs a:focus-visible {
  outline: 3px solid rgba(4,119,179,.55);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- H1 не разрастается на узких экранах --- */
@media (max-width: 600px) {
  .tender-block-title {
    font-size: 22px !important;
    line-height: 1.22 !important;
    word-break: break-word;
  }
}

/* --- Sticky-CTA: только на мобиле --- */
.tender-sticky-cta { display: none; }
@media (max-width: 768px) {
  .tender-sticky-cta {
    display: block;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 9990;
    padding: 10px 14px;
    background: #fff;
    box-shadow: 0 -2px 14px rgba(13,59,102,.18);
  }
  .tender-sticky-cta a {
    display: block;
    text-align: center;
    text-decoration: none;
    background: #C10E0E;
    color: #fff;
    font-weight: 800;
    font-size: 15px;
    padding: 14px;
    border-radius: 9px;
  }
  .tender-sticky-cta a:active { background: #a50b0b; }
  body { padding-bottom: 74px; }
}

/* --- Уважать reduce-motion --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
}
html { scroll-behavior: smooth; }
