.careers-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.careers-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: calc(100vw - 68px);
  height: 780px;
  margin-bottom: 150px;
  padding: 0 20px;
  border-radius: 40px;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2)),
    url('../img/careers_1.jpg');
  background-size: calc(100% + 500px);
  background-position: 13% 63%;
  gap: 40px;
}

.careers-content h1 {
  font-size: 3.25rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.careers-content p {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}

.work-section {
  display: flex;
  flex-direction: column;
  margin-bottom: 240px;
  color: #000000;
  gap: 200px;
}

.work-title {
  font-size: 2.625rem;
  font-weight: 700;
  line-height: 1.0;
  margin-bottom: 80px;
}

.work-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  gap: 20px;
}

.work-flex-grid {
  display: flex;
  width: 100%;
  gap: 20px;
}

.work-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 348px;
  padding: 40px;
  border-radius: 40px;
  background-color: #f9f9f9;
}

.work-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 32px;
  object-fit: contain;
}

.work-card h3 {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.work-card p {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
}

@media (max-width: 1600px) {
  .work-card h3 {
    font-size: 1.5rem;
  }

  .work-card p {
    font-size: 1rem;
  }
}

@media (max-width: 1199px) {
  .work-card h3 {
    font-size: 1.3rem;
  }

  .work-card p {
    font-size: 0.9rem;
  }

  .work-title {
    font-size: 2rem;
    margin-bottom: 40px;
  }
}

@media (max-width: 992px) {
  .careers-content {
    height: 500px;
  }

  .careers-content h1 {
    font-size: 2rem;
  }

  .careers-content p {
    font-size: 1.3rem;
  }

  .work-card {
    height: unset;
  }
}

@media (max-width: 768px) {
  .careers-content p br {
    display: none;
  }

  .work-title {
    font-size: 1.92rem;
  }

  .work-card h3 {
    font-size: 1.2rem;
  }

  .work-card p {
    font-size: 1rem;
  }

  .work-card p br {
    display: none;
  }

  .careers-content {
    height: 400px;
  }

  .careers-content h1 {
    font-size: 1.92rem;
  }

  .careers-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .careers-wrapper {
    display: block;
  }

  .work-flex-grid {
    flex-direction: column;
    gap: 15px;
  }

  .careers-content {
    width: 100vw;
    height: 300px;
    margin-right: -20px;
    margin-bottom: 60px;
    gap: 30px;
    border-radius: 0;
  }

  .careers-content h1 {
    font-size: 1.6rem;
    margin-bottom: 0px;
  }

  .careers-content p {
    font-size: 0.9rem;
  }

  .work-title {
    font-size: 1.5rem;
  }

  .work-section {
    margin-bottom: 100px;
    gap: 100px;
  }

  .work-card h3 {
    font-size: 1.3rem;
  }

  .work-card p {
    font-size: 0.9rem;
  }

  .work-card p br {
    display: none;
  }
}

/* 통일된 반응형 padding */
@media (max-width: 1600px) {
  #careers-section .container {
    padding-left: 40px;
    padding-right: 40px;
  }
}

@media (max-width: 1200px) {
  #careers-section .container {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media (max-width: 992px) {
  #careers-section .container {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (max-width: 768px) {
  #careers-section .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 480px) {
  #careers-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
}