.recruitment-card {
  max-width: 900px;
  margin: 30px auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 92, 167, 0.15);
  overflow: hidden;
}

.card-header {
  background: linear-gradient(135deg, #005ca7 0%, #0078d4 100%);
  padding: 30px;
  color: #fff;
}

.job-title {
  margin: 0 0 20px 0;
  font-size: 28px;
  font-weight: 700;
}

.job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 20px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  padding: 10px 16px;
  border-radius: 8px;
  backdrop-filter: blur(10px);
}

.meta-item .icon {
  font-size: 20px;
}

.meta-item .label {
  font-size: 14px;
  opacity: 0.9;
}

.meta-item .value {
  font-size: 16px;
  font-weight: 600;
}

.job-time {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.time-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  opacity: 0.9;
}

.time-item .icon {
  font-size: 16px;
}

.card-body {
  padding: 30px;
}

.section-title {
  margin: 0 0 20px 0;
  font-size: 20px;
  font-weight: 600;
  color: #005ca7;
  border-bottom: 2px solid #005ca7;
  padding-bottom: 10px;
}

.requirement-item {
  display: flex;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #f0f0f0;
}

.requirement-item:last-child {
  border-bottom: none;
}

.item-number {
  min-width: 32px;
  height: 32px;
  background: #005ca7;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 16px;
  flex-shrink: 0;
}

.item-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.item-label {
  font-size: 13px;
  color: #999;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.item-value {
  font-size: 16px;
  color: #333;
  font-weight: 500;
  line-height: 1.6;
}

.sub-requirements {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sub-requirements p {
  margin: 0;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
  padding-left: 10px;
}

.process-section {
  margin-top: 30px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  justify-content: flex-start;
}

.process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  min-width: 80px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: #005ca7;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(0, 92, 167, 0.3);
}

.step-text {
  font-size: 13px;
  color: #666;
  text-align: center;
  font-weight: 500;
}

.step-arrow {
  font-size: 20px;
  color: #005ca7;
  font-weight: bold;
}

.contact-section {
  margin-top: 30px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 15px;
}

.contact-item {
  display: flex;
  gap: 12px;
  padding: 15px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #005ca7;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #e8f4fd;
  transform: translateX(5px);
}

.contact-item .icon {
  font-size: 22px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-content .label {
  font-size: 12px;
  color: #999;
  font-weight: 500;
  text-transform: uppercase;
}

.contact-content .value {
  font-size: 14px;
  color: #333;
  font-weight: 500;
  line-height: 1.5;
}

.contact-content .email,
.contact-content .phone,
.contact-content .website {
  font-size: 14px;
  color: #005ca7;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.contact-content .email:hover,
.contact-content .phone:hover,
.contact-content .website:hover {
  color: #0078d4;
  text-decoration: underline;
}

.contact-note {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px;
  background: #fff3cd;
  border-radius: 8px;
  border-left: 3px solid #ffc107;
}

.contact-note .icon {
  font-size: 20px;
}

.contact-note .note-text {
  font-size: 13px;
  color: #856404;
  line-height: 1.6;
}

.card-footer {
  background: linear-gradient(135deg, #005ca7 0%, #0078d4 100%);
  padding: 20px 30px;
  text-align: center;
}

.slogan {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 1px;
}

@media (max-width: 768px) {
  .recruitment-card {
    margin: 20px auto;
    border-radius: 12px;
  }

  .card-header {
    padding: 20px;
  }

  .job-title {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .job-meta {
    gap: 12px;
  }

  .meta-item {
    padding: 8px 12px;
    font-size: 13px;
  }

  .meta-item .icon {
    font-size: 18px;
  }

  .meta-item .value {
    font-size: 14px;
  }

  .job-time {
    flex-direction: column;
    gap: 8px;
  }

  .card-body {
    padding: 20px;
  }

  .section-title {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .requirement-item {
    gap: 12px;
    padding: 12px 0;
  }

  .item-number {
    min-width: 28px;
    height: 28px;
    font-size: 14px;
  }

  .item-value {
    font-size: 15px;
  }

  .sub-requirements p {
    font-size: 14px;
  }

  .process-steps {
    gap: 8px;
  }

  .process-step {
    min-width: 60px;
  }

  .step-number {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }

  .step-text {
    font-size: 12px;
  }

  .step-arrow {
    font-size: 16px;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-item {
    padding: 12px;
  }

  .contact-item .icon {
    font-size: 20px;
  }

  .card-footer {
    padding: 15px 20px;
  }

  .slogan {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .recruitment-card {
    margin: 15px auto;
    border-radius: 10px;
  }

  .card-header {
    padding: 15px;
  }

  .job-title {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .job-meta {
    gap: 8px;
  }

  .meta-item {
    padding: 6px 10px;
  }

  .meta-item .label {
    font-size: 12px;
  }

  .meta-item .value {
    font-size: 13px;
  }

  .time-item {
    font-size: 13px;
  }

  .card-body {
    padding: 15px;
  }

  .section-title {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .requirement-item {
    gap: 10px;
    padding: 10px 0;
  }

  .item-number {
    min-width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .item-label {
    font-size: 12px;
  }

  .item-value {
    font-size: 14px;
  }

  .sub-requirements p {
    font-size: 13px;
    padding-left: 5px;
  }

  .process-steps {
    gap: 5px;
    justify-content: center;
  }

  .process-step {
    min-width: 50px;
  }

  .step-number {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .step-text {
    font-size: 11px;
  }

  .step-arrow {
    font-size: 14px;
  }

  .contact-item {
    padding: 10px;
  }

  .contact-item .icon {
    font-size: 18px;
  }

  .contact-content .value {
    font-size: 13px;
  }

  .contact-content .email,
  .contact-content .phone,
  .contact-content .website {
    font-size: 13px;
  }

  .contact-note {
    padding: 10px 12px;
  }

  .contact-note .note-text {
    font-size: 12px;
  }

  .card-footer {
    padding: 12px 15px;
  }

  .slogan {
    font-size: 14px;
  }
}