/* Static Banner Component */
.static-banner {
  width: 100%;
  height: var(--banner-height);
  background-image: url('/images/backgrounds/succession-title.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-bottom: var(--spacing-lg);
  animation: fadeIn 0.8s ease-out;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 100px), 0 100%);
}

@media (max-width: 768px) {
  .static-banner {
    height: 300px;
    margin-bottom: var(--spacing-md);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 60px), 0 100%);
  }
}
