/* ═══════════════════════════════════════════
   Grup Faaliyetleri – kart listesi + swiper
═══════════════════════════════════════════ */

: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; }

.ga-page {
  width: 100%;
  background: #FFFFFF;
}

.ga-list {
  width: 100%;
  max-width: 1410px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 var(--asas-gutter, 48px);
  padding-top: 130px;
  padding-bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

@media (max-width: 767.98px) {
  .ga-list { padding-top: 48px; padding-bottom: 48px; gap: 40px; }
  /* Mobil: kart etrafına kutu */
  .ga-card {
    border: 1px solid #E6E7E9;
  }
  /* Mobil: foto üstte, metin altta */
  .ga-card-media { order: 0; }
  .ga-card-text { order: 1; }
  .ga-card-text {
    padding: 16px;
  }
  .ga-card-media {
    max-width: none;
  }
}

.ga-card {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: 21px;
  min-height: 360px;
  background: #FFFFFF;
  cursor: pointer;
}

@media (max-width: 991.98px) {
  .ga-card {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
}

.ga-card-text {
  width: 100%;
  max-width: 686px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 24px;
}

.ga-card-text h2 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 23.25px;
  line-height: 26px;
  letter-spacing: -0.6px;
  color: #000000;
}

.ga-card-text p {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14.65px;
  line-height: 22px;
  color: #000000;
  text-align: justify;
  max-width: 438px;
}

.ga-more {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  padding: 16px 0;
  text-decoration: none;
  color: #000000;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 17px;
}

.ga-more svg { flex-shrink: 0; }

.ga-card-media {
  width: 100%;
  max-width: 703px;
  position: relative;
}

.ga-swiper {
  width: 100%;
  overflow: hidden;
}
.ga-swiper .swiper-slide {
  position: relative;
}

.ga-image {
  width: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 703 / 360;
}

.ga-dots {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 11px;
  width: 84px;
  height: 5px;
}

@media (max-width: 767.98px) {
  .ga-dots { bottom: 16px; }
}
.ga-dots .dot {
  width: 8px;
  height: 5px;
  background: #C0C0C0;
  opacity: 0.3;
  flex-shrink: 0;
  cursor: pointer;
  transition: background .3s, opacity .3s;
}
.ga-dots .dot.active {
  background: #D1000F;
  opacity: 1;
}

