/* ============================================
   CONTACT PAGE
   Uses: common.css (blog-hero), careers.css (careers-contact, careers-apply-card)
   ============================================ */

/* Contact hero uses .blog-hero from common.css; optional inner width */
.careers-contact.contact-form-section {
  background: transparent;
  padding: 3.5rem 0;
}
.careers-contact.contact-form-section h2.careers-contact-title {
  color: #000000;
  margin-bottom: var(--spacing-xl);
}
.careers-contact.contact-form-section .careers-contact-label {
  color: #000000;
}
.careers-contact.contact-form-section .careers-apply-card {
  border: 1px solid #e5e7eb;
}
.contact-hero .blog-hero-desc {
  margin-bottom: 0;
}
.contact-hero .blog-hero-inner {
  max-width: 660px;
}

/* Location icon on contact page (SVG inside span; same size as careers img icon) */
.contact-icon-svg {
  display: inline-flex;
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.contact-icon-svg svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* Our Partnership */
.contact-partnership {
  background: #f9fafb;
  border-width: 1px 0px 1px 0px;
  border-style: solid;
  border-color: #f3f4f6;
  padding: 4.4rem 0;
}

.contact-partnership-inner {
  text-align: center;
}

.contact-partnership-title {
  font-weight: var(--font-weight-bold);
  color: #111827;
  margin-bottom: 14px;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.contact-partnership-desc {
  color: var(--text-light);
  max-width: 606px;
  margin: 0 auto 42px;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.33;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

.contact-partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 42px;
}

.contact-partner-box {
  background: var(--bg-white);
  border: 1px solid #e5e7eb;
  border-radius: 7px;
  padding: 16.5px;
  color: #9ca3af;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.7px;
  text-align: center;
  text-transform: uppercase;
}

/* Responsive */
@media (max-width: 991px) {
  .contact-partner-grid {
    gap: 24px;
  }
  .contact-partnership-title {
    font-size: 28px;
  }
  .careers-contact.contact-form-section .careers-contact-details {
    flex-direction: row;
    width: 100%;
  }
  .careers-contact-item {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .careers-contact.contact-form-section .careers-contact-details {
    flex-direction: column;
    width: 100%;
  }
  .contact-partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-partner-box {
    min-height: 80px;
  }
  .contact-partnership-title {
    font-size: 26px;
  }
  .contact-partnership-desc {
    font-size: 14px;
  }
  .contact-partnership {
    padding: 3.4rem 0;
  }
}
@media (max-width: 600px) {
  .contact-partner-grid {
    grid-template-columns: 1fr;
  }
  .contact-partnership-title {
    font-size: 22px;
  }
}
