/* About Page Specific Styles */

/* About Header Photo Wrapper */
.about-header-photo-wrapper {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: 40px;
  margin-bottom: 0;
  padding: 0;
}

.about-header-photo-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 60px 60px 60px 60px;
}

/* About Content Wrapper */
.about-content-wrapper {
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 40px;
  padding: 80px 50px;
  margin-top: -80px;
  margin-bottom: 80px;
  position: relative;
}

@media (min-width: 1200px) {
  .about-content-wrapper {
    max-width: 1180px;
    margin-inline: auto;
  }
}

@media (max-width: 1200px) {
  .about-content-wrapper {
      margin-left: 15px;
      margin-right: 15px;
  }
}

/* About Description */
.about-description {
  margin-bottom: 60px;
}

.about-description-text {
  font-size: 18px;
  line-height: 2;
  text-align: left;
  margin: 0;
}

/* About Link Grid */
.about-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 10px;
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.about-link-item:hover {
  background-color: #FFEB01;
  color: #000;
}

.about-link-item:hover .about-link-arrow {
  background-image: url('../img/arrow_right_ex.png');
}

.about-link-yellow {
  background-color: #FFEB01;
}

.about-link-yellow:hover {
  background-color: #FFEB01;
}

.about-link-text {
  flex: 1;
}

.about-link-arrow {
  width: 32px;
  height: 32px;
  display: block;
  background-image: url('../img/arrow_right_ex.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: background-image 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
}

@media (max-width: 991px) {
  .about-header-photo-wrapper {
    margin-top: 30px;
    margin-bottom: 0;
  }
  
  .about-header-photo-img {
    border-radius: 45px 45px 45px 45px;
  }

  .about-content-wrapper {
    padding: 45px 15px 30px;
    margin-top: -60px;
    margin-bottom: 60px;
    border-radius: 30px;
  }

  .about-description {
    margin-bottom: 40px;
  }

  .about-description-text {
    font-size: 16px;
    line-height: 1.875;
  }

  .about-link-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-link-item {
    padding: 18px 24px;
    font-size: 16px;
    border-radius: 10px;
  }

  .about-link-arrow {
    width: 28px;
    height: 28px;
    margin-left: 12px;
  }
}


@media (max-width: 768px) {
    .page-header {
        margin-bottom: 80px;
    }
    .about-content-wrapper {
        margin-bottom: 60px;
    }
    .recruit_wrapper {
        padding-top: 0;
    }
}