.section {
  color: #424242;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
}

.section + .section {
  margin-top: 80px;
}

.section-intro .text {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 0;
}

.section-intro .text p {
  text-align: center;
  margin-bottom: 32px;
}

.section-intro .text a {
  color: #D61B26;
  text-decoration: none;
  font-weight: 500;
  padding: 12px 24px;
  border: 2px solid #D61B26;
  border-radius: 8px;
  display: flex;
  align-items: center;
}

.section-intro .text a::after {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url('../images/careers/chevron-right.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 4px;
}

.section-intro .image-with-caption + .image-with-caption {
  margin-top: 32px;
}

.section-intro .image-with-caption .image {
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 8px;
}

.section-intro .image-with-caption .image img {
  width: 100%;
}

.section-intro .image-with-caption p {
  color: #757575;
  font-size: 12px;
  line-height: 1.25;
  margin-bottom: 0;
}

.section-expo .expo-item {
  background-color: #f5f5f5;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 16px;
  padding: 32px 16px;
}

.section-expo .expo-item + .expo-item {
  margin-top: 24px;
}

.section-expo .expo-item .location {
  display: flex;
  align-items: center;
  color: #004899;
  font-weight: 500;
  margin-bottom: 16px;
  font-size: 24px;
  line-height: 1.25;
}

.section-expo .expo-item .tag {
  background-color: #DCE7F4;
  font-size: 16px;
  line-height: 1.5;
  padding: 4px 12px;
  border-radius: 4px;
  margin-right: 12px;
}

.section-expo .expo-item p {
  margin-bottom: 0;
}

.section-opportunity {
  padding: 48px 0;
  background-color: #F5F9FD;
}

.section-opportunity .opportunity-list {
  background-color: #fff;
  padding: 24px;
  border: 1px solid #DCE7F4;
  border-radius: 16px;
  text-align: center;
  margin-bottom: 32px;
}

.section-opportunity .opportunity-item + .opportunity-item {
  margin-top: 24px;
}

.section-opportunity .opportunity-item h4 {
  color: #424242;
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.5;
}

.section-opportunity .opportunity-item p {
  margin-bottom: 0;
}

.section-opportunity .link-wrap {
  display: flex;
  justify-content: center;
}

.section-opportunity .link-wrap a {
  background-color: #004899;
  color: #fff;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-weight: 500;
}

.section-opportunity .link-wrap a::after {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url('../images/careers/chevron-right-white.svg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  margin-left: 4px;
}

@media (min-width: 992px) {
  .section + .section {
    margin-top: 120px;
  }

  .section-intro .container {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
  }

  .section-intro .text {
    width: calc(1/3 * 100%);
    padding: 60px 0;
  }

  .section-intro .image-group {
    width: calc(2/3 * 100%);
    display: flex;
  }

  .section-intro .image-with-caption {
    width: 100%;
  }

  .section-intro .image-with-caption + .image-with-caption {
    margin-top: 0;
    margin-left: 24px;
  }

  .section-expo .expo-list {
    display: flex;
  }

  .section-expo .expo-item {
    width: 100%;
  }

  .section-expo .expo-item + .expo-item {
    margin-top: 0;
    margin-left: 24px;
  }

  .section-expo .expo-item .location {
    font-size: 28px;
  }

  .section-opportunity {
    padding: 80px 0;
  }

  .section-opportunity .opportunity-list {
    max-width: 588px;
    margin: 0 auto 32px;
  }
}

@media (min-width: 1250px) {
  .section-expo .expo-item {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .section-expo .expo-item .location {
    margin-bottom: 0;
    margin-right: 48px;
  }
}