.top-wrapper {
  padding-top: 60px;
  margin-bottom: 20px;
  text-align: center;
}
.top-wrapper h1 {
  font-size: 3.5rem;
  color: var(--logoBrown);
  width: 85%;
  margin: 0 auto 20px auto;
  line-height: 3.5rem;
}
.top-wrapper h2 {
  font-size: 2.3rem;
  color: var(--buttonSelect);
  margin-bottom: 40px;
}

.top-wrapper p {
  width: 85%;
  margin: 0 auto 20px auto;
}

.career-video {
  width: 100%;
  position: relative;
  left: 50%;
  margin-top: 30px;

  transform: translateX(-50%);
}

.staff-wellbeing-section {
  padding-top: 70px;
}

.staff-wellbeing {
  text-align: center;
  margin-bottom: 30px;
}

.staff-wellbeing h3 {
  font-size: 3rem;
  margin-bottom: 15px;
  color: var(--logoBrown);
}

.staff-wellbeing p {
  width: 80%;
  margin: 0 auto;
}

.employee-assistance {
  margin-top: 70px;
  background-color: #f9f9f9;
  padding: 30px 0;
}

.text-and-image .text-wrapper {
  padding: 70px 70px 70px 70px;
}
.text-and-image .text-wrapper h3 {
  font-size: 3rem;
  color: var(--logoBrown);
  margin-bottom: 20px;
}

.text-and-image .img-wrapper {
  background-image: url(media/careers/employee-assistance.png);
  background-size: cover;
}

.benefits {
  padding: 50px 0;
  margin-bottom: 40px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 3vw, 28px);
}

.benefit-card {
  background: #fff;
  border: 1px solid #eef1f4;
  border-radius: var(--radius);
  padding: 22px 22px 18px;
  box-shadow: var(--shadow-1);
  transition: transform 0.12s ease, box-shadow 0.2s ease;
}

.benefit-card img {
  width: 75px;
  height: auto;
  margin-bottom: 18px;
}

.benefit-card h4 {
  font-size: 1.3rem;
  text-align: center;
  color: var(--logoBrown);
}
.benefit-card p {
  margin: 0;
}
.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-2);
}

.bottom-wrapper {
  margin-top: 30px;
  display: flex;
}

.img {
  flex-basis: 50%;
}

.img {
  position: relative;
}

.bottom-wrapper .text-wrapper {
  box-sizing: border-box;
  flex-basis: 50%;
  padding: 0 30px;
}

.point {
  display: flex;
  margin-bottom: 5px;
  align-items: center;
  position: relative;
}

.point i {
  flex-basis: 5%;
  font-size: 1.5rem;
  color: var(--buttonSelect);
}
.point p {
  margin-top: 20px;
  flex-basis: 95%;
  font-size: 0.9rem;
  position: relative;

  padding-left: 10px;
}

.bottom-wrapper .text-wrapper .custom-btn {
  margin-top: 50px;
  display: block;
  background-color: var(--stndBrown);
}
.bottom-wrapper .text-wrapper .custom-btn:hover {
  display: block;
  background-color: var(--buttonSelect);
}

@media (max-width: 800px) {
  .text-and-image .text-wrapper {
    text-align: center;
  }

  .benefit-card {
    box-sizing: border-box;
    text-align: center;
    flex: 1 1 calc(50% - 10px) !important;
  }

  .bottom-wrapper {
    display: block;
  }

  .bottom-wrapper .text-wrapper {
    box-sizing: border-box;
    flex-basis: 50%;
    padding: 50px 30px;
  }

  .img img {
    width: 100%;
  }
}
