/* Corporate Recruitment Scheme Section */
.cf-corporate-recruitment-scheme {
  padding: var(--spacing-2xl) 0;
  background: transparent;
}

.cf-corporate-recruitment-scheme__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xl);
}

.cf-corporate-recruitment-scheme__description {
  font-family: var(--font-family-main);
  font-weight: 500;
  font-size: var(--font-size-8);
  line-height: 1.86;
  color: var(--color-text-primary);
  letter-spacing: 0.48px;
  text-align: center;
  max-width: 100%;
}

.cf-corporate-recruitment-scheme__description p {
  margin: 0;
}

.cf-corporate-recruitment-scheme__infographic {
  display: flex;
  justify-content: center;
  width: 100%;
}

.cf-corporate-recruitment-scheme__flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  width: 100%;
  padding: var(--spacing-sm) 0;
}

.cf-corporate-recruitment-scheme__node {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-xs);
  width: 200px;
  height: 200px;
  border-radius: 148px;
  position: relative;
  flex-shrink: 0;
}

.cf-corporate-recruitment-scheme__node--company {
  background: var(--color-white);
  border: 1px solid var(--color-text-primary);
  padding: var(--spacing-2xl) 51px;
}

.cf-corporate-recruitment-scheme__node--connectforce {
  background: var(--color-dark-gradient);
  border: none;
  padding: var(--spacing-2xl) 0;
  width: 320px;
  height: 320px;
  border-radius: 180px;
}

.cf-corporate-recruitment-scheme__node--person {
  background: var(--color-white);
  border: 1px solid var(--color-brand-primary);
  padding: var(--spacing-2xl) 51px;
}

.cf-corporate-recruitment-scheme__node-title {
  font-family: var(--font-family-main);
  font-weight: 500;
  font-size: var(--font-size-5);
  line-height: var(--line-height-heading);
  color: var(--color-text-primary);
  letter-spacing: 0.72px;
  text-align: center;
  margin: 0;
}

.cf-corporate-recruitment-scheme__node-title--connectforce {
  font-family: var(--font-family-open-sans);
  font-weight: 400;
  font-size: var(--font-size-4);
  line-height: var(--line-height-heading);
  color: var(--color-white);
  letter-spacing: 0;
}

.cf-corporate-recruitment-scheme__node-title--person {
  color: var(--color-brand-primary);
}

.cf-corporate-recruitment-scheme__node-description {
  font-family: var(--font-family-main-p);
  font-weight: 400;
  font-size: var(--font-size-9);
  line-height: 1.57;
  color: var(--color-white);
  text-align: center;
}

.cf-corporate-recruitment-scheme__node-description p {
  margin: 0;
}

.cf-corporate-recruitment-scheme__node-icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cf-corporate-recruitment-scheme__node-icon img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.cf-corporate-recruitment-scheme__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cf-corporate-recruitment-scheme__arrow--left {
  width: 64px;
  height: 9px;
}

.cf-corporate-recruitment-scheme__arrow--right {
  width: 64px;
  height: 67px;
}

.cf-corporate-recruitment-scheme__arrow img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* Responsive Design */
@media screen and (max-width: 960px) {
  .cf-corporate-recruitment-scheme {
    padding: var(--spacing-xl) 0;
  }
  
  .cf-corporate-recruitment-scheme__content {
    gap: var(--spacing-xl);
  }
  
  .cf-corporate-recruitment-scheme__flow {
    flex-direction: column;
    gap: var(--spacing-sm);
  }
  
  .cf-corporate-recruitment-scheme__node {
    width: 180px;
    height: 180px;
    border-radius: 90px;
  }
  
  .cf-corporate-recruitment-scheme__node--connectforce {
    width: 280px;
    height: 280px;
    border-radius: 140px;
  }
  
  .cf-corporate-recruitment-scheme__node-icon {
    width: 70px;
    height: 70px;
  }
  
  .cf-corporate-recruitment-scheme__arrow--left {
    transform: rotate(90deg);
    height: 64px;
  }
  
  .cf-corporate-recruitment-scheme__arrow--right {
    transform: rotate(90deg);
    width: 67px;
    height: 64px;
  }
}

@media screen and (max-width: 767px) {
  .cf-corporate-recruitment-scheme {
    padding: var(--spacing-lg) 0;
  }
  
  .cf-corporate-recruitment-scheme__content {
    gap: var(--spacing-lg);
  }
  
  .cf-corporate-recruitment-scheme__description {
    font-size: var(--font-size-9);
    letter-spacing: 0.3px;
  }
  .cf-corporate-recruitment-scheme__description p {
    text-align: left;
  }
  
  .cf-corporate-recruitment-scheme__node {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    gap: var(--spacing-xxs);
    padding: var(--spacing-lg) var(--spacing-xs);
  }
  
  .cf-corporate-recruitment-scheme__node--connectforce {
    width: 200px;
    height: 200px;
    border-radius: 50%;
  }
  
  .cf-corporate-recruitment-scheme__node-title {
    font-size: var(--font-size-8);
    letter-spacing: 0.5px;
  }
  
  .cf-corporate-recruitment-scheme__node-title--connectforce {
    font-size: var(--font-size-7);
  }
  
  .cf-corporate-recruitment-scheme__node-description {
    font-size: var(--font-size-10);
  }
  
  .cf-corporate-recruitment-scheme__node-icon {
    width: 40px;
    height: 40px;
  }
}
