.hero {
  position: relative;
  height: 400px;
  overflow: hidden;
}
.hero .container {
  height: 100%;
}
.hero .hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.hero .hero-background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2;
}
.hero .hero-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  color: #fff;
}
.hero .hero-content h1 {
  font-size: 39px;
  font-weight: 600;
  margin-bottom: 40px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  color: #ffb600;
}
@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }
}
.hero .hero-content .search-form {
  background: rgba(255, 255, 255, 0.95);
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  width: 80%;
  display: flex;
  align-items: flex-end;
  gap: 15px;
}
.hero .hero-content .search-form:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
@media (max-width: 768px) {
  .hero .hero-content .search-form {
    flex-direction: column;
    align-items: stretch;
  }
}
.hero .hero-content .search-form .search-field {
  align-items: center;
  gap: 12px;
  display: flex;
  flex: 1;
}
.hero .hero-content .search-form .search-field label {
  display: block;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}
.hero .hero-content .search-form .search-field input {
  width: 70%;
  padding: 4px 15px;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.hero .hero-content .search-form .search-field input:focus {
  outline: none;
  border-color: #1976d2;
  box-shadow: 0 0 0 2px rgba(25, 118, 210, 0.1);
}
.hero .hero-content .search-form .search-field input::-moz-placeholder {
  color: #999;
}
.hero .hero-content .search-form .search-field input::placeholder {
  color: #999;
}
.hero .hero-content .search-form .search-btn {
  background: #1976d2;
  color: #fff;
  border: none;
  padding: 4px 32px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.hero .hero-content .search-form .search-btn:hover {
  background: #0d47a1;
  transform: translateY(-1px);
}
@media (max-width: 768px) {
  .hero .hero-content .search-form .search-btn {
    width: 100%;
    padding: 12px 0;
  }
}

.outstanding-positions {
  padding: 80px 0;
  background: #fff;
}
.outstanding-positions h2 {
  font-size: 33.33px;
  color: #303030;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
  position: relative;
}
.outstanding-positions .positions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}
.outstanding-positions .positions-grid .position-card {
  text-decoration: none;
  background: #fff;
  overflow: hidden;
  transition: transform 0.3s ease;
  border: 1px solid #e1e0e0;
}
.outstanding-positions .positions-grid .position-card:hover {
  transform: translateY(-5px);
}
.outstanding-positions .positions-grid .position-card .position-image {
  height: 200px;
  overflow: hidden;
}
.outstanding-positions .positions-grid .position-card .position-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.outstanding-positions .positions-grid .position-card .position-image:hover img {
  transform: scale(1.1);
}
.outstanding-positions .positions-grid .position-card .position-info {
  padding: 25px;
}
.outstanding-positions .positions-grid .position-card .position-info h3 {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 600;
  line-height: 1.4;
}
.outstanding-positions .positions-grid .position-card .position-info .position-details .detail-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  font-size: 14px;
  color: #666;
}
.outstanding-positions .positions-grid .position-card .position-info .position-details .detail-item:last-child {
  margin-bottom: 0;
}
.outstanding-positions .positions-grid .position-card .position-info .position-details .detail-item .icon {
  font-size: 16px;
}
.outstanding-positions .positions-grid .position-card .position-info .position-details .detail-item .icon img {
  width: 16px;
}
@media (max-width: 768px) {
  .outstanding-positions {
    padding: 60px 0;
  }
  .outstanding-positions .positions-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .outstanding-positions .positions-grid .position-card .position-image {
    height: 180px;
  }
  .outstanding-positions .positions-grid .position-card .position-info {
    padding: 20px;
  }
  .outstanding-positions .positions-grid .position-card .position-info h3 {
    font-size: 1rem;
  }
}

.positions-by-department {
  padding: 80px 0;
}
.positions-by-department .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.positions-by-department h2 {
  font-size: 33.33px;
  color: #303030;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
  position: relative;
}
.positions-by-department .departments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}
.positions-by-department .departments-grid .department-card {
  background: #fff;
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
  transition: all 0.3s ease;
  border-top: 4px solid transparent;
}
.positions-by-department .departments-grid .department-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
  border-top-color: #1976d2;
}
.positions-by-department .departments-grid .department-card:nth-child(1) .department-icon svg {
  color: #2196f3;
}
.positions-by-department .departments-grid .department-card:nth-child(2) .department-icon svg {
  color: #4caf50;
}
.positions-by-department .departments-grid .department-card:nth-child(3) .department-icon svg {
  color: #ff9800;
}
.positions-by-department .departments-grid .department-card:nth-child(4) .department-icon svg {
  color: #9c27b0;
}
.positions-by-department .departments-grid .department-card:nth-child(5) .department-icon svg {
  color: #f44336;
}
.positions-by-department .departments-grid .department-card:nth-child(6) .department-icon svg {
  color: #607d8b;
}
.positions-by-department .departments-grid .department-card .department-icon {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border-radius: 50%;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}
.positions-by-department .departments-grid .department-card .department-icon svg {
  width: 40px;
  height: 40px;
  transition: transform 0.3s ease;
}
.positions-by-department .departments-grid .department-card:hover .department-icon {
  background: rgba(25, 118, 210, 0.1);
  transform: scale(1.1);
}
.positions-by-department .departments-grid .department-card:hover .department-icon svg {
  transform: scale(1.1);
}
.positions-by-department .departments-grid .department-card h3 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 10px;
  font-weight: 600;
}
.positions-by-department .departments-grid .department-card p {
  font-size: 14px;
  color: #666;
  margin-bottom: 20px;
}
.positions-by-department .departments-grid .department-card .view-btn {
  background: #fff;
  color: #1976d2;
  border: 1px #1976d2 solid;
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  font-size: 13px;
  padding: 10px 20px;
}
.positions-by-department .departments-grid .department-card .view-btn:hover {
  background: #0d47a1;
  transform: translateY(-2px);
  color: #fff;
}
@media (max-width: 768px) {
  .positions-by-department {
    padding: 60px 0;
  }
  .positions-by-department .departments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .positions-by-department .departments-grid .department-card {
    padding: 30px 20px;
  }
  .positions-by-department .departments-grid .department-card .department-icon {
    width: 70px;
    height: 70px;
  }
  .positions-by-department .departments-grid .department-card .department-icon svg {
    width: 35px;
    height: 35px;
  }
  .positions-by-department .departments-grid .department-card h3 {
    font-size: 1.1rem;
  }
}
@media (max-width: 480px) {
  .positions-by-department .departments-grid {
    grid-template-columns: 1fr;
  }
}

.other-positions {
  padding: 80px 0;
  background: #fff;
}
.other-positions .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}
.other-positions h2 {
  font-size: 33.33px;
  color: #303030;
  text-align: center;
  margin-bottom: 50px;
  font-weight: 600;
  position: relative;
}
.other-positions .positions-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.other-positions .positions-list .position-item {
  display: flex;
  background: #fff;
  overflow: hidden;
  transition: all 0.3s ease;
}
.other-positions .positions-list .position-item .position-image {
  width: 45%;
  overflow: hidden;
}
.other-positions .positions-list .position-item .position-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.other-positions .positions-list .position-item .position-image:hover img {
  transform: scale(1.05);
}
.other-positions .positions-list .position-item .position-content {
  width: 50%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.other-positions .positions-list .position-item .position-content h3 {
  font-size: 20px;
  color: #333;
  margin-bottom: 12px;
  font-weight: 600;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.other-positions .positions-list .position-item .position-content .position-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.other-positions .positions-list .position-item .position-content .position-meta span {
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.other-positions .positions-list .position-item .position-content .position-meta span.location {
  color: #636161;
}
.other-positions .positions-list .position-item .position-content .position-meta span.salary {
  color: #636161;
}
.other-positions .positions-list .position-item .position-content .position-meta span.deadline {
  color: #636161;
}
.other-positions .positions-list .position-item .position-content .position-meta span img {
  width: 16px;
  height: auto;
}
@media (max-width: 768px) {
  .other-positions {
    padding: 60px 0;
  }
  .other-positions .positions-list {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .other-positions .positions-list .position-item .position-image {
    flex: 0 0 120px;
    height: 100px;
  }
  .other-positions .positions-list .position-item .position-content {
    padding: 15px;
  }
  .other-positions .positions-list .position-item .position-content h3 {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }
  .other-positions .positions-list .position-item .position-content .position-meta {
    gap: 4px;
  }
  .other-positions .positions-list .position-item .position-content .position-meta span {
    font-size: 11px;
  }
}
@media (max-width: 480px) {
  .other-positions .positions-list .position-item {
    flex-direction: column;
  }
  .other-positions .positions-list .position-item .position-image {
    flex: none;
    height: 140px;
  }
  .other-positions .positions-list .position-item .position-content .position-meta {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
}

@media screen and (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 28px;
  }
  .hero .hero-content .search-form .search-field {
    display: grid;
    grid-template-columns: 1fr 4fr;
  }
  .hero .hero-content .search-form .search-field input[type=text] {
    width: 100%;
  }
  .outstanding-positions .container h2 {
    font-size: 20px;
  }
  .positions-by-department .container h2 {
    font-size: 20px;
  }
  .other-positions .container h2 {
    font-size: 20px;
  }
  .other-positions .container .positions-list .position-item .position-image {
    width: 100%;
    height: 165px;
  }
  .other-positions .container .positions-list .position-item .position-content {
    width: 100%;
  }
}
