.pro-tip {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px 20px;
  border-radius: 12px;
  background-color: #1a1d26; /* фон як на сайті */
  border-left: 4px solid #8358ff;
  color: #fff;
  font-size: 0.95rem;
  margin: 30px 0;
  position: relative;
    box-shadow: 0 0 0 transparent;
  transition: box-shadow 0.3s ease;
}

.pro-tip:hover {
  box-shadow: 0 0 12px #8358ff7a;
}

.pro-tip__icon img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  margin-top: 4px;
  flex-shrink: 0;
}

.pro-tip__content {
  display: flex;
  flex-direction: column;
}

.pro-tip__label {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 5px;
  color: #8358ff;
}

.pro-tip__text {
  color: #d1d5db;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .pro-tip {
    flex-direction: column;
    gap: 10px;
    padding: 14px 16px;
  }

  .pro-tip__icon img {
    width: 28px;
    height: 28px;
  }

  .pro-tip__label {
    font-size: 0.95rem;
  }

  .pro-tip__text {
    font-size: 0.9rem;
  }
}

.pro-tip__meta {
  margin-top: 10px;
  font-size: 0.75rem;
  color: #aaa;
  font-style: italic;
}