/* ==========================================================================
   career.css — Career Page Styles
   A Perfect Choice Home Care WordPress Theme
   ========================================================================== */

/* --------------------------------------------------------------------------
   Career Intro
   -------------------------------------------------------------------------- */
.apch-career-intro {
  padding: 80px 0;
  background: var(--white);
  position: relative;
}
.apch-career-intro::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(107, 143, 113, 0.04) 0%, transparent 70%);
  pointer-events: none;
}
.apch-career-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
}
.apch-career-intro-content h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.apch-career-intro-content > p {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.85;
}
.apch-career-intro-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--cream);
  box-shadow:
    0 4px 6px rgba(27, 43, 75, 0.04),
    0 12px 28px rgba(27, 43, 75, 0.08),
    0 20px 48px rgba(27, 43, 75, 0.06);
}
.apch-career-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-career-intro-image:hover img {
  transform: scale(1.03);
}

@media (max-width: 900px) {
  .apch-career-intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .apch-career-intro {
    padding: 60px 0;
  }
}

/* --------------------------------------------------------------------------
   Benefits Grid
   -------------------------------------------------------------------------- */
.apch-career-benefits {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
  position: relative;
}
.apch-career-benefits::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 80%, rgba(107, 143, 113, 0.04) 0%, transparent 50%),
              radial-gradient(circle at 80% 20%, rgba(196, 74, 63, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
.apch-career-benefits-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
}
.apch-career-benefits-header .apch-section-label {
  justify-content: center;
}
.apch-career-benefits-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  max-width: 640px;
  margin: 0 auto 16px;
  letter-spacing: -0.02em;
}
.apch-career-benefits-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}
.apch-career-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
}
.apch-career-benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(27, 43, 75, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.apch-career-benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), rgba(196, 74, 63, 0.6));
  transform: scaleX(0.3);
  opacity: 0.4;
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
}
.apch-career-benefit-card:hover {
  transform: translateY(-10px);
  border-color: rgba(196, 74, 63, 0.12);
  box-shadow:
    0 4px 6px rgba(27, 43, 75, 0.03),
    0 10px 24px rgba(27, 43, 75, 0.06),
    0 24px 56px rgba(27, 43, 75, 0.06);
}
.apch-career-benefit-card:hover::before {
  transform: scaleX(1);
  opacity: 1;
}
.apch-career-benefit-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 26px;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.4s ease;
}
.apch-career-benefit-card:hover .apch-career-benefit-icon {
  transform: scale(1.15) rotate(-5deg);
  box-shadow: 0 6px 20px rgba(27, 43, 75, 0.12);
}
.apch-career-benefit-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.apch-career-benefit-card:hover h3 {
  color: var(--navy);
}
.apch-career-benefit-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
}

@media (max-width: 900px) {
  .apch-career-benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .apch-career-benefits {
    padding: 80px 0;
  }
}
@media (max-width: 600px) {
  .apch-career-benefits-grid {
    grid-template-columns: 1fr;
  }
  .apch-career-benefits {
    padding: 60px 0;
  }
}

/* --------------------------------------------------------------------------
   Open Positions
   -------------------------------------------------------------------------- */
.apch-career-positions {
  padding: 100px 0;
  background: var(--white);
}
.apch-career-positions-header {
  text-align: center;
  margin-bottom: 56px;
}
.apch-career-positions-header .apch-section-label {
  justify-content: center;
}
.apch-career-positions-header h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.apch-career-positions-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}
.apch-career-positions-list {
  max-width: 800px;
  margin: 0 auto;
}
.apch-career-position {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(27, 43, 75, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.apch-career-position::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--coral);
  opacity: 0.3;
  transition: opacity 0.3s ease;
}
.apch-career-position:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 74, 63, 0.2);
  background: var(--white);
  box-shadow:
    0 2px 6px rgba(27, 43, 75, 0.03),
    0 8px 20px rgba(27, 43, 75, 0.06);
}
.apch-career-position:hover::before {
  opacity: 1;
}
.apch-career-position-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.apch-career-position h3 {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.apch-career-position-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.apch-career-position-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--text-light);
  transition: all 0.3s ease;
}
.apch-career-position-tag.location {
  color: var(--sage);
  border-color: var(--sage-light);
  background: var(--sage-light);
}
.apch-career-position-tag.type {
  color: var(--coral);
  border-color: var(--coral-light);
  background: var(--coral-light);
}
.apch-career-position-body {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.apch-career-position-body p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 16px;
}
.apch-career-position-apply {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  transition: gap 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-career-position-apply:hover {
  gap: 10px;
}

@media (max-width: 600px) {
  .apch-career-positions {
    padding: 60px 0;
  }
  .apch-career-position {
    padding: 20px;
  }
  .apch-career-position-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* --------------------------------------------------------------------------
   Requirements Section
   -------------------------------------------------------------------------- */
.apch-career-requirements {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.apch-career-requirements::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 74, 63, 0.1), transparent 70%);
  pointer-events: none;
}
.apch-career-requirements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.apch-career-requirements-content h2 {
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.apch-career-requirements-content > p {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 32px;
  line-height: 1.85;
}
.apch-career-requirements-list {
  list-style: none;
}
.apch-career-requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-career-requirements-list li:hover {
  transform: translateX(6px);
}
.apch-career-requirements-list li + li {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.apch-career-requirements-check {
  width: 26px;
  height: 26px;
  min-width: 26px;
  border-radius: 50%;
  background: rgba(107, 143, 113, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage);
  font-size: 12px;
  margin-top: 2px;
  transition: all 0.3s ease;
}
.apch-career-requirements-list li:hover .apch-career-requirements-check {
  background: rgba(107, 143, 113, 0.35);
  transform: scale(1.1);
}
.apch-career-requirements-aside {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(4px);
}
.apch-career-requirements-aside::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--sage));
}
.apch-career-requirements-aside h3 {
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
}
.apch-career-requirements-aside p {
  font-size: 15px;
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}
.apch-career-requirements-aside .apch-btn {
  margin-top: 12px;
}

@media (max-width: 900px) {
  .apch-career-requirements-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .apch-career-requirements {
    padding: 80px 0;
  }
}
@media (max-width: 600px) {
  .apch-career-requirements {
    padding: 60px 0;
  }
  .apch-career-requirements-aside {
    padding: 28px;
  }
}

/* --------------------------------------------------------------------------
   Application Form Section
   -------------------------------------------------------------------------- */
.apch-career-apply {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%);
}
.apch-career-apply-header {
  text-align: center;
  margin-bottom: 48px;
}
.apch-career-apply-header .apch-section-label {
  justify-content: center;
}
.apch-career-apply-header h2 {
  font-size: clamp(28px, 3.5vw, 38px);
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.apch-career-apply-header p {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
}
.apch-career-apply-form {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(27, 43, 75, 0.04);
  transition: box-shadow 0.4s ease;
}
.apch-career-apply-form:focus-within {
  box-shadow:
    0 4px 12px rgba(27, 43, 75, 0.04),
    0 12px 32px rgba(27, 43, 75, 0.06);
}
.apch-career-apply-field {
  margin-bottom: 20px;
  position: relative;
}
.apch-career-apply-field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}
.apch-career-apply-field label .apch-required {
  color: var(--coral);
  margin-left: 2px;
}
.apch-career-apply-field input,
.apch-career-apply-field textarea,
.apch-career-apply-field select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-career-apply-field input:hover,
.apch-career-apply-field textarea:hover,
.apch-career-apply-field select:hover {
  border-color: rgba(196, 74, 63, 0.3);
}
.apch-career-apply-field input:focus,
.apch-career-apply-field textarea:focus,
.apch-career-apply-field select:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px rgba(196, 74, 63, 0.08);
}
.apch-career-apply-field:focus-within label {
  color: var(--coral);
}
.apch-career-apply-field textarea {
  min-height: 120px;
  resize: vertical;
}
.apch-career-apply-field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%236E6E6E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.apch-career-apply-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* File upload */
.apch-career-apply-upload {
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  padding: 36px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-career-apply-upload:hover {
  border-color: var(--coral);
  background: var(--coral-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(196, 74, 63, 0.08);
}
.apch-career-apply-upload-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: var(--coral);
  font-size: 22px;
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-career-apply-upload:hover .apch-career-apply-upload-icon {
  transform: scale(1.1);
}
.apch-career-apply-upload p {
  font-size: 14px;
  color: var(--text-light);
}
.apch-career-apply-upload p strong {
  color: var(--coral);
}
.apch-career-apply-upload span {
  font-size: 12px;
  color: var(--text-lighter);
  display: block;
  margin-top: 6px;
}
.apch-career-apply-submit {
  width: 100%;
  margin-top: 8px;
}

@media (max-width: 600px) {
  .apch-career-apply {
    padding: 60px 0;
  }
  .apch-career-apply-form {
    padding: 32px 24px;
  }
  .apch-career-apply-field-row {
    grid-template-columns: 1fr;
  }
}

/* --------------------------------------------------------------------------
   Requirements Section Label (coral override)
   -------------------------------------------------------------------------- */
.apch-career-requirements-content .apch-section-label {
  color: var(--coral);
}

/* --------------------------------------------------------------------------
   Licensing List (inside requirements aside)
   -------------------------------------------------------------------------- */
.apch-career-license-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
.apch-career-license-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  transition: transform 0.3s ease;
}
.apch-career-license-item:hover {
  transform: translateX(4px);
}
.apch-career-license-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.apch-career-license-item:hover .apch-career-license-dot {
  transform: scale(1.3);
}

/* --------------------------------------------------------------------------
   Verify Link (Florida Clearing House)
   -------------------------------------------------------------------------- */
.apch-career-verify-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--coral);
  font-weight: 600;
  margin-top: 16px;
  transition: gap 0.3s ease;
}
.apch-career-verify-link:hover {
  gap: 10px;
}

/* --------------------------------------------------------------------------
   Application Grid (download card + contact form side-by-side)
   -------------------------------------------------------------------------- */
.apch-career-apply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 960px;
  margin: 0 auto;
  align-items: start;
}
.apch-career-download-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: 0 2px 12px rgba(27, 43, 75, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.apch-career-download-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--sage));
}
.apch-career-download-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  box-shadow:
    0 4px 6px rgba(27, 43, 75, 0.03),
    0 10px 24px rgba(27, 43, 75, 0.06),
    0 20px 48px rgba(27, 43, 75, 0.06);
}
.apch-career-download-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(196,74,63,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: var(--coral);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background 0.4s ease;
}
.apch-career-download-card:hover .apch-career-download-icon {
  transform: scale(1.1);
  background: rgba(196,74,63,0.12);
}
.apch-career-download-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.apch-career-download-text {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 28px;
}
.apch-career-download-btn {
  display: inline-flex;
  gap: 8px;
}
.apch-career-download-email {
  font-size: 13px;
  color: var(--text-lighter);
  margin-top: 16px;
}
.apch-career-download-email a {
  color: var(--coral);
  font-weight: 600;
}

/* --------------------------------------------------------------------------
   Apply Form Card (overrides for side-by-side layout)
   -------------------------------------------------------------------------- */
.apch-career-apply-grid .apch-career-apply-form {
  max-width: none;
  margin: 0;
}
.apch-career-apply-form-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
.apch-career-apply-form-subtitle {
  font-size: 14px;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 24px;
}

/* --------------------------------------------------------------------------
   Office Locations Section
   -------------------------------------------------------------------------- */
.apch-career-offices {
  padding: 80px 0;
  background: var(--white);
}
.apch-career-offices-header {
  text-align: center;
  margin-bottom: 48px;
}
.apch-career-offices-header .apch-section-label {
  justify-content: center;
}
.apch-career-offices-header h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.apch-career-offices-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.apch-career-office-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(27, 43, 75, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.apch-career-office-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--coral), var(--sage));
  opacity: 0.3;
  transition: opacity 0.4s ease;
}
.apch-career-office-card:hover {
  transform: translateY(-6px);
  border-color: transparent;
  background: var(--white);
  box-shadow:
    0 4px 6px rgba(27, 43, 75, 0.03),
    0 10px 24px rgba(27, 43, 75, 0.06),
    0 20px 40px rgba(27, 43, 75, 0.04);
}
.apch-career-office-card:hover::before {
  opacity: 1;
}
.apch-career-office-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.apch-career-office-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(196,74,63,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.apch-career-office-card:hover .apch-career-office-icon {
  transform: scale(1.1);
}
.apch-career-office-card-header h3 {
  font-size: 18px;
  font-weight: 700;
}
.apch-career-office-address {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 4px;
}
.apch-career-office-contact {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.apch-career-office-contact a {
  font-size: 14px;
  font-weight: 600;
  color: var(--coral);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s ease;
}
.apch-career-office-contact a:hover {
  gap: 10px;
}
.apch-career-office-hours {
  font-size: 13px;
  color: var(--text-light);
}

/* --------------------------------------------------------------------------
   Responsive — Career Apply Grid & Offices Grid
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {
  .apch-career-apply-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .apch-career-offices-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .apch-career-offices {
    padding: 60px 0;
  }
  .apch-career-download-card {
    padding: 28px;
  }
  .apch-career-office-card {
    padding: 24px;
  }
}

/* --------------------------------------------------------------------------
   Career Testimonials
   -------------------------------------------------------------------------- */
.apch-career-testimonials {
  padding: 80px 0;
  background: var(--white);
}
.apch-career-testimonials-header {
  text-align: center;
  margin-bottom: 48px;
}
.apch-career-testimonials-header .apch-section-label {
  justify-content: center;
}
.apch-career-testimonials-header h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.apch-career-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.apch-career-testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(27, 43, 75, 0.05);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}
.apch-career-testimonial-card::before {
  content: '\201C';
  font-family: 'Lora', serif;
  font-size: 64px;
  color: var(--coral);
  opacity: 0.1;
  position: absolute;
  top: 8px;
  left: 18px;
  line-height: 1;
  transition: opacity 0.3s ease;
}
.apch-career-testimonial-card:hover {
  transform: translateY(-8px);
  background: var(--white);
  border-color: transparent;
  box-shadow:
    0 4px 6px rgba(27, 43, 75, 0.03),
    0 10px 24px rgba(27, 43, 75, 0.06),
    0 20px 40px rgba(27, 43, 75, 0.05);
}
.apch-career-testimonial-card:hover::before {
  opacity: 0.18;
}
.apch-career-testimonial-text {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 16px;
  font-style: italic;
}
.apch-career-testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.apch-career-testimonial-role {
  font-size: 13px;
  color: var(--text-light);
}

@media (max-width: 900px) {
  .apch-career-testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .apch-career-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .apch-career-testimonials {
    padding: 60px 0;
  }
}
