/*
  Стили страницы "Дерево на заказ".
  Подключение: {% static 'css/custom_order.css' %} — после article.css
*/

.custom-order-page {
  width: 100%;
}

/* ===== БАННЕР (full-bleed, тот же приём, что у about/delivery) ===== */
.custom-order-banner {
  position: relative;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  min-height: 150px;
  background-size: cover;
  background-position: center;
  background-color: var(--ink, #1C1A17); /* заглушка, пока фото не загрузится */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 20px;
  text-align: center;
}

.custom-order-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.custom-order-banner__title {
  position: relative;
  z-index: 1;
  font-family: var(--font-edito);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  color: #fff;
  margin: 0;
}

/* ===== ОТСТУПЫ ТЕКСТОВОГО БЛОКА ===== */
.custom-order-page .article-page {
  padding: 56px 0 80px;
}

@media (max-width: 640px) {
  .custom-order-page .article-page {
    padding: 36px 0 56px;
  }
}