
/* media page */

/*videos */
.video-feature {
  margin: 0 10%;
  line-height: 1.1;
  h2 {
    font-weight: 400;
  }
  .subtitle {
    font-size: 4rem;
    margin: 0 0 2rem;
  }
}
.video-thumbnails {
  margin: 0 10%;
  margin-bottom: 4rem;
  ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    list-style: none;
    h3 {
      margin: 2rem 0 0;
      font-size: 2.4rem;
      font-weight: 400;
    }
    .subtitle {
      font-size: 1.5rem;
      margin: 0 0 2rem;
    }
  }
}
iframe {
  aspect-ratio: 16/9;
  width: 100%;
}

/* press releases */
.posts {
  margin-inline: 5%;
}
.press-releases {
    border: solid #000;
    border-width: 4px 0;
    list-style: none;
    padding: 4rem 0;
    margin: 0 0 4rem;
    padding-inline: 5%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    position: relative;
    &::before, &::after {
      content: url(/assets/img/chevron.svg);
      position: absolute;
      left: 1rem;
      width: 83px;
      height: 36px;
    }
    &::before {
      top: 0;
    }
    &::after {
      top: 100%;
    }
    li {
        display: flex;
        flex-direction: column;

            border: 4px solid black;
            padding: 2rem 1rem;
            .date-label {
                background: black;
                color: white;
                font-weight: 400;
                padding: 0.5rem 1.5rem;
            }
            h3 {
                font-weight: 700;
                margin: 2rem 0 1rem;
                font-size: 2rem;
            }
            p {
              margin-block: 1rem 2rem;
            }
            a {
              width: fit-content;
            }
    }
    
} 

/* press kit */
/* .press-kit {
  background: #000 url(/assets/img/partner-gradient.jpg) no-repeat top left;
  color: #fff;
  background-size: cover;
  padding: 2rem 55% 2rem 10%;
  margin: 2rem 0 0;
  text-align: right;
  h2 {
    font-size: 3rem;
  }
  .download-button {
    background: transparent url(/assets/img/arrow.svg) no-repeat calc(100% - 0.4rem) center;
    background-size: 1.2rem 1.2rem;
    border-radius: 1.6rem;
    border: 2px solid white;
    color: white;
    line-height: 1.0;
    vertical-align: middle;
    text-decoration: none;
    padding: 0.5rem 2.4rem 0.5rem 0.8rem;
    display: inline-block;
  }
} */

/* about page */
.hero-section {
    margin: 2rem 30% 2rem 10%;

    h1 {
        font-size: 4rem;
        margin-bottom: 3rem;
    }
    p {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
}

.blackout {
  background: black;
  border-radius: 10px;
  color: white;
  margin: 0 5% 4rem;
  padding: 2rem 5%;
  section {
    margin-bottom: 2rem;
    h2 {
      font-weight: 300;
    }
  }
  section:last-child {
    margin-bottom: 0;
  }
  .history-section {
    margin: 0 0 2rem;
    display: flex;
    h2 {
      margin-block: 4rem;
    }
  }
  ul.timeline {
    background: url(/assets/img/timeline-down.svg) no-repeat left 0;
    background-size: contain; 
    margin: 2rem 0 0;
    padding-inline: 10%;
    padding-block: 2rem 4rem;
    list-style: none;
    li.event {
      display: inline-block;
      margin: 1rem;
      span.date {
        display: block;
        text-align: center;
        font-weight: bold;
        display: inline-block;
        vertical-align: top;
        width: 6rem;
        background: #C19BE5;
        color: black;
      }
      p {
        display: block;
        margin-top: 1rem;
        color: #c19be5;
      }
    }
    li.today {
      background: #c19be5;
      border-radius: 10px;
      text-align: center;
      padding: 1rem;

      color: black;
      font-weight: 700;
      transform: translateX(-60%);
    }
  }
  ul.people {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      width: 100%;
      gap: 2rem; /* Adjust spacing between items */
      list-style: none;
      margin: 1.5rem 0;
      padding: 0;
      li.person {
        img {
          max-width: 140px;
          border-radius: 50%;
          transition: all 0.5s ease-in-out;
          filter: grayscale(100%);
        }
        h3 {
          font-size: 1.25rem;
          font-weight: 400;
        }
        p {
          font-size: 0.75rem;
          margin-bottom: 1rem;
        }
        a.linkedin img {
            border-radius: 0;
            height: 32px;
        }
        &:hover img {
          filter: grayscale(0%);
        }
      }
  }
  ul.advisors {
    grid-template-columns: repeat(3, 1fr);
    width: 75%;
  }
}

/* careers page */
.values-section {
  margin-inline: 10%;
  margin-block: 4rem;
  padding: 2rem 5%;
  background: black;
  border-radius: 10px;
  color: white;
  display: flex;
  gap: 2rem;
  align-items: stretch;
  #values {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 70%;
  }
  .value-item {
    margin-top: 1rem;
  }
  h3.value {
    color: #C19BE5;
    font-size: 1.5rem;
    font-weight: 300;
  }
  p {
    line-height: 1.4;
  }
}
.benefits-section, .dei-section, .current-openings {
  margin: 2rem 10% 0;
  padding-bottom: 2rem;
  p {
    margin: 1rem 50% 1rem 0;
  }
  
}
.benefits-grid {
  column-count: 2;
  column-gap: 1rem;
  margin: 0;
  padding: 1.5rem;
  list-style: square;
  border: 4px solid #000;
  li {
    padding-bottom: 0.5rem
  }
}

.current-openings {
  h2 {
    text-align: center;
  }
}

#team-photo img {
  max-width: 1280px;
  aspect-ratio: 16/9;
  margin: 0 auto;
  display: block;
}

/* privacy policy */
#privacy {
    ol {
        > li {
            margin-block: 2rem;
        }
        > li::marker {
            font-size: 2rem;
        }
    }
    margin-inline: 10%;
    padding-block: 2rem;
    h1 {
        font-size: 3rem;
    }
    h2 {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    p, ul {
        margin-bottom: 1rem;
    }
    ul {
        margin-left: 1em;
    }
}

/* contact page */
#contact-us {
  margin-inline: 10% 30%;
  h2 {
    margin-top: 2rem;
  }
  p {
    margin-block: 1rem;
    line-height: 1.5;
  }
  .unlock {
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.3;
  }
}
.big-ol-square {
  display: inline-block;
  margin-block: 2rem;
  padding: 1rem 5rem 1rem 1rem;
  border: 3px solid black;
  font-size: 1.5rem;
  color: black;
  text-decoration: none;
  background-position: right 1rem center;
  background-image: url('/assets/img/big-ol-squarrow.svg');
  background-repeat: no-repeat;
  transition: all 0.3s ease-in-out;
  font-weight: 400;
  &:hover {
    background-color: black;
    background-image: url('/assets/img/rightwhitearrow.svg');
    color: white;
  }
}

@media screen and (max-width: 767px) {

  .hero-section {
    margin-inline: 5%;
    h1 {
      font-size: 2.8rem;
      margin-bottom: 1rem;
    }
    p {
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }
  }

  /* media page */
  .press-releases { 
    grid-template-columns: none;
    margin: 0 0 4rem;
  }
  .video-feature {
    h2, .subtitle {
      font-size: 1.6rem;
      margin: 0;
    }
    .subtitle {
      margin-bottom: 1rem;
    }
  }
  .video-thumbnails {
    
    ul {
      grid-template-columns: none;
      margin-bottom: 4rem;
      h3, .subtitle {
        font-size: 1.6rem;
        margin: 0;
      }
      .subtitle {
        margin-bottom: 1rem;
      }
    }
    
  }

  /* career page */
  .values-section {
    flex-direction: column;
    padding-inline: 5%;
    margin-inline: 5%;
    h2 {
      width: auto;
      margin: 0;
    }
    #values {
      width: auto;
    }
  }
  #team-photo {
    img {
      width: 100vw;
    }
  }

  /* about page */
  .blackout {
    margin-inline: 5%;
    .history-section {
      flex-direction: column;
      h2 {
        margin-block: 2rem;
      }
    }
    ul.timeline {
      background-image: none;
      margin: 0;
      padding: 0;
      li.event {
        margin-block: 1rem;
      }
      li.today {
        transform: translateX(0);
        margin: 0 auto;
      }
    }

    ul.people {
      grid-template-columns: repeat(2, 1fr);
      li.person {
        img {
          max-width: 108px;
        }
      }
    }
    ul.advisors {
      width: 100%;
    }
  }
  .blackout {
    display: flex;
    flex-direction: column;
    margin-inline: 0;
    border-radius: 0;
  }
  .history-section {
    display: none !important;
  }
  /* contact page */
  #contact-us {
    margin-inline: 5%;
  }
  .big-ol-square {
    font-size: 1.25rem;
  }
  
}