/* Search */
.recruit-search { margin: 24px 0; }
.recruit-search__form { background:#fff; border:1px solid #e5e5e5; border-radius:12px; padding:16px; }

.recruit-search__top { display:grid; grid-template-columns: 1fr 1fr 1.2fr; gap:12px; }
.recruit-search__select, .recruit-search__keyword { width:100%; height:44px; border:1px solid #d0d7de; border-radius:8px; padding:0 12px; }

.recruit-search__accordionBtn{
  margin-top:14px;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:#fff;
  border:0;
  padding:14px 12px;
  font-weight:700;
  border-top:1px dashed #cfd8dc;
  border-bottom:1px dashed #cfd8dc;
  cursor:pointer;
}
.recruit-search__accordionIcon{
  width:38px; height:38px; border-radius:999px;
  display:inline-flex; align-items:center; justify-content:center;
  border:1px solid #01a99d;
  color:#01a99d;
  font-size:20px;
}

.recruit-search__accordion{
  overflow:hidden;
  max-height:0;
  opacity:0;
  transition:max-height .35s ease, opacity .25s ease;
}
.recruit-search__accordion.is-open{
  max-height:1000px;
  opacity:1;
}
.recruit-search__select.is-disabled{
  background:#f3f4f6;
  opacity:.7;
  cursor:not-allowed;
}

.recruit-search__block {
  margin-top:10px;
  padding: 1rem 0;
  border-bottom: 1px dashed #cfd8dc;
}
.recruit-search__blockTitle { color:#1e4fbf; font-weight:700; margin:8px 0; }
.recruit-search__checks {
  display:flex;
  flex-direction: column;
  flex-wrap:wrap;
  gap:16px 24px;
}
.recruit-search__check { display:flex; gap:8px; align-items:center; }

.recruit-search__bottom{
  margin-top:14px;
  display:flex;
  justify-content:flex-end;
  gap:12px;
  align-items:center;
}
.recruit-search__submit{
  width: 230px;
  padding: 0.7rem 3rem;
  border-radius:8px;
  border:0;
  background:#01a99d;
  color:#fff;
  text-align: center;
  font-size: 1rem;
  font-weight:700;
  cursor:pointer;
}
.recruit-search__reset{
  width: 230px;
  padding: 0.7rem 3rem;
  color: #fff;
  text-align: center;
  font-size: 1rem;
  font-weight:700;
  background-color: #d2d2d2;
  border-radius: 0.5rem;
  text-decoration: none;
}

.recruit-search__reset:hover {
  color: #fff;
}

.recruit-search__select.is-disabled{
  background: #f3f4f6;
  opacity: .7;
  cursor: not-allowed;
}

.recruit-search__bottom .check-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-left: 5px;
}

.recruit-search__bottom .check-wrap .image,
.recruit-search__bottom .check-wrap .video {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  cursor: pointer;
}

.recruit-search__bottom .check-wrap .image input,
.recruit-search__bottom .check-wrap .video input {
  transform: scale(1.5);
  accent-color: #01a99d;
}

.recruit-search__bottom .check-wrap .image img,
.recruit-search__bottom .check-wrap .video img {
  width: 20px;
}

/* Job List */
.job-card {
  display: flex;
  flex-direction: column;
}

.job-card .swell-block-button {
  flex: 1;
  display: flex;
  align-items: flex-end;
  width: 100%;
}

/* Pagination */
.recruit-pagination {
  width: 100%;
  margin-top: 24px;
  margin-left: 1.5rem;
}
.recruit-pagination .page-numbers {
  list-style:none;
  display:flex;
  justify-content: center;
  gap:1.3%;
  padding:0;
  margin:0;
  background-color: transparent;
  box-shadow: none;
  max-width: 500px;
  min-width: auto;
  margin: 0 auto;
}
.recruit-pagination .page-numbers li a,
.recruit-pagination .page-numbers li span{
  display: flex;
  align-items: center;
  justify-content: center;
  border:1px solid #ddd;
  border-radius:6px;
  text-decoration:none;
  background: #fff;
  color: #000;
  transition: all .3s;
  aspect-ratio: 1 / 1;
}

.recruit-pagination .page-numbers li {
}

.recruit-pagination .page-numbers li a:hover {
  color: #01a99d;
  background-color: transparent;
}

.recruit-pagination .page-numbers li .current{
  color: #fff;
  background: #01a99d;
}


@media (max-width: 599px){
  .recruit-pagination .page-numbers li a,
  .recruit-pagination .page-numbers li span {
    height: calc((100vw - (3rem + 80px)) / 11);
  }
}

@media (max-width: 900px){
  .recruit-search__top{ grid-template-columns: 1fr; }
  .recruit-search__bottom{ justify-content:stretch; flex-direction:column; align-items:stretch; }
}