.soc-hero {
  position: relative;
  background-color: #4a1782;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  padding: 120px 0 0;
  color: #fff;
}

.soc-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(54, 14, 100, 0.65) 0%,
    rgba(111, 34, 166, 0.45) 60%,
    rgba(54, 14, 100, 0.6) 100%
  );
  pointer-events: none;
}

.soc-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 0;
  z-index: 2;
}

.soc-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 585px;
  padding-bottom: 120px;
}

.soc-hero__title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  margin: 0;
  color: #fff;
}

.soc-hero__subtitle {
  font-size: 18px;
  line-height: 1;
  color: #fff;
  margin: 0;
  max-width: 520px;
}

.soc-hero__image {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  align-self: end;
  margin-bottom: 0;
}

.soc-hero__image img {
  max-width: 100%;
  width: 640px;
  height: auto;
  display: block;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.4));
}

@media (max-width: 1100px) {
  .soc-hero__title {
    font-size: 52px;
  }

  .soc-hero__image img {
    width: 100%;
    max-width: 520px;
  }
}

@media (max-width: 992px) {
  .soc-hero__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: end;
  }
  .soc-hero__image {
    order: 2;
    align-self: end;
    justify-content: center;
  }
  .soc-hero__image img {
    max-width: 360px;
    margin: 0 auto;
  }
  .soc-hero__title {
    font-size: 44px;
  }
  .soc-hero__content {
    align-items: center;
    text-align: center;
    padding-bottom: 0;
    margin: 0 auto;
  }
  .soc-hero__content .soc-section-label {
    margin: 0 auto;
  }
  .soc-hero__subtitle {
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .soc-hero__title {
    font-size: 36px;
  }
  .soc-hero__subtitle {
    font-size: 16px;
  }
  .soc-hero__content {
    padding-bottom: 0;
  }
}
