.page-hero {
  min-height: clamp(480px, 64vh, 680px);
  display: grid;
  place-items: center;
  padding: clamp(5rem, 9vw, 8rem) 0;
  background-image:
    linear-gradient(90deg, rgba(8, 15, 24, 0.8), rgba(8, 15, 24, 0.68)),
    url('../../img/about/hero-nosotros.jpg');
  background-position: center;
  background-size: cover;
}

.page-hero::before {
  background:
    radial-gradient(circle at 50% 35%, rgba(116, 170, 31, 0.18), transparent 44%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.34));
  opacity: 1;
}

.page-hero .container {
  max-width: 920px;
}

.about-hero-kicker {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(140, 198, 63, 0.5);
  border-radius: 999px;
  background: rgba(8, 15, 24, 0.58);
  color: var(--obrk-green-secondary);
  letter-spacing: 0.08em;
}

.page-hero h1 {
  color: var(--obrk-white);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
}

.page-hero .obritek-text-lead {
  max-width: 760px;
  margin: 1.25rem auto 0;
  color: rgba(255, 255, 255, 0.88);
}

.about-hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.about-hero-actions .btn {
  min-width: 210px;
}

.company-image {
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.company-image img {
  border-radius: 0;
  box-shadow: none;
}

.company-image figcaption {
  margin: 0;
  padding: 0.75rem 1rem;
}

@media (max-width: 767px) {
  .page-hero {
    min-height: 520px;
    background-image:
      linear-gradient(90deg, rgba(8, 15, 24, 0.88), rgba(8, 15, 24, 0.7)),
      url('../../img/about/hero-nosotros.jpg');
    background-position: 58% center;
  }

  .about-hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .about-hero-actions .btn {
    width: 100%;
  }
}
