/* ==========================================================================
   Careers — custom page (hiç Elementor bağımlılığı yok)
   Palette: #082638 navy · #384F57 primary · #3E7882 teal · #f3f3f0 cream
   ========================================================================== */

.careers-page {
  background: #fff;
  color: #1a1a1a;
}

/* --- HERO --- */
.careers-hero {
  background: #082638;
  color: #fff;
  padding: 160px 0 96px;
  min-height: 520px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.careers-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(62, 120, 130, 0.25) 0%, transparent 50%);
  pointer-events: none;
}
.careers-hero__inner {
  position: relative;
  max-width: 1350px;
  margin: 0 auto;
  box-sizing: border-box;
  width: 100%;
  z-index: 1;
}
.careers-hero__eyebrow {
  font-family: "Source Sans 3", Sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7fa4ad;
  margin: 0 0 20px;
}
.careers-hero__title {
  font-family: "freight-display-pro", Sans-serif;
  font-size: 56px;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin: 0 0 28px;
  max-width: 820px;
}
.careers-hero__inner {
  text-align: left;
}
.careers-hero__lead {
  font-family: "Source Sans 3", Sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #cbd5d9;
  max-width: 680px;
  margin: 0;
}

/* --- INTRO --- */
.careers-intro {
  padding: 96px 0 48px;
  background: #fff;
}
.careers-intro__inner {
  max-width: 1350px;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: left;
}
.careers-intro__title,
.careers-intro__lead {
  max-width: 820px;
}
.careers-intro__title {
  font-family: "freight-display-pro", Sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1.2;
  color: #082638;
  margin: 0 0 20px;
}
.careers-intro__lead {
  font-family: "Source Sans 3", Sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
}

/* --- CAREER PATH SECTION --- */
.career-path {
  padding: 72px 0;
  background: #fff;
}
.career-path:nth-of-type(even) {
  background: #f3f3f0;
}
.career-path__inner {
  max-width: 1350px;
  margin: 0 auto;
  box-sizing: border-box;
}
.career-path__header {
  text-align: left;
  margin-bottom: 56px;
  max-width: 820px;
}
.career-path__eyebrow {
  font-family: "Source Sans 3", Sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #384F57;
  margin: 0 0 12px;
}
.career-path__title {
  font-family: "freight-display-pro", Sans-serif;
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: #082638;
  margin: 0 0 16px;
}
.career-path__intro {
  font-family: "Source Sans 3", Sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #4a4a4a;
  margin: 0;
}

/* --- STEPS (CARDS + CONNECTORS) --- */
.career-steps {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: grid;
  gap: 24px;
  align-items: stretch;
}
.career-steps[data-steps="3"] { grid-template-columns: repeat(3, 1fr); }
.career-steps[data-steps="4"] { grid-template-columns: repeat(4, 1fr); }
.career-steps[data-steps="5"] { grid-template-columns: repeat(5, 1fr); }

.career-step {
  position: relative;
  background: #fff;
  border: 1px solid #e3e7e9;
  border-top: 4px solid #3E7882;
  border-radius: 4px;
  padding: 40px 24px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 16px;
  box-shadow: 0 6px 20px rgba(8, 38, 56, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.career-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(8, 38, 56, 0.12);
}

/* Connector line between cards */
.career-step::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  width: 24px;
  height: 2px;
  background: linear-gradient(90deg, #3E7882 0%, rgba(62, 120, 130, 0.2) 100%);
  transform: translateY(-50%);
  z-index: 1;
}
.career-step:last-child::after {
  display: none;
}

/* Numbered badge */
.career-step__number {
  position: absolute;
  top: -16px;
  left: 24px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #082638;
  color: #fff;
  font-family: "Source Sans 3", Sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(8, 38, 56, 0.2);
}

/* Icon circle */
.career-step__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3E7882 0%, #384F57 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  box-sizing: border-box;
  flex: 0 0 auto;
}
.career-step__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}

.career-step__label {
  font-family: "Source Sans 3", Sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: #082638;
  margin: 0;
  letter-spacing: 0.01em;
}

/* --- CTA: link tarzı, sadece alttan çizgi --- */
.career-path__cta {
  text-align: left;
}
a.career-path__btn,
a.career-path__btn:link,
a.career-path__btn:visited {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 4px 0;
  background: transparent;
  color: #384F57;
  font-family: "Source Sans 3", Sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 0;
  border-bottom: 1.5px solid #384F57;
  border-radius: 0;
  text-decoration: none;
  transition: color 0.15s ease, border-color 0.15s ease;
}
a.career-path__btn:hover,
a.career-path__btn:focus {
  background: transparent;
  color: #082638;
  border-bottom-color: #082638;
}
.career-path__btn-arrow {
  font-size: 16px;
  line-height: 1;
  transition: transform 0.15s ease;
}
a.career-path__btn:hover .career-path__btn-arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   CAREERS — TÜM ALT SAYFALAR: başlıkları sola hizala (override default centering)
   ========================================================================== */
.career-path__header,
.career-path__header *,
.careers-intro__inner,
.careers-intro__inner *,
.careers-hero__inner,
.careers-hero__inner *,
.page-header,
.page-header * {
  text-align: left !important;
}

/* ==========================================================================
   CAREERS SUB-PAGES (experienced-lawyers, legal/summer internship)
   ========================================================================== */

/* Hero: daha kısa, breadcrumb'lı */
.careers-hero--sub {
  min-height: 420px;
  padding: 140px 0 72px;
}
.careers-hero__breadcrumb {
  color: #7fa4ad;
  text-decoration: none;
  transition: color 0.15s ease;
}
.careers-hero__breadcrumb:hover {
  color: #fff;
}

/* Intro section — big lead paragraph */
.careers-sub__intro {
  padding: 80px 0 48px;
  background: #fff;
}
.careers-sub__intro-inner {
  max-width: 1350px;
  margin: 0 auto;
  box-sizing: border-box;
}
.careers-sub__lead {
  max-width: 820px;
}
.careers-sub__lead {
  font-family: "freight-display-pro", Sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  color: #1a2a31;
  margin: 0;
}

/* About section */
.careers-sub__about {
  padding: 48px 0;
  background: #fff;
}
.careers-sub__about-inner {
  max-width: 1350px;
  margin: 0 auto;
  box-sizing: border-box;
}
.careers-sub__about .careers-sub__section-body,
.careers-sub__about .careers-sub__bullets {
  max-width: 820px;
}
.careers-sub__section-title {
  font-family: "freight-display-pro", Sans-serif;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.2;
  color: #082638;
  margin: 0 0 20px;
}
.careers-sub__section-body {
  font-family: "Source Sans 3", Sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #3e4a50;
  margin: 0 0 20px;
}
.careers-sub__bullets {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.careers-sub__bullets li {
  font-family: "Source Sans 3", Sans-serif;
  font-size: 17px;
  line-height: 1.6;
  color: #3e4a50;
  padding-left: 28px;
  position: relative;
}
.careers-sub__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65em;
  width: 14px;
  height: 2px;
  background: #3E7882;
}

/* Requirements section — cream bg, checklist */
.careers-sub__requirements {
  padding: 72px 0;
  background: #f3f3f0;
}
.careers-sub__requirements-inner {
  max-width: 1350px;
  margin: 0 auto;
  box-sizing: border-box;
}
.careers-sub__requirements-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px 40px;
}
.careers-sub__requirements-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-family: "Source Sans 3", Sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: #082638;
  padding: 4px 0;
}
.careers-sub__check {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #3E7882;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

/* Apply CTA — sadece "Join our Team Now" butonu (light blue/teal) */
.careers-sub__apply {
  padding: 56px 0 64px;
  background: transparent;
  color: inherit;
  text-align: left;
}
.careers-sub__apply-inner {
  max-width: 1350px;
  margin: 0 auto;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.careers-sub__apply-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 18px 40px;
  background: #3E7882;
  color: #fff !important;
  font-family: "Source Sans 3", Sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid #3E7882;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.careers-sub__apply-btn:hover {
  background: #082638;
  color: #fff !important;
  border-color: #082638;
}

/* Secondary CTA: LinkedIn / external — outline stil */
.careers-sub__apply-btn--secondary {
  background: transparent;
  color: #384F57 !important;
  border-color: #384F57;
}
.careers-sub__apply-btn--secondary:hover {
  background: #384F57;
  color: #fff !important;
  border-color: #384F57;
}

/* Başvuru pasifken: "Join our Team Now" tıklanamaz (link değil span) */
.careers-sub__apply-btn--disabled {
  background: #c9d1d3;
  color: #6b777b !important;
  border-color: #c9d1d3;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 0.85;
}

/* Sarı bilgi banner'ı bölümü (staj sayfalarının en altı) */
.careers-sub__notice {
  padding: 0 0 72px;
}
.careers-sub__notice-inner {
  max-width: 1350px;
  margin: 0 auto;
  box-sizing: border-box;
}

/* Başvuru tarih aralığı banner'ı — sarı uyarı bandı */
.internship-notice {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #FDECA8;
  border: 1px solid #F2C94C;
  border-left: 5px solid #E0A800;
  border-radius: 4px;
  padding: 18px 24px;
  color: #082638;
  font-family: "Source Sans 3", Sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}
.internship-notice__icon {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #E0A800;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
}

/* --- RESPONSIVE --- */
/* Tablet: viewport 1350px'den dar, mobil değilse outer'lara breathing room */
@media (max-width: 1399px) and (min-width: 768px) {
  .careers-hero,
  .careers-hero--sub,
  .careers-intro,
  .career-path,
  .careers-sub__intro,
  .careers-sub__about,
  .careers-sub__requirements,
  .careers-sub__apply { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 1100px) {
  .careers-hero__title { font-size: 44px; }
  .career-steps[data-steps="5"] { grid-template-columns: repeat(3, 1fr); }
  .career-steps[data-steps="4"] { grid-template-columns: repeat(2, 1fr); }
  .career-step::after { display: none; }
}

@media (max-width: 767px) {
  .careers-hero {
    padding: 120px 20px 64px;
    min-height: 360px;
  }
  .careers-hero--sub { min-height: 300px; padding: 110px 20px 48px; }
  .careers-hero__title { font-size: 34px; }
  .careers-hero__lead { font-size: 16px; }

  .careers-intro { padding: 64px 20px 24px; }
  .careers-intro__title { font-size: 28px; }

  .careers-sub__intro { padding: 56px 20px 32px; }
  .careers-sub__lead { font-size: 20px; }
  .careers-sub__about { padding: 32px 20px; }
  .careers-sub__section-title { font-size: 24px; }
  .careers-sub__requirements { padding: 56px 20px; }
  .careers-sub__requirements-list { grid-template-columns: 1fr; gap: 14px; }
  .careers-sub__apply { padding: 56px 20px 72px; }
  .careers-sub__apply-title { font-size: 28px; }
  .careers-sub__apply-btn { width: 100%; justify-content: center; }
  .careers-sub__notice { padding: 0 20px 56px; }
  .internship-notice { font-size: 16px; padding: 16px 18px; }

  .career-path { padding: 48px 20px; }
  .career-path__title { font-size: 28px; }

  .career-steps,
  .career-steps[data-steps="3"],
  .career-steps[data-steps="4"],
  .career-steps[data-steps="5"] {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
