/* BP Eagles – Rólunk záró csapatszakasz */

.bpe-about-teams,
.bpe-about-teams * {
  box-sizing: border-box;
}

.bpe-about-teams {
  --blue: #0097df;
  --blue-light: #12acf3;
  --line: rgba(255, 255, 255, 0.11);
  --shell: 1380px;

  position: relative;
  overflow: hidden;
  padding: clamp(88px, 8vw, 126px) 0;
  color: #f5f7f9;
  background:
    radial-gradient(circle at 50% 10%, rgba(0, 151, 223, 0.075), transparent 31%),
    #030609;
  font-family: "Rajdhani", "Arial Narrow", Arial, sans-serif;
}

.bpe-about-teams::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0.45;
}

.bpe-about-teams__shell {
  width: min(calc(100% - 64px), var(--shell));
  margin-inline: auto;
}

.bpe-about-teams__heading {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.bpe-about-teams__eyebrow {
  display: inline-flex;
  margin-bottom: 16px;
  align-items: center;
  gap: 9px;
  color: var(--blue);
  font-family: "Inter", Arial, sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bpe-about-teams__eyebrow i {
  width: 22px;
  height: 2px;
  background: var(--blue);
}

.bpe-about-teams .bpe-about-teams__heading h2 {
  margin: 0;
  color: #fff !important;
  font-size: clamp(52px, 5.5vw, 78px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 0.86;
  text-transform: uppercase;
}

.bpe-about-teams .bpe-about-teams__heading h2 span {
  color: var(--blue) !important;
}

.bpe-about-teams__heading p {
  max-width: 650px;
  margin: 25px auto 0;
  color: #8b969f;
  font-family: "Inter", Arial, sans-serif;
  font-size: 13px;
  line-height: 1.7;
}

.bpe-about-teams__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.bpe-about-team {
  position: relative;
  display: block;
  min-height: 410px;
  overflow: hidden;
  border: 1px solid var(--line);
  color: #fff;
  background: #070c11;
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  text-decoration: none;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.bpe-about-team:hover {
  border-color: rgba(0, 151, 223, 0.55);
  transform: translateY(-5px);
}

.bpe-about-team::before {
  position: absolute;
  z-index: 3;
  top: -1px;
  left: 14px;
  width: 120px;
  height: 2px;
  content: "";
  background: var(--blue);
  box-shadow: 0 0 16px rgba(0, 151, 223, 0.5);
}

.bpe-about-team::after {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background:
    linear-gradient(0deg, rgba(3, 6, 9, 0.98) 0%, rgba(3, 6, 9, 0.68) 48%, rgba(3, 6, 9, 0.05) 100%);
}

.bpe-about-team img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: filter 0.4s ease, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.bpe-about-team:hover img {
  filter: brightness(1.08);
  transform: scale(1.025);
}

.bpe-about-team__number {
  position: absolute;
  z-index: 2;
  top: 23px;
  right: 25px;
  color: rgba(255, 255, 255, 0.18);
  font-size: 54px;
  font-weight: 700;
}

.bpe-about-team__content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 30px;
}

.bpe-about-team__content > span {
  color: var(--blue-light);
  font-family: "Inter", Arial, sans-serif;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.bpe-about-teams .bpe-about-team h3 {
  margin: 5px 0 0;
  color: #fff !important;
  font-size: clamp(34px, 3.4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

.bpe-about-team__content p {
  max-width: 470px;
  margin: 9px 0 0;
  color: #89959e;
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  line-height: 1.6;
}

.bpe-about-team__content strong {
  display: inline-flex;
  margin-top: 18px;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.bpe-about-team__content svg,
.bpe-about-teams__footer svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  transition: transform 0.18s ease;
}

.bpe-about-team:hover strong svg,
.bpe-about-teams__footer a:hover svg {
  transform: translateX(4px);
}

.bpe-about-teams__footer {
  display: flex;
  margin-top: 23px;
  padding: 21px 24px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.018);
}

.bpe-about-teams__footer p {
  margin: 0;
  color: #747f88;
  font-family: "Inter", Arial, sans-serif;
  font-size: 10px;
}

.bpe-about-teams__footer a {
  display: inline-flex;
  min-height: 48px;
  padding: 0 20px;
  align-items: center;
  gap: 13px;
  color: #fff;
  background: var(--blue);
  clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-decoration: none;
  text-transform: uppercase;
}

.bpe-about-teams a:focus-visible {
  outline: 2px solid var(--blue-light);
  outline-offset: 4px;
}

/* Laptop */
@media (max-width: 1100px) {
  .bpe-about-teams__shell {
    width: min(calc(100% - 40px), var(--shell));
  }
}

/* Tablet */
@media (max-width: 820px) {
  .bpe-about-teams__grid {
    grid-template-columns: 1fr;
  }

  .bpe-about-team {
    min-height: 420px;
  }

  .bpe-about-teams__footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

/* Telefon */
@media (max-width: 560px) {
  .bpe-about-teams {
    padding-block: 76px;
  }

  .bpe-about-teams__shell {
    width: min(calc(100% - 28px), var(--shell));
  }

  .bpe-about-teams .bpe-about-teams__heading h2 {
    font-size: clamp(46px, 13vw, 60px);
  }

  .bpe-about-team {
    min-height: 370px;
  }

  .bpe-about-team img {
    object-position: center top;
  }

  .bpe-about-team__content {
    padding: 22px 18px;
  }

  .bpe-about-teams__footer {
    padding: 18px;
  }

  .bpe-about-teams__footer a {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 390px) {
  .bpe-about-team {
    min-height: 340px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bpe-about-teams *,
  .bpe-about-teams *::before {
    transition-duration: 0.01ms !important;
  }
}
