
/* ====== Temel düzen ====== */
:root{
  --ink:#101318;
  --line:#eef1f5;
  --gap: clamp(24px, 6vw, 72px);   /* logolar arası boşluk */
  --max: 1200px;                    /* satır genişliği */
  --logo-max-h: 74px;               /* logo yüksekliği kontrolü */
}

*,
*::before,
*::after{ box-sizing: border-box; }

html,body{ margin:0; }
body{ font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial; color:var(--ink); }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px clamp(12px, 4vw, 24px);

}

/* ====== Marka şeridi ====== */
.brand-strip{
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.brand-row{
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap);
  padding: 24px 0;
  margin: 0;
  flex-wrap: wrap;                 /* küçük ekranda alta geçsin */
}

/* Her logo kendi kutusunda ortalansın */
.brand{
  flex: 1 1 auto;
  min-width: 160px;                /* dar ekran kırılımı */
  display: grid;
  place-items: center;
}

/* Görsellerin boyut ve oran kontrolü */
.brand img{
  max-height: var(--logo-max-h);
  width: auto;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.08)); /* örnekteki hafif gölge etkisi */
  transition: transform .25s ease, filter .25s ease, opacity .25s ease;
}

/* Hafif hover (isteğe bağlı) */
.brand img:hover{
  transform: translateY(-2px) scale(1.02);
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.12));
}

/* Çok küçük ekranlarda biraz daha sıkı görünüm */
@media (max-width: 520px){
  :root{ --logo-max-h: 56px; }
  .brand{ min-width: 140px; }
}
.plv-modal {
    position: relative;
    max-width: min(90vw, 900px);
    max-height: 90vh;
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
}