/* ═══════════════════════════════════════════
   Kariyer Yönetimi – Detail page
   1216×613 image + rich text + apply button
═══════════════════════════════════════════ */

:root { --asas-gutter: 48px; }
@media (max-width: 1199.98px) { :root { --asas-gutter: 32px; } }
@media (max-width: 991.98px) { :root { --asas-gutter: 24px; } }
@media (max-width: 767.98px) { :root { --asas-gutter: 16px; } }

/* Breadcrumb (İnsan Kaynakları referans) */
.bc-wrapper {
  width: 100%;
  padding-left: 123px;
  padding-right: 123px;
  padding-top: 30px;
  padding-bottom: 0;
}
@media (max-width: 991.98px) {
  .bc-wrapper { padding-left: 48px; padding-right: 48px; }
}
@media (max-width: 767.98px) {
  .bc-wrapper { padding-left: 24px; padding-right: 24px; }
}
.slide-breadcrumb {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  height: 25px;
  width: auto;
}
.bc-item {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 14px;
  letter-spacing: 0px;
  color: #000000;
  text-decoration: none;
  white-space: nowrap;
}
.bc-item:hover { text-decoration: underline; }
.bc-current {
  color: #000000;
  font-weight: 500;
  text-transform: uppercase;
}
.bc-arrow {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}
.bc-more {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  width: 24px;
  height: 24px;
  background: #6D7175;
  border-radius: 35px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
}
.bc-more:hover { background: #555; }

.career-page {
  width: 100%;
  background: #FFFFFF;
}

.career-content {
  width: 100%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--asas-gutter, 48px);
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

@media (max-width: 767.98px) {
  .career-content { padding-top: 48px; padding-bottom: 48px; gap: 40px; }
}

.career-hero {
  width: 100%;
  aspect-ratio: 1216 / 613;
  overflow: hidden;
  background: #f0f0f0;
}

.career-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Swiper Styles */
.swiper-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}
.kariyer-swiper {
  width: 100%;
  aspect-ratio: 1216 / 613;
  overflow: hidden;
  min-height: 160px;
}
.kariyer-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}
.kariyer-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.custom-pagination {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 11px;
  width: 84px;
  height: 5px;
}
.custom-pagination .dot {
  width: 8px;
  height: 5px;
  border-radius: 0;
  background: #C0C0C0;
  opacity: 0.3;
  cursor: pointer;
  flex-shrink: 0;
  transition: background .3s, opacity .3s;
}
.custom-pagination .dot.active {
  background: #D1000F;
  opacity: 1;
}

.career-text {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.career-text p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #6C6D70;
  margin: 0;
}

.career-text h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  color: #1B1D1E;
  margin: 24px 0 0 0;
}

.career-text ul {
  margin: 0;
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.career-text li {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #6C6D70;
}

.career-inline-link {
  color: #D1000F;
  text-decoration: underline;
}
.career-inline-link:hover {
  color: #b3000c;
}

.career-apply {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 64px;
  background: #D1000F;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  text-decoration: none;
  margin-top: 16px;
}

.career-apply:hover {
  background: #b3000c;
}

