/* ═══════════════════════════════════════════
   Hakkımızda – ASAŞ (sadece bu sayfa)
   Bootstrap 5 + Swiper 11 + Inter + Open Sans
═══════════════════════════════════════════ */

@import url('breadcrumb.css');

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  color: #54555A;
  background: #fff;
  margin: 0;
  padding: 0;
}

/* ─────────────────────────────────────────
   Bootstrap container genişletme
   Max-width: 1410px
───────────────────────────────────────── */
.container-asas {
  width: 100%;
  max-width: 1410px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--asas-gutter, 48px);
  padding-right: var(--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; } }

/* ─────────────────────────────────────────
   İçerik sarmalayıcı – container + dikey boşluk
───────────────────────────────────────── */
.page-body {
  margin-top: 130px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

@media (max-width: 767.98px) {
  .page-body { margin-top: 48px; margin-bottom: 48px; gap: 28px; }
}

/* ─────────────────────────────────────────
   Swiper bloğu  (Frame 60991/60992)
   Figma: height:701px, img:672px, gap:24px
───────────────────────────────────────── */
.swiper-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.hakkimizda-swiper {
  width: 100%;
  /* 1410 × 672 oranı ≈ 2.097:1 */
  aspect-ratio: 1410 / 672;
  overflow: hidden;
  min-height: 160px;
}

.hakkimizda-swiper .swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
}

.hakkimizda-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slide alt caption */
.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px 48px;
  background: linear-gradient(to top, rgba(0,0,0,.65) 0%, transparent 100%);
  color: #fff;
}
.slide-caption h2 {
  font-weight: 700;
  font-size: 36px;
  line-height: 1.2;
  margin: 0;
  letter-spacing: .01em;
}

/* Frame 165 – pagination noktaları */
.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;
}

/* ─────────────────────────────────────────
   Başlık bloğu  (Frame 60897)
   Figma: gap:42px, h3: 700 32px #333333
          p: 400 16px/30px #54555A
───────────────────────────────────────── */
.title-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 42px;
  width: 100%;
}

.title-block h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 32px;
  line-height: 39px;
  color: #333333;
  margin: 0;
  max-width: 909px;
}

.title-block p {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  color: #54555A;
  margin: 0;
  max-width: 998px;
  text-align: justify;
}

/* ─────────────────────────────────────────
   Rich text container
   Figma: padding:0 32px 0 0, gap:48px
───────────────────────────────────────── */
.rich-text-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 48px;
  width: 100%;
  max-width: 1248px;
  padding-right: 32px;
}

@media (max-width: 767.98px) {
  .rich-text-container { padding-right: 0; gap: 32px; }
}

/* Section */
.rt-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}

/* Paragraf – 16px/28px #54555A */
.rt-paragraph {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 28px;
  color: #54555A;
  margin: 0;
  width: 100%;
}
.rt-paragraph + .rt-paragraph { margin-top: 0; }

/* Blockquote – left-border: display:none (Figma) */
.rt-blockquote {
  display: flex;
  flex-direction: row;
  gap: 20px;
  width: 100%;
}
.rt-blockquote .left-border { display: none; }

.rt-blockquote .quote-wrap {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 8px 0;
  width: 100%;
}

/* Quote – 16px/36px #54555A */
.rt-blockquote .quote-text {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 36px;
  color: #54555A;
  width: 100%;
}
.rt-blockquote .quote-text p { margin: 0; }

.rt-blockquote .quote-text ul {
  list-style: disc;
  margin: 0;
  padding-left: 24px;
}
.rt-blockquote .quote-text ul li {
  list-style: disc;
  margin: 0;
  padding: 0;
  line-height: 36px;
}

/* Section kart – padding:32px 0 40px, radius:16px */
.rt-section-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  border-radius: 16px;
  padding: 32px 0 40px;
}

/* ─────────────────────────────────────────
   Responsive breakpoints
───────────────────────────────────────── */
@media (max-width: 991.98px) {
  .slide-caption { padding: 24px 28px; }
  .slide-caption h2 { font-size: 26px; }
}

@media (max-width: 767.98px) {
  .slide-caption { padding: 16px 20px; }
  .slide-caption h2 { font-size: 18px; }
  .title-block h3 { font-size: 24px; }
  .title-block { gap: 20px; }
}
