/* WiLaw CTA Banner — legal category service pages */
.wilaw-banner {
  background: linear-gradient(135deg, #1a1a4e 0%, #2d1b69 40%, #3a2080 100%);
  color: #fff;
  padding: 3rem 1.5rem;
  border-radius: 12px;
  margin: 3rem auto;
  max-width: 1200px;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  position: relative;
  overflow: hidden;
}

.wilaw-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.wilaw-banner__logo {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.wilaw-banner__logo i {
  color: #a5b4fc;
}

.wilaw-banner__content {
  flex: 1;
  min-width: 0;
}

.wilaw-banner__headline {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
}

.wilaw-banner__desc {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  opacity: 0.85;
}

.wilaw-banner__cta {
  flex-shrink: 0;
}

.wilaw-banner__cta a {
  display: inline-block;
  background: #6366f1;
  color: #fff;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s;
}

.wilaw-banner__cta a:hover {
  background: #4f46e5;
  transform: translateY(-1px);
}

.wilaw-banner__cta a:active {
  transform: translateY(0);
}

/* Responsive: tablet */
@media (max-width: 768px) {
  .wilaw-banner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.25rem;
    gap: 1.5rem;
  }

  .wilaw-banner__logo {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }

  .wilaw-banner__headline {
    font-size: 1.25rem;
  }

  .wilaw-banner__desc {
    font-size: 0.9rem;
  }
}

/* Responsive: mobile */
@media (max-width: 480px) {
  .wilaw-banner {
    padding: 1.5rem 1rem;
    margin: 2rem 1rem;
    border-radius: 8px;
  }

  .wilaw-banner__headline {
    font-size: 1.125rem;
  }

  .wilaw-banner__cta a {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    width: 100%;
    text-align: center;
  }
}
