.recruit-page {
    background: #f7f8fa;
}


/******** HERO ********/

.recruit-hero {
    background: #fff;
    padding: 20px 0 80px;
}


.breadcrumb {
    max-width: 1200px;
    margin: auto;
    padding: 20px 40px;
    font-size: 12px;
}


.hero-container {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 45% 55%;
    align-items: center;
}


.hero-left {
    padding: 40px;
}


    .hero-left h1 {
        font-size: 72px;
        color: #004ca5;
    }


    .hero-left h2 {
        font-size: 28px;
        margin: 15px 0 30px;
        color: #004ca5;
    }


    .hero-left p {
        line-height: 2;
    }


.hero-right img {
    width: 100%;
    border-radius: 20px;
}


/******** COMMON ********/

.section {
    padding: 80px 0;
    max-width: 1200px;
    margin: auto;
}


.section-title {
    text-align: center;
    margin-bottom: 60px;
}


    .section-title h2 {
        font-size: 42px;
        color: #004ca5;
    }


        .section-title h2::after {
            content: "";
            display: block;
            width: 60px;
            height: 4px;
            background: #004ca5;
            margin: 20px auto;
        }


/******** MESSAGE ********/

.message-card {
    background: #fff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    text-align: center;
    line-height: 2;
}


/******** JOB ********/

.job-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}


.job-card {
    background: #fff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,.08);
    text-align: center;
    font-size: 22px;
}


    .job-card h3 {
        margin: 20px 0;
        color: #004ca5;
    }


    .job-card p {
        font-size: 16px;
    }


/******** BENEFITS ********/

.benefit-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;
}


    .benefit-grid div {
        background: #fff;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,.08);
        font-weight: 700;
    }


/******** TABLE ********/

.recruit-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
}


    .recruit-table th {
        width: 220px;
        padding: 25px;
        background: #f4f8fd;
        color: #004ca5;
        text-align: left;
    }


    .recruit-table td {
        padding: 25px;
    }


    .recruit-table tr {
        border-bottom: 1px solid #eee;
    }


/******** CTA ********/

.recruit-cta {
    max-width: 1200px;
    margin: 80px auto;
    padding: 80px;
    background: linear-gradient( 90deg, #004197, #0063be );
    color: #fff;
    border-radius: 20px;
    text-align: center;
}


    .recruit-cta h2 {
        margin-bottom: 30px;
    }


/******** MOBILE ********/

@media(max-width:900px) {

    .hero-container {
        grid-template-columns: 1fr;
    }


    .job-grid {
        grid-template-columns: 1fr;
    }


    .benefit-grid {
        grid-template-columns: 1fr;
    }
}

.recruit-detail {
    display: inline-block;
    text-decoration: none;
    color: #004ca5;
    font-weight: 700;
    font-size: 24px;
    transition: color .3s, transform .3s;
    text-decoration: underline;
}

.recruit-detail:hover {
    color: #4AA6ECFF;
    transform: translateY(-2px);
}

.email {
    color: #4AA6ECFF;
    font-size: 18px;
}

@media(max-width:640px){

  /* HERO */
  .recruit-hero {
    padding: 20px 0 40px;
  }

  .breadcrumb {
    padding: 16px 20px;
    font-size: 10px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    padding: 0 16px;
  }

  .hero-left {
    padding: 20px 0;
  }

  .hero-left h1 {
    font-size: 40px;
    margin-top: 0;
  }

  .hero-left h2 {
    font-size: 20px;
    margin: 10px 0 20px;
  }

  .hero-left p {
    font-size: 14px;
    line-height: 1.7;
  }

  .hero-right img {
    border-radius: 12px;
    margin-top: 20px;
  }

  /* SECTION */
  .section {
    padding: 50px 16px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  .section-title h2 {
    font-size: 26px;
  }

  .section-title h2::after {
    width: 40px;
    height: 3px;
    margin: 14px auto;
  }

  /* MESSAGE */
  .message-card {
    padding: 30px 20px;
    font-size: 14px;
    line-height: 1.7;
  }

  /* JOB */
  .job-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .job-card {
    padding: 30px 20px;
    font-size: 18px;
  }

  .job-card h3 {
    font-size: 20px;
    margin: 14px 0;
  }

  .job-card p {
    font-size: 14px;
  }

  /* BENEFITS */
  .benefit-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .benefit-grid div {
    padding: 20px;
    font-size: 14px;
  }

  /* TABLE */
  .recruit-table th,
  .recruit-table td {
    padding: 16px;
    font-size: 14px;
  }

  .recruit-table th {
    width: auto;
  }

  /* CTA */
  .recruit-cta {
    padding: 40px 20px;
    margin: 40px auto;
  }

  .recruit-cta h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .recruit-detail {
    font-size: 18px;
  }

  .email {
    font-size: 14px;
  }
}
