/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Dec 04 2025 | 08:11:28 */
  .clean-banner {
    display: flex;
    align-items: center;
    justify-content: flex-start;

    padding: 28px 32px;

    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    color: #111827;
    gap: 28px;
  }

  .clean-logo {
    width: 110px;
    height: 110px;
    border-radius: 12px;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
    overflow: hidden;
  }

  .clean-logo img {
    width: 70%;
    height: auto;
    object-fit: contain;
  }

  .clean-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .clean-tag {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b7280;
    font-weight: 600;
  }

  .clean-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
  }

  .clean-title span {
    color: #2563eb; /* синий акцент */
  }

  .clean-sub {
    font-size: 0.95rem;
    color: #4b5563;
    max-width: 50ch;
  }

  .clean-btn {
    margin-top: 10px;
    display: inline-block;
    width: fit-content;

    background: #2563eb;
    color: #ffffff;

    padding: 12px 26px;
    border-radius: 8px;

    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;

    transition: background 0.2s ease;
  }

  .clean-btn:hover {
    background: #1e4fc7;
  }

  @media (max-width: 850px) {
    .clean-banner {
      flex-direction: column;
      text-align: center;
    }
    .clean-logo {
      width: 120px;
      height: 120px;
    }
    .clean-btn {
      align-self: center;
      width: 100%;
      max-width: 320px;
    }
  }