.recruitment-filter-container {
  max-width: 100%;
  margin: 40px auto;
}

.recruitment-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}

.recruitment-main-title {
  font-size: 28px;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0;
}

.recruitment-search {
  position: relative;
  min-width: 384px;
  height: 64px;
  display: flex;
  align-items: center;
  border-radius: 20px;
  border: 1px solid #DDE2FD;
  overflow: hidden;
  background-color: #F5F7FE;
}

#wrapper .search-input {
  width: 100%;
  border: 0;
  outline: none;
  box-shadow: none;
  margin: 0;
  background-color: transparent;
  padding-left: 60px;
}

.search-btn {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.recruitment-posts-grid {
  display: grid;
  gap: 25px;
  margin-bottom: 30px;
}

.recruitment-posts-grid.columns-1 {
  grid-template-columns: 1fr;
}
.recruitment-posts-grid.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
.recruitment-posts-grid.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}
.recruitment-posts-grid.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.recruitment-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.recruitment-title {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  line-height: 1.2;
  color: #1B75BC;
}

.recruitment-title a {
  color: inherit;
  text-decoration: none;
}
.recruitment-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 24px;
}

.meta-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
}

.meta-item.salary,
.meta-item.salary .meta-icon {
  display: flex;
  align-items: center;
}

.meta-item.salary .meta-value {
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: #1B75BC;
}

.meta-icon {
  font-size: 16px;
  flex-shrink: 0;
}

.meta-label {
  font-weight: 600;
  color: #666;
  flex-shrink: 0;
}

.meta-value {
  color: #333;
}

.recruitment-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  padding: 16px 17px;
  background-color: #F5F7FE;
  margin-top: auto;
}

.recruitment-midle {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-left: 28px;
  padding-right: 28px;
}

#wrapper .recruitment-midle-item p {
  color: #808080;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0;
}

.recruitment-midle-item h5 {
  color: #1B75BC;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.2;
}

.job-type {
  display: inline-block;
  padding: 4px 12px;
  background: #e3f2fd;
  color: #1976d2;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  align-self: flex-start;
}

.deadline {
  font-size: 13px;
  color: #666;
}

.deadline-label {
  font-weight: 500;
}

.deadline-date {
  color: #f57c00;
  font-weight: 600;
  margin-left: 4px;
}

#wrapper .apply-btn {
  display: block;
  width: 100%;
  background-color: #F1F9FF;
  color: #1B75BC;
  border: 1px solid #1B75BC;
  border-radius: 12px;
  padding: 0 20px;
  text-align: center;
  line-height: 60px;
}

#main .recruitment-title a {
  font-size: 26px;
  font-weight: 700;
  padding: 34px 24px 0;
  margin: 0;
  line-height: 1.2;
  color: #1B75BC;
  text-transform: none;
  display: block;
}

.recruitment-loading {
  text-align: center;
  padding: 40px 20px;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #2196f3;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 15px;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.no-recruitments {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #999;
  font-size: 16px;
}

@media (max-width: 1024px) {
  .recruitment-posts-grid.columns-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  #main .recruitment-title a {
    font-size: 24px
  }
  #wrapper .recruitment-posts-grid {
    grid-template-columns: repeat(1, 1fr);
  }
  .recruitment-header {
    flex-direction: column;
    align-items: flex-start;
  }
  #wrapper .recruitment-main-title {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 0;
  }
  #wrapper .recruitment-filter-container {
    margin: 20px auto;
  }
  .recruitment-search {
    max-width: 100%;
    min-width: 100%;
  }
  .recruitment-title {
    font-size: 16px;
  }
  .recruitment-footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .apply-btn {
    width: 100%;
  }
  .recruitment-midle-item h5 {
    font-size: 13px;
  }
  #main .recruitment-title a {
    padding: 34px 20px 0;
  }
  .recruitment-meta {
    padding: 16px 20px;
  }
  .recruitment-midle {
    padding-left: 20px;
    padding-right: 20px;
  }
}