/* Recruitment Section Styles */

.sec-007-recruitment {
  padding: var(--section-spacing-large) 0;
  background: var(--wp--preset--color--secondary);
  position: relative;
  overflow: hidden;
}

/* Background Decorations */
:where(.sec-007-recruitment__bg-decoration) {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

:where(.sec-007-recruitment__bg-decoration--1) {
  top: 30%;
  right: -90px;
  width: 350px;
  height: 350px;
}

:where(.sec-007-recruitment__bg-decoration--1 img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-large);
  opacity: 0.07;
  filter: blur(2px);
  animation: float 20s ease-in-out infinite;
}

:where(.sec-007-recruitment__bg-decoration--2) {
  top: 10%;
  left: -100px;
  width: 300px;
  height: 300px;
}

:where(.sec-007-recruitment__bg-decoration--2 img) {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-large);
  opacity: 0.05;
  filter: blur(1px);
}

.sec-007-recruitment::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(
    circle,
    rgba(74, 123, 167, 0.04) 0%,
    transparent 60%
  );
  border-radius: 50%;
}

.sec-007-recruitment__wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 1;
}

.sec-007-recruitment__title {
  font-size: var(--wp--preset--font-size--heading-lg);
  font-weight: 700;
  color: #2e5b8a;
  text-align: center;
  margin-bottom: 10px;
  position: relative;
  padding-top: 40px;
}

.sec-007-recruitment__title::before {
  content: "RECRUITMENT";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.35em;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #4a7ba7;
  opacity: 0.5;
}

.sec-007-recruitment__subtitle {
  font-size: 2.4rem;
  color: #4a7ba7;
  text-align: center;
  margin-bottom: 60px;
  font-weight: 500;
  position: relative;
}

/* Content Layout */
.sec-007-recruitment__content {
  display: flex;
  gap: 60px;
  align-items: center;
  background: #ffffff;
  border-radius: 32px;
  padding: 60px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.1);
}

.sec-007-recruitment__text {
  flex: 1.2;
}

.sec-007-recruitment__lead {
  font-size: 2rem;
  font-weight: 600;
  color: #2e5b8a;
  line-height: 1.6;
  margin-bottom: 25px;
}

.sec-007-recruitment__text p {
  font-size: 1.7rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 35px;
}

/* Positions List */
.sec-007-recruitment__positions {
  background: linear-gradient(135deg, #f8f9fa, #ffffff);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 35px;
  border: 1px solid rgba(74, 123, 167, 0.1);
}

.sec-007-recruitment__positions h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #2e5b8a;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e8eaed;
}

.sec-007-recruitment__positions ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sec-007-recruitment__positions li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  font-size: 1.6rem;
  color: #333;
  border-bottom: 1px solid #f0f2f5;
}

.sec-007-recruitment__positions li:last-child {
  border-bottom: none;
}

.sec-007-recruitment__positions .material-symbols-outlined {
  color: #4a7ba7;
  font-size: 24px;
}

/* Link Button */
.sec-007-recruitment__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 45px;
  background: linear-gradient(135deg, #2e5b8a, #4a7ba7);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-size: 1.7rem;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(46, 91, 138, 0.3);
}

.sec-007-recruitment__link:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(46, 91, 138, 0.4);
  gap: 16px;
}

.sec-007-recruitment__link .material-symbols-outlined {
  font-size: 24px;
}

/* Image */
.sec-007-recruitment__image {
  flex: 1;
  position: relative;
}

.sec-007-recruitment__image img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.sec-007-recruitment__image::before {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 150px;
  height: 150px;
  background: radial-gradient(
    circle,
    rgba(245, 200, 138, 0.2) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
}

.sec-007-recruitment__image::after {
  content: "";
  position: absolute;
  bottom: -40px;
  left: -40px;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(74, 123, 167, 0.15) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: -1;
}

/* Float animation for background decorations */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
}
