/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Nov 11 2025 | 10:21:57 */
  .promo-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    background: #ffffff;
    border: 1px solid #e6eaf2;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    font-family: "Inter", "Poppins", Arial, sans-serif;
    color: #0f172a;
    padding: 28px 32px;
    position: relative;
  }

  /* тонкая вертикальная метка слева для акцента */
  .promo-banner::before {
    content: "";
    position: absolute;
    left: 0; top: 0; bottom: 0;
    width: 6px;
    background: #111827;
    opacity: .9;
  }

  .promo-info {
    flex: 1.2;
    padding-right: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .promo-eyebrow {
    display: inline-block;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #6b7280;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    padding: 6px 10px;
    margin-bottom: 12px;
	width: fit-content;
  }

  .promo-title {
    font-size: 2.2rem;
    line-height: 1.15;
    font-weight: 800;
    color: #0b1220;
	text-transform: uppercase;
  }

  .promo-title b {
    font-weight: 900;
    color: #111827;
	text-transform: uppercase;
  }

  .promo-subtitle {
    font-size: 1rem;
    color: #475569;
    margin-top: 10px;
    margin-bottom: 22px;
    max-width: 48ch;
	text-transform: uppercase;
  }

  .promo-btn {
    display: inline-block;
    padding: 14px 26px;
    background: #0f172a;
    color: #ffffff;
    border: 1px solid #0f172a;
    border-radius: 10px;
    font-weight: 800;
    font-size: 0.98rem;
    text-decoration: none;
    letter-spacing: 0.3px;
	text-align: center;
    transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  }

  .promo-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(15, 23, 42, 0.18);
    background: #111827;
  }

  .promo-media {
    flex: 0.8;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 24px;
    border-left: 1px solid #eef1f6;
    min-height: 120px;
  }

  .promo-media img {
    width: 200px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.12));
    transition: transform .2s ease;
  }

  .promo-media img:hover {
    transform: scale(1.03);
  }

  /* адаптив */
  @media (max-width: 860px) {
    .promo-banner {
      flex-direction: column-reverse;
      padding: 22px;
      text-align: center;
    }
    .promo-banner::before {
      height: 6px; width: 100%;
      left: 0; top: 0; bottom: auto;
    }
    .promo-media {
      width: 100%;
      padding: 16px 0 10px 0;
      border-left: none;
      border-bottom: 1px solid #eef1f6;
      margin-bottom: 12px;
    }
    .promo-info {
      padding-right: 0;
      align-items: center;
    }
    .promo-title { font-size: 1.7rem; }
    .promo-subtitle { max-width: none; }
    .promo-btn { align-self: center; }
  }