/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 12 2025 | 10:35:31 */
  .poster-banner {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: #111827;
    overflow: hidden;
  }

  .poster-grid {
    display: grid;
    grid-template-columns: 160px 1fr 220px;
    align-items: stretch;
    min-height: 150px;
  }

  .poster-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #111827;
    padding: 18px;
  }

  .poster-logo img {
    width: 110px;
    height: auto;
    object-fit: contain;
    display: block;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.35));
  }

  /* ЦЕНТР — “постерная” типографика */
  .poster-content {
    padding: 24px 26px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .poster-topline {
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #6b7280;
    font-weight: 700;
  }

  .poster-title {
    font-size: 2rem;
    line-height: 1.05;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0b1220;
  }

  .poster-title strong {
    font-weight: 900;
    background: #e8f0ff;
    border: 1px solid #dbeafe;
    padding: 2px 8px;
    border-radius: 6px;
    display: inline-block;
  }

  .poster-sub {
    font-size: 0.98rem;
    color: #4b5563;
    max-width: 60ch;
  }

  .poster-cta {
    border-left: 1px solid #e5e7eb;
    background: #f9fafb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px;
  }

  .poster-btn {
    width: 100%;
    text-align: center;
    display: inline-block;
    padding: 14px 18px;
    border-radius: 8px;
    background: #16a34a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: transform 0.15s ease, background 0.2s ease;
  }

  .poster-btn:hover {
    background: #12813c;
    transform: translateY(-1px);
  }

  @media (max-width: 900px) {
    .poster-grid {
      grid-template-columns: 1fr;
    }

    .poster-logo {
      justify-content: center;
      padding: 20px 16px;
    }

    .poster-content {
      text-align: center;
      align-items: center;
      padding: 22px 18px;
    }

    .poster-cta {
      border-left: none;
      border-top: 1px solid #e5e7eb;
      padding: 16px 18px 20px;
    }

    .poster-title {
      font-size: 1.55rem;
    }
  }