.hib-team-network {
  --team-primary: #1E8A8A;
  --team-dark: #0C1E21;
  --team-light: #D8E5E5;
  padding: clamp(22px, 3vw, 38px) 0;
  color: var(--team-dark);
}

.hib-team-network__header {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: end;
}

.hib-team-network__heading {
  min-width: 0;
}

.hib-team-network__eyebrow {
  display: block;
  margin-bottom: 12px;
  color: var(--team-primary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hib-team-network__title {
  max-width: 24ch;
  margin: 0;
  color: var(--team-dark);
  font-size: var(--hib-section-title-size, clamp(26px, 2vw, 32px));
  font-weight: var(--hib-section-title-weight, 650);
  line-height: var(--hib-section-title-line-height, 1.2);
  letter-spacing: -0.035em;
}

.hib-team-network__button {
  min-height: 46px;
  padding: 11px 15px;
  border: 1px solid rgba(12, 30, 33, 0.24);
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--team-dark);
  background: transparent;
  font-size: 13px;
  font-weight: 700;
  transition: color 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.hib-team-network__button:hover {
  border-color: var(--team-primary);
  color: #ffffff;
  background: var(--team-primary);
}

.hib-team-network__content {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.2fr) minmax(0, 0.95fr);
  border-radius: 18px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 92% 12%, rgba(30, 138, 138, 0.3), transparent 28%),
    linear-gradient(145deg, #0C1E21, #133c3f);
  box-shadow: 0 18px 46px rgba(12, 30, 33, 0.12);
}

.hib-team-network__statements {
  display: contents;
}

.hib-team-network__statement {
  position: relative;
  min-width: 0;
  min-height: 330px;
  padding: clamp(30px, 3.2vw, 46px);
  border-left: 1px solid rgba(216, 229, 229, 0.13);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
  background: transparent;
}

.hib-team-network__statement--primary {
  border-left: 0;
}

.hib-team-network__statement--accent {
  background: rgba(30, 138, 138, 0.1);
}

.hib-team-network__statement::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(30px, 3.2vw, 46px);
  width: 42px;
  height: 3px;
  background: var(--team-primary);
}

.hib-team-network__number {
  color: rgba(122, 200, 200, 0.72);
  font-family: var(--hib-heading-font, "Inter", sans-serif);
  font-size: clamp(34px, 3vw, 46px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.05em;
}

.hib-team-network__statement p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 900px) {
  .hib-team-network__header {
    grid-template-columns: 1fr;
  }

  .hib-team-network__content {
    grid-template-columns: 1fr;
  }

  .hib-team-network__statements {
    display: block;
  }

  .hib-team-network__button {
    width: max-content;
  }

  .hib-team-network__statement {
    min-height: 0;
    border-top: 1px solid rgba(216, 229, 229, 0.13);
    border-left: 0;
  }
}

@media (max-width: 549px) {
  .hib-team-network {
    padding: 24px 0;
  }

  .hib-team-network__header {
    margin-bottom: 26px;
    gap: 22px;
  }

  .hib-team-network__button {
    width: 100%;
  }

  .hib-team-network__statement {
    min-height: 0;
    padding: 24px 20px;
    gap: 34px;
  }

  .hib-team-network__statement::before {
    left: 20px;
  }

  .hib-team-network__number {
    font-size: 30px;
  }
}
