/* BÖLÜMÜN TAMAMI ORTALANSIN */
html {
  font-size: 14px; /* Varsayılan genelde 16px, bunu düşürmek her şeyi küçültür */
}

.dis-politika-section {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 60px;
  box-sizing: border-box;
  background: none;
}

/* BAŞLIK, AÇIKLAMA VE ÇİZGİ */
.dis-politika-header {
  width: 100%;
  max-width: 700px;
  margin: 0 auto 34px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.neon-line.red {
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #ff223a 0%, #e63946 100%);
  border-radius: 5px;
  box-shadow: 0 0 19px 2px #e63946aa, 0 0 22px 6px #e6394625;
  opacity: 0.55;
  margin: 0 auto 18px auto;
}

.dis-politika-title {
  color: #e63946;
  font-size: 2.1rem;
  font-weight: 900;
  letter-spacing: .09em;
  margin-bottom: 13px;
  margin-top: 0;
  text-align: center;
  text-shadow: 0 3px 24px #e6394635, 0 0 12px #ff223a35;
}

.dis-politika-desc {
  color: #fff0f2;
  font-size: 1.14rem;
  opacity: 0.91;
  max-width: 540px;
  margin: 0 auto 0 auto;
  font-weight: 500;
  text-align: center;
  margin-bottom: 36px;
}

/* KART LİSTESİ TAM ORTADA */
.dis-politika-list {
  display: flex;
  flex-direction: column;
  gap: 38px;
  width: 100%;
  max-width: 950px;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}

/* KART TAM ORTADA VE GENİŞ-YÜKSEK */
.dp-card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  background: linear-gradient(100deg, #17181a 80%, #291016 100%);
  border-radius: 22px;
  box-shadow: 0 4px 38px #e6394617;
  min-height: 270px;
  width: 100%;
  max-width: 900px;
  margin: 0 auto 38px auto;
  transition: box-shadow .15s, transform .14s, border .14s, filter .22s, opacity .17s;
  border: 2.1px solid transparent;
  position: relative;
  overflow: visible;
}

/* KART İÇİ YATAY ORTALI */
.dp-card-inner {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
}

.dp-card-img-large {
  flex: 0 0 44%;
  height: 100%;
  background: #22121b;
  border-radius: 22px 0 0 0;
  box-shadow: 0 0 27px #e6394659;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  min-height: 270px;
}
.dp-card-img-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 220px;
  min-width: 180px;
  border-radius: 0;
}

/* SAĞDA İÇERİK ORTALI */
.dp-card-content-large {
  flex: 1 1 0;
  padding: 46px 42px 46px 42px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.dp-card-content-large h3 {
  color: #e63946;
  font-size: 1.23rem;
  font-weight: 700;
  margin-bottom: 13px;
  letter-spacing: .05em;
  text-align: left;
}
.dp-card-content-large p {
  color: #f6f7fa;
  font-size: 1.06rem;
  opacity: 0.93;
  margin-bottom: 22px;
  line-height: 1.7;
  text-align: left;
}
.dp-btn {
  background: #e63946;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 13px 36px;
  font-size: 1.09rem;
  font-weight: 700;
  cursor: pointer;
  margin-top: 16px;
  transition: background .14s, color .13s;
  box-shadow: 0 1px 8px #e639461a;
  align-self: flex-start;
}
.dp-btn:hover { background: #ff223a; color: #fff; }

/* ALTTAKİ ÇEKMECE ORTADA VE BÜYÜK */
.dp-card-drawer {
  width: 100%;
  background: linear-gradient(100deg, #251318 85%, #2d181d 100%);
  border-radius: 0 0 22px 22px;
  border-top: 1.5px solid #e63946b8;
  box-shadow: 0 4px 34px #e6394639;
  padding: 0 38px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  /* Yavaş açılması için süreleri artırdık */
  transition:
    max-height 1.25s cubic-bezier(.5,1.6,.2,1),
    opacity 0.55s,
    padding 0.7s;
}

.dp-card.open .dp-card-drawer {
  opacity: 1;
  padding: 32px 38px 36px 38px;
  max-height: 850px; /* Yeterli büyük tut ki uzun içerikte taşma olmasın */
  /* Açılırken de yavaş olsun */
  transition:
    max-height 1.5s cubic-bezier(.5,1.6,.2,1),
    opacity 0.55s,
    padding 0.7s;
}

.drawer-inner {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.drawer-inner h4 {
  color: #e63946;
  font-size: 1.18rem;
  margin-bottom: 10px;
  text-align: center;
}
.drawer-inner p {
  color: #fff;
  font-size: 1.07rem;
  line-height: 1.72;
  opacity: 0.92;
  margin: 0;
  text-align: center;
}

.dp-card:hover,
.dp-card.open {
  box-shadow: 0 16px 54px #e6394648, 0 0 60px #e6394613;
  border-color: #e63946;
  transform: scale(1.017);
  z-index: 4;
}

.dp-card.blurred {
  filter: blur(2.5px) grayscale(.17);
  opacity: .38;
  pointer-events: none;
  z-index: 1;
}

/* RESPONSIVE */
@media (max-width: 1050px) {
  .dis-politika-header { max-width: 99vw; }
  .dis-politika-list { max-width: 98vw; }
  .dp-card { max-width: 98vw; }
  .dp-card-img-large { flex: 0 0 36%; }
  .dp-card-content-large { padding: 28px 13px 28px 13px;}
}
@media (max-width: 700px) {
  .dis-politika-header { max-width: 99vw; }
  .dis-politika-list { max-width: 98vw; }
  .dp-card-inner { flex-direction: column; align-items: center;}
  .dp-card-img-large {
    flex: none; width: 100%;
    min-width: 0; border-radius: 22px 22px 0 0;
    height: 160px;
    min-height: 120px;
    justify-content: center;
  }
  .dp-card-img-large img {
    min-width: 80px;
    min-height: 80px;
    max-width: 100vw;
    max-height: 180px;
    object-fit: cover;
  }
  .dp-card-content-large { padding: 18px 6vw 19px 6vw; align-items: center; text-align: center;}
  .dp-card-drawer, .dp-card.open .dp-card-drawer {
    border-radius: 0 0 22px 22px;
    padding: 16px 7vw 15px 7vw;
  }
  .drawer-inner { padding: 0; }
}
