/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  Default GeneratePress child theme
 Author:       Tom Usborne
 Author URI:   https://tomusborne.com
 Template:     generatepress
 Version:      0.1
*/

.inspry-hero {
  position: relative;
  z-index: 5;
  text-align: center;
  color: #fff;
}

.inspry-hero__layout {
  display: grid;
  column-gap: 0.75rem;
  grid-template-columns: repeat(12, 1fr);
}

.inspry-hero__body {
  grid-area: 1 / 1 / -1 / -1;
  padding: 1.5rem;
}

.inspry-hero__title {
  text-wrap: balance;
}

.inspry-hero__subtitle {
  padding-bottom: 10px;
  color: #5CE6CD;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.5;
}

.inspry-hero__content {
  font-size: 1.125rem;
  font-weight: 500;
}

.inspry-hero__media {
  grid-area: 1 / 1 / -1 / -1;
  position: relative;
  z-index: -5;
}

.inspry-hero__media::before {
  content: '';
  position: absolute;
  z-index: -10;
  inset: 0;
  background-color: hsl(0 0% 0% / 70%);
}

.inspry-hero__image {
  position: absolute;
  z-index: -15;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (width >= 768px) {
  .inspry-hero {
    margin-top: -200px;
    text-align: left;
    color: inherit;
  }

  .inspry-hero__body {
    position: relative;
    z-index: 0;
    grid-column: 1 / span 9;
    padding-top: 16rem;
    padding-right: 8vw;
    padding-bottom: 5rem;
  }
  
  .inspry-hero__body::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% + 5rem);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1143.24' height='905.652'%3E%3Cpath d='M-604.963 1376.01v887.897c209.49-4.643 379.277-70.119 514.215-70.119 139.883 0 233.14 87.875 340.293 87.875 107.154 0 89.837-76.638 140.33-164.094 50.493-87.455 148.402-57.387 148.402-145.71 0-88.324-165.439-203.549-165.439-351.053 0-147.505 49.318-244.795 49.318-244.795z' style='fill:%23fff;fill-opacity:1' transform='translate(604.963 -1376.01)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
  }

  .inspry-hero__texts {
    max-width: 58ch;
    margin-left: auto;
  }

  .inspry-hero__title {
    font-size: 2rem;
  }

  .inspry-hero__content {
    font-weight: 400;
  }

  .inspry-hero__media {
    grid-column: 8 / span 5;
  }

  .inspry-hero__media::before {
    box-shadow: inset 0 0 0 2000px rgba(000, 0, 70, 0.3);
    background-color: transparent;
  }
}

@media (width >= 1200px) {
  .inspry-hero__body {
    grid-column: 1 / span 7;
  }

  .inspry-hero__media {
    grid-column: 6 / span 7;
  }
}
