/* ================================================================
   EKİBİMİZ SAYFASI — Modern Tasarım
   ================================================================ */

/* ── LAYOUT ──────────────────────────────────────────────── */
body.ekibimiz-body #wrapper {
    overflow-y: auto !important;
    overflow-x: hidden !important;
}
body.ekibimiz-body .content-holder {
    position: relative !important;
    top: auto !important; left: auto !important;
    right: auto !important; bottom: auto !important;
    overflow: visible !important;
    height: auto !important; width: 100% !important;
}

/* ── STICKY PANEL ────────────────────────────────────────── */
body.ekibimiz-body .sticky-panel li {
    overflow: hidden !important; height: 42px !important;
    display: flex !important; align-items: center !important;
    justify-content: center !important;
}
body.ekibimiz-body .sticky-panel li img {
    width: 20px !important; height: 20px !important;
    display: block !important; margin: 0 !important;
    object-fit: contain !important;
}

/* ── FOOTER BUTONLARI GİZLE (MASAÜSTÜ) ──────────────────── */
body.ekibimiz-body .footerbar-left,
body.ekibimiz-body .footerbar-right {
    display: none !important;
}

@media screen and (max-width: 768px) {
    body.ekibimiz-body .footerbar-left,
    body.ekibimiz-body .footerbar-right {
        display: block !important;
    }
}

/* ── ANA KAPSAYICI ───────────────────────────────────────── */
.ekibimiz-wrap {
    max-width: 1060px;
    margin: 0 auto;
    padding: 36px 44px 80px;
    box-sizing: border-box;
}

.ekibimiz-wrap p,
.ekibimiz-wrap li {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* ── BÖLÜM BAŞLIKLARI ────────────────────────────────────── */
.ek-bolum-baslik {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #f26522 !important;
    margin: 0 0 24px !important;
    padding-bottom: 10px !important;
    border-bottom: 2px solid rgba(242,101,34,0.22) !important;
    text-align: left !important;
    text-transform: none !important;
}

/* ================================================================
   HERO / BANNER BÖLÜMÜ — Logo ve Başlık
   ================================================================ */
.ek-hero {
    text-align: center;
    margin-bottom: 24px;
    padding: 8px 0 14px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    position: relative;
}

.ek-hero::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #f26522, #c4873a);
    border-radius: 2px;
}

.ek-hero-logo {
    max-width: 220px;
    width: 100%;
    max-height: 120px;
    height: auto;
    display: block;
    margin: 0 auto 8px;
    object-fit: contain;
}

.ek-hero-baslik {
    font-size: 32px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
    text-transform: uppercase !important;
    letter-spacing: 3px !important;
}

.ek-hero-alt {
    font-size: 15px !important;
    color: rgba(255,255,255,0.50) !important;
    margin: 0 !important;
    letter-spacing: 1px !important;
}

/* ================================================================
   GİRİŞ METNİ
   ================================================================ */
.ek-giris-metin {
    max-width: 920px;
    margin: 0 auto 28px;
    padding: 0;
}

.ek-giris-metin p {
    font-size: 16px !important;
    color: rgba(255,255,255,0.78) !important;
    line-height: 1.85 !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

/* ================================================================
   EKİP GRİD LAYOUT
   ================================================================ */
.ek-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

/* ── EKİP KARTI ──────────────────────────────────────────── */
.ek-kart {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 620px;
}

.ek-kart:hover {
    transform: translateY(-7px);
    border-color: rgba(242,101,34,0.40);
    box-shadow: 0 16px 48px rgba(242,101,34,0.14);
}

/* Üst turuncu çizgi */
.ek-kart::before {
    content: '';
    position: absolute;
    top: 0; 
    left: 0; 
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #f26522, #c4873a);
    border-radius: 0 0 4px 4px;
}

/* Kurucu kartı özel vurgu */
.ek-kart.ek-kurucu {
    border-color: rgba(242,101,34,0.25);
    background: rgba(242,101,34,0.05);
}

/* ── FOTOĞRAF ALANI ──────────────────────────────────────── */
.ek-foto-wrap {
    width: 100%;
    height: 320px;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
    background: rgba(255,255,255,0.03);
}

/* Temel kural — inline <style> ile daha yüksek öncelikle override edilir */
.ek-foto-wrap img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: top center !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    float: none !important;
    border-radius: 0 !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    box-sizing: border-box !important;
    transition: transform 0.5s ease !important;
}

.ek-kart:hover .ek-foto-wrap img {
    transform: scale(1.05) !important;
}

/* Fotoğraf yok placeholder */
.ek-foto-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: linear-gradient(145deg, rgba(242,101,34,0.06), rgba(255,255,255,0.02));
}

.ek-foto-placeholder svg {
    width: 72px;
    height: 72px;
    stroke: rgba(242,101,34,0.4);
}

.ek-foto-placeholder-metin {
    font-size: 12px !important;
    color: rgba(255,255,255,0.28) !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    margin: 0 !important;
}

/* Kurucu rozeti */
.ek-rozet {
    position: absolute;
    top: 14px;
    right: 14px;
    background: linear-gradient(135deg, #f26522, #c4873a);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(242,101,34,0.4);
    z-index: 2;
}

/* Yakında rozeti */
.ek-rozet-yakinda {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(30,30,38,0.85);
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.55);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 20px;
    z-index: 2;
}

/* ── BİLGİ ALANI ─────────────────────────────────────────── */
.ek-bilgi {
    padding: 24px 22px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
}

.ek-liste-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-bottom: 18px;
}

.ek-ad {
    font-size: 17px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 0 4px !important;
    text-transform: none !important;
    line-height: 1.3 !important;
    text-align: center !important;
}

.ek-unvan {
    font-size: 12px !important;
    color: #f26522 !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 1.2px !important;
    margin: 0 0 18px !important;
    text-align: center !important;
}

.ek-ayirac {
    width: 36px;
    height: 2px;
    background: linear-gradient(90deg, #f26522, transparent);
    margin: 0 auto 18px;
    border-radius: 2px;
}

.ek-liste {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    gap: 9px;
    text-align: left;
}

.ek-liste li {
    font-size: 13px !important;
    color: rgba(255,255,255,0.70) !important;
    line-height: 1.55 !important;
    padding-left: 21px !important;
    position: relative !important;
    text-align: left !important;
}

.ek-liste li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: -1px;
    color: #f26522;
    font-size: 16px;
    line-height: 1.4;
}

/* ── MEMLEKETİ ALANI ─────────────────────────────────────── */
.ek-memleket {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-top: auto;
    padding-top: 14px;
    padding-left: 0;
    border-top: 1px solid rgba(255,255,255,0.07);
}

.ek-memleket svg {
    width: 14px;
    height: 14px;
    stroke: rgba(242,101,34,0.65);
    flex-shrink: 0;
    margin-left: 0;
}

.ek-memleket span {
    font-size: 12px !important;
    color: rgba(255,255,255,0.40) !important;
    font-style: italic !important;
}
/* ================================================================
   TABLET (768–1024px)
   ================================================================ */
@media screen and (max-width: 1024px) {
    .ekibimiz-wrap {
        padding: 20px 20px 80px;
    }
    .ek-grid {
        gap: 20px;
    }
    .ek-hero-baslik {
        font-size: 26px !important;
        letter-spacing: 2px !important;
    }
    .ek-kart {
        min-height: auto;
    }
}

/* ================================================================
   MOBİL (≤768px)
   ================================================================ */
@media screen and (max-width: 768px) {
    .ekibimiz-wrap {
        padding: 16px 16px 80px;
    }

    .ek-hero {
        padding: 12px 0 12px;
        margin-bottom: 20px;
    }
    .ek-hero-logo {
        max-width: 160px;
        max-height: 90px;
        margin-bottom: 10px;
    }
    .ek-hero-baslik {
        font-size: 24px !important;
        letter-spacing: 2px !important;
    }

    .ek-giris-metin {
        margin-bottom: 20px;
    }
    .ek-giris-metin p {
        font-size: 15px !important;
        line-height: 1.7 !important;
        text-align: center !important;
    }

    .ek-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 32px;
    }

    .ek-kart {
        min-height: auto;
    }

    .ek-foto-wrap {
        height: auto;
        aspect-ratio: 3 / 4;
    }

    .ek-bilgi {
        padding: 20px 18px 22px;
    }

    .ek-ad {
        font-size: 16px !important;
    }

    .ek-unvan {
        font-size: 11px !important;
        margin-bottom: 14px !important;
    }

    .ek-ayirac {
        width: 32px;
        margin-bottom: 14px;
    }

    .ek-liste li {
        font-size: 13px !important;
        padding-left: 16px !important;
    }

    .ek-memleket {
        padding-top: 12px;
    }

    .ek-memleket span {
        font-size: 11px !important;
    }

    .ek-bolum-baslik {
        font-size: 20px !important;
    }
}

@media screen and (max-width: 420px) {
    .ekibimiz-wrap {
        padding: 12px 12px 60px;
    }

    .ek-hero {
        padding: 8px 0 10px;
        margin-bottom: 16px;
    }

    .ek-hero-logo {
        max-width: 140px;
        max-height: 80px;
        margin-bottom: 8px;
    }

    .ek-hero-baslik {
        font-size: 20px !important;
        letter-spacing: 1.5px !important;
    }

    .ek-giris-metin {
        margin-bottom: 16px;
    }

    .ek-giris-metin p {
        font-size: 14px !important;
        line-height: 1.65 !important;
        text-align: center !important;
    }

    .ek-grid {
        gap: 16px;
        margin-bottom: 24px;
    }

    .ek-foto-wrap {
        height: auto;
        aspect-ratio: 3 / 4;
    }

    .ek-bilgi {
        padding: 16px 14px 18px;
    }

    .ek-ad {
        font-size: 15px !important;
    }

    .ek-unvan {
        font-size: 10px !important;
        letter-spacing: 1px !important;
    }

    .ek-ayirac {
        width: 28px;
        margin-bottom: 12px;
    }

    .ek-liste {
        gap: 8px;
    }

    .ek-liste li {
        font-size: 12px !important;
        padding-left: 14px !important;
    }

    .ek-rozet,
    .ek-rozet-yakinda {
        font-size: 9px;
        padding: 4px 8px;
    }

    .ek-memleket svg {
        width: 12px;
        height: 12px;
    }

    .ek-memleket span {
        font-size: 10px !important;
    }
}
