:root {
  --body-font: "DM Sans", Helvetica, Arial, sans-serif;
  --heading-font: "Urbanist", Helvetica, Arial, sans-serif;
}

.cy-openings-section {
  --navy: #0c1a44;
  --navy-2: #102055;
  --navy-3: #0a1535;
  --teal: #1aa6b7;
  --teal-lt: #22c5d8;
  --blue: #2563eb;
  --blue-lt: #60a5fa;
  --purple: #7c3aed;
  --orange: #ea580c;
  --text-muted: rgba(255, 255, 255, 0.55);
  --border: rgba(255, 255, 255, 0.09);
  --card-bg: rgba(255, 255, 255, 0.04);
  --radius: 14px;
  --radius-sm: 8px;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: #fff;
  line-height: 1.7;
}

.cy-openings-section *{
  box-sizing: border-box;
}

/* ── CONTAINER ── */
.cy-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── SHARED ── */
.cy-subtitle {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1aa6b7;
  background: rgba(26, 166, 183, 0.12);
  border: 1px solid rgba(26, 166, 183, 0.25);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  margin-top: 100px;
}
.cy-subtitle.light {
  color: #22c5d8;
}

.cy-section-head {
  margin-bottom: 48px;
}
.cy-section-head.text-center {
  text-align: center;
}
.cy-section-head h2 {
  font-family: "Urbanist", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700 !important;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
  margin-top: 0;
}
.cy-section-head h2 span {
  color: #1aa6b7;
}
.cy-section-head p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.55);
  max-width: 560px;
  margin: 0;
}
.cy-section-head.text-center p {
  margin: 0 auto;
}

/* ── JOB OPENINGS ── */
.cy-openings-section {
  padding: 80px 0;
  background: #0a1535;
}
.cy-jobs-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cy-job-card {
  display: grid;
  grid-template-columns: 1fr 280px;
  background: #0c1a44;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.cy-job-card:hover {
  border-color: rgba(26, 166, 183, 0.3);
}

.cy-job-left {
  padding: 32px;
  border-right: 1px solid rgba(255, 255, 255, 0.09);
}
.cy-job-right {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.02);
}

.cy-job-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 24px;
}
.cy-job-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 12px;
  background: rgba(26, 166, 183, 0.15);
  border: 1px solid rgba(26, 166, 183, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #1aa6b7;
}

.cy-job-title {
  font-family: "Barlow", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.3;
}
.cy-job-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.cy-job-meta span {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.55);
}
.cy-job-meta i {
  color: #1aa6b7;
  font-size: 11px;
}

.cy-job-section {
  margin-bottom: 20px;
}
.cy-job-section h5 {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 12px;
}
.cy-job-section ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 0;
  margin: 0;
}
.cy-job-section ul li {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.8);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}
.cy-job-section ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #1aa6b7;
  font-size: 11px;
}

:root {
  --body-font: "DM Sans", Helvetica, Arial, sans-serif;
  --heading-font: "Urbanist", Helvetica, Arial, sans-serif;
}

.cy-careers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cy-tags span {
  background: rgba(26, 166, 183, 0.1);
  border: 1px solid rgba(26, 166, 183, 0.2);
  color: #22c5d8;
  font-size: 11.5px;
  font-weight: 500;
  padding: 4px 11px;
  border-radius: 100px;
}

.cy-job-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 24px;
}
.cy-detail-row {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cy-detail-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
}
.cy-detail-value {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

.cy-career-apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #1aa6b7;
  color: #fff !important;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none !important;
  text-align: center;
  transition:
   background 0.2s,
    transform 0.2s;
  cursor: pointer;
}
.cy-career-apply-btn:hover {
  background: #22c5d8;
  transform: translateY(-2px);
  color: #fff !important;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .cy-job-card {
    grid-template-columns: 1fr 240px;
  }
}


@media (max-width: 767px) {
  .cy-openings-section {
    padding: 56px 0;
  }

  .cy-job-card {
    grid-template-columns: 1fr;
  }
  .cy-job-left {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.09);
    padding: 24px 20px;
  }
  .cy-job-right {
    padding: 20px;
  }
  .cy-job-title {
    font-size: 17px;
  }
  .cy-job-header {
    gap: 14px;
  }
  .cy-job-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .cy-btn-primary,
  .cy-btn-ghost {
    width: 100%;
    justify-content: center;
  }
  .cy-why-grid {
    grid-template-columns: 1fr;
  }
  .cy-docs-grid {
    grid-template-columns: 1fr;
  }
  .cy-section-head h2 {
    font-size: 24px;
  }
}
