.intro {
  margin-top: 160px;
  margin-bottom: 80px;
  padding: 0 32px;
  background: none;
  gap: 40px;
  align-items: start;
  justify-items: center;
  grid-template-columns: 1fr 2fr;
}

.intro__image {
  border-radius: 8px;
  overflow: hidden;
  object-fit: cover;
  width: auto;
  max-height: 600px;
}

.intro__text h1 {
  margin-bottom: 16px;
}

.intro__text p {
  font-size: 1rem;
  margin-bottom: 16px;
}

.links {
  margin-top: 40px;
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  font-size: 1.5rem;
}

.links a {
  text-decoration: none;
  color: #3b5998;
  margin-right: 40px;
}

.links__button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-bottom: 3px solid transparent;
  transition: border-bottom 0.2s;
}

.links__button:hover {
  border-bottom: 3px solid #3b5998;
}

@media screen and (max-width: 49.99em) {
  .intro {
    grid-template-columns: 1fr;
    margin-top: 120px;
    margin-bottom: 40px;
  }
}

@media screen and (min-width: 50em) and (max-width: 63.99em) {
  .intro {
    grid-template-columns: 1fr 1fr;
    margin-top: 120px;
  }

  .intro__image {
    width: 100%;
    max-height: none;
  }
}

@media screen and (max-width: 63.99em) {
}

@media screen and (min-width: 64em) {
}
