/* Recruitment Page Custom Styles */

/* Header Area */
.recruitment-header {
  background-color: #f5f8fa;
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.recruitment-header .header-tit {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 0;
}

.btn-online {
  background-color: #4477b8;
  color: #fff;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.3s;
  box-sizing:border-box;
}

.btn-online:hover {
  background-color: #335a8c;
  color: #fff;
}


/* Orange Square Bullet Headings */
.orange-tit {
  position: relative;
  padding-left: 25px;
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 25px;
  padding-bottom: 0;
  line-height: 1;
}

.orange-tit::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 15px;
  height: 15px;
  background-color: #fdb913;
}

/* Specific List Adjustments */
.ul-type-dot > li {
  padding-bottom: 10px;
}

.ul-type-dot.blue-text > li {
  color: #004bae;
}

.procedure-steps {
  margin-top: 10px;
  font-size: 15px;
  line-height: 1.6;
  color: #444;
}

.procedure-steps span {
  display: inline-block;
}

.procedure-steps .arrow {
  display: inline-block;
  margin: 0 8px;
  font-size: 14px;
  color: #999;
  border: none;
  transform: none;
  width: auto;
  height: auto;
}

/* Facility Guide Button */
.btn-facility {
  background-color: #f2f2f2;
  border: 1px solid #ddd;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 15px;
  transition: background-color 0.3s;
}

.btn-facility:hover {
  background-color: #e5e5e5;
  color: #333;
}

.btn-facility::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="2" stroke="black"><path stroke-linecap="round" stroke-linejoin="round" d="m2.25 12 8.954-8.955c.44-.439 1.152-.439 1.591 0L21.75 12M4.5 9.75v10.125c0 .621.504 1.125 1.125 1.125H9.75v-4.875c0-.621.504-1.125 1.125-1.125h2.25c.621 0 1.125.504 1.125 1.125V21h4.125c.621 0 1.125-.504 1.125-1.125V9.75M8.25 21h8.25" /></svg>')
    no-repeat center;
  background-size: contain;
}

/* Bottom Button Box */
.bottom-btn-box {
  display: flex;
  justify-content: flex-end;
  margin-top: 40px;
}

/* Responsive Adjustments */
@media screen and (max-width: 1024px) {
  .recruitment-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
  }
}

@media screen and (max-width: 768px) {
  .recruitment-header .header-tit {
    font-size: 22px;
  }

  .orange-tit {
    font-size: 20px;
  }

  .orange-tit::before {
    width: 12px;
    height: 12px;
    top: 4px;
  }
	
	.ol-type01 > li {padding: 0 0 10px 0;}
}

@media screen and (max-width: 400px) {
  .recruitment-header .header-tit {
    font-size: 20px;
  }

  .btn-online {
    width: 100%;
    justify-content: center;
  }
}