/* ========================================
   FIND STAFF BLOCK
   Three-column layout with image + features + CTA
   Based on Figma specs
   ======================================== */

.find-staff-block {
  background: #FFFFFF;
  padding-bottom:var(--space-96)
}

/* Section Heading (Centered) */
.find-staff-heading {
  /* From Figma:
     width: 670px
     height: 43px
  */
  font-size: 36px;
  font-weight: 500;
  line-height: 1.2;
/*   color: #222222; */
  text-align: center;
  max-width: 670px;
  margin: 0 auto 32px;
}

/* Section Intro (Centered) */
.find-staff-intro {
  /* From Figma:
     width: 1167px
     height: 52px
  */
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #555555;
/*   text-align: center; */
  max-width: 1167px;
  margin: 0 auto 48px;
}

/* Three Column Content */
.find-staff-content {
  /* From Figma:
     Image: 445px width
     Two columns of text
  */
  display: grid;
  grid-template-columns: 445px 1fr 1fr;
  gap: 51px;
  align-items: start;
  max-width: 1245px;
  margin: 0 auto;
}

/* ----------------------------------------
   Column 1: Image
   ---------------------------------------- */
.find-staff-image {
  /* From Figma:
     width: 445px
     height: 492px
  */
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.find-staff-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.find-staff-image:hover img {
  transform: scale(1.08);
}

/* ----------------------------------------
   Columns 2 & 3: Feature Lists
   ---------------------------------------- */
.find-staff-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 330px;
}

.column-heading {
  /* From Figma:
     width: 263px
     height: 72px (can wrap)
  */
  font-size: 28px;
  font-weight: 700;
  line-height: 1.4;
  color: #222222;
  margin: 0;
}

.column-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.column-item {
  /* display: flex;
  flex-direction: column;
  gap: 8px; */
}

.item-title {
  display:inline;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  color: #222222;
  margin: 0;
}

.item-description {
  /* From Figma:
     width: 320px
     height: 104px (can wrap)
  */
  display: inline;
  width: 100%;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/* ----------------------------------------
   Bottom CTA Section
   ---------------------------------------- */
.find-staff-cta {
/*   text-align: center; */
  border-radius: 16px;
  max-width: 900px;
  margin: 90px 0 0 450px;
	@media (max-width:767px){
		margin: 48px 0 0 450px;
	}
}

.cta-heading {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: #222222;
  
}

.cta-text {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #555555;
  padding-block: var(--space-24) var(--space-32) ;
}

/* CTA Button */
.btn-cta-pink {
  /* From Figma:
     background: #FF3B85
     width: 193px
     height: 40px
     border-radius: 30px
  */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-cyan-hover);
  color: white;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 32px;
  height: 40px;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
/*   box-shadow: 0 4px 12px rgba(255, 59, 133, 0.3); */
  margin-top:var(--space-20);
}

/* .btn-cta-pink:hover {
  background: #E22870;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 59, 133, 0.4);
} */

/* .btn-cta-pink:active {
  transform: translateY(0);
} */

/* ----------------------------------------
   Animations
   ---------------------------------------- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.find-staff-heading {
  animation: fadeInUp 0.6s ease 0.1s both;
}

.find-staff-intro {
  animation: fadeInUp 0.6s ease 0.2s both;
}

.find-staff-image {
  animation: fadeInLeft 0.6s ease 0.3s both;
}

.find-staff-column {
  animation: fadeInUp 0.6s ease 0.4s both;
}

.find-staff-column:nth-child(3) {
  animation-delay: 0.5s;
}

.find-staff-cta {
  animation: fadeInUp 0.6s ease 0.6s both;
}

/* ----------------------------------------
   Responsive Breakpoints
   ---------------------------------------- */

/* Desktop (1200px - 1439px) */
@media (max-width: 1439px) {
  .find-staff-content {
    grid-template-columns: 400px 1fr 1fr;
    gap: 50px;
  }
}

/* Tablet Large (1024px - 1199px) */
@media (max-width: 1199px) {
  .find-staff-block {
/*     padding: 60px 0; */
  }
  
  .find-staff-heading {
    font-size: 32px;
  }
  
  .find-staff-intro {
    font-size: 15px;
    margin-bottom: 50px;
  }
  
  .find-staff-content {
    grid-template-columns: 350px 1fr 1fr;
    gap: 40px;
  }
  
  .column-heading {
    font-size: 22px;
  }
  
  .cta-heading {
    font-size: 28px;
  }
}

/* Tablet (768px - 1023px) */
@media (max-width: 1023px) {
  .find-staff-block {
/*     padding: 50px 0; */
  }
  .find-staff-column{
    width: 100%;
  }
  .find-staff-heading {
    font-size: 28px;
    max-width: 100%;
  }
  
  .find-staff-intro {
    max-width: 100%;
    margin-bottom: 40px;
  }
  
  .find-staff-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .find-staff-image {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .column-heading {
    font-size: 20px;
  }
  .cta-heading {
    font-size: 26px;
  }
}

/* Mobile Large (481px - 767px) */
@media (max-width: 767px) {
  .find-staff-block {
/*     padding: 40px 0; */
	  padding-bottom: var(--space-48) !important;
  }
  .find-staff-column{
    width: 100%;
  }
  .find-staff-heading {
    font-size: 26px;
    margin-bottom: 20px;
  }
  
  .find-staff-intro {
    font-size: 14px;
    margin-bottom: 32px;
  }
  
  .find-staff-content {
    gap: 32px;
  }
  
  .column-heading {
    font-size: 18px;
  }
  
  .item-title {
    font-size: 15px;
  }
  
  .item-description {
    font-size: 14px;
  }
  
  .cta-heading {
    font-size: 24px;
  }
  
  .cta-text {
    font-size: 15px;
  }
  
  .btn-cta-pink {
    width: 100%;
    max-width: 300px;
  }
}

/* Mobile Small (≤480px) */
@media (max-width: 480px) {
  .find-staff-block {
/*     padding: 32px 0; */
	  padding-bottom:var(--space-64);
  }
  
  .find-staff-heading {
    font-size: 24px;
  }
  
  .find-staff-intro {
    font-size: 13px;
  }
  
  .column-items {
    gap: 10px;
  }
  
  .find-staff-cta {
    border-radius: 12px;
    margin-left: 0;
  }
  
  .cta-heading {
    font-size: 22px;
  }
  
  .btn-cta-pink {
    width: 100%;
  }
}

/* ----------------------------------------
   Accessibility
   ---------------------------------------- */
.btn-cta-pink:focus {
  outline: 3px solid #FF3B85;
  outline-offset: 3px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .find-staff-heading,
  .find-staff-intro,
  .find-staff-image,
  .find-staff-column,
  .find-staff-cta {
    animation: none;
  }
  
  .btn-cta-pink,
  .btn-cta-pink:hover {
    transition: none;
    transform: none;
  }
}

/* ----------------------------------------
   Print Styles
   ---------------------------------------- */
@media print {
  .find-staff-block {
    padding: 20px 0;
  }
  
  .find-staff-content {
    grid-template-columns: 1fr;
  }
  
  .btn-cta-pink {
    display: none;
  }
}

/* ----------------------------------------
   Gutenberg Editor Styles
   ---------------------------------------- */
.block-editor-block-list__block[data-type="acf/find-staff"] {
  margin: 20px 0;
}
