.bellmont-banner {
  background: #0a0a0a;
  padding: clamp(3rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.bellmont-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent 50%);
}

.bellmont-inner {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.bellmont-content {
  flex: 1;
}

.bellmont-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.bellmont-heading {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.bellmont-text {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted-foreground);
  margin-bottom: 1.75rem;
  max-width: 540px;
}

.bellmont-logo {
  display: block;
  background: white;
  border-radius: var(--border-radius);
  padding: 1.5rem 2rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.bellmont-logo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.08);
}

.bellmont-logo img {
  display: block;
  width: 220px;
  height: auto;
}

@media (min-width: 768px) {
  .bellmont-inner {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }

  .bellmont-logo img {
    width: 260px;
  }
}

@media (min-width: 1025px) {
  .bellmont-inner {
    gap: 4rem;
  }

  .bellmont-logo {
    padding: 2rem 2.5rem;
  }

  .bellmont-logo img {
    width: 300px;
  }
}

@media (max-width: 480px) {
  .bellmont-logo {
    align-self: flex-start;
    padding: 1.25rem 1.5rem;
  }

  .bellmont-logo img {
    width: 100%;
    max-width: 400px;
    height: auto;
  }
}
