/**
 * Organization (Yönetim Kadrosu) Stilleri
 * SGD Dernek Teması
 */

/* Organization Wrapper */
.sgd-organization-wrapper {
    max-width: 1200px;
    margin: 20px auto;
    padding: 0 15px;
}

/* Kademe */
.org-level {
    margin-bottom: 35px;
}

.org-level:last-child {
    margin-bottom: 0;
}

/* Kademe Başlığı */
.org-level-title {
    text-align: center;
    font-size: 27px;
    font-weight: 700;
    color: #667eea;
    margin: 0 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #667eea;
}

/* Kişiler Grid */
.org-members {
    display: grid;
    gap: 10px;
    justify-items: center;
}

/* 1 kişi - Ortada, daha büyük */
.org-members[data-count="1"] {
    grid-template-columns: 1fr;
    max-width: 280px;
    margin: 0 auto;
}

/* 2 kişi - Yan yana */
.org-members[data-count="2"] {
    grid-template-columns: repeat(2, 1fr);
    max-width: 580px;
    margin: 0 auto;
}

/* 3 kişi - Yan yana */
.org-members[data-count="3"] {
    grid-template-columns: repeat(3, 1fr);
}

/* 4 kişi - Yan yana */
.org-members[data-count="4"] {
    grid-template-columns: repeat(4, 1fr);
}

/* 4'ten fazla - 4'lü grid */
.org-members:not([data-count="1"]):not([data-count="2"]):not([data-count="3"]):not([data-count="4"]) {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

/* Kart */
.org-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 10px 8px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.org-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.15);
    border-color: #667eea;
}

/* Fotoğraf */
.org-card-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 3px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

.org-card-photo img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    display: block;
}

/* Fotoğraf Placeholder */
.org-card-photo-placeholder {
    width: 100px;
    height: 100px;
    margin: 0 auto 3px;
    border-radius: 6px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 8px rgba(102, 126, 234, 0.2);
}

/* Kart Bilgileri */
.org-card-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
    width: 100%;
    justify-content: space-between;
}

/* İsim */
.org-card-name {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

/* Ünvan */
.org-card-title {
    font-size: 16px;
    font-weight: 600;
    color: #667eea;
    margin: 0;
    line-height: 1.4;
}

/* Boş Mesaj */
.org-empty {
    text-align: center;
    padding: 30px;
    font-size: 15px;
    color: #999;
    font-style: italic;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (max-width: 968px) {
    .sgd-organization-wrapper {
        padding: 0 12px;
        margin: 18px auto;
    }

    .org-level {
        margin-bottom: 30px;
    }

    .org-level-title {
        font-size: 25px;
        margin-bottom: 18px;
    }

    .org-members {
        gap: 8px;
    }

    .org-card {
        padding: 8px 6px;
    }

    .org-card-photo {
        width: 85px;
        height: 85px;
        margin-bottom: 3px;
    }

    .org-card-photo img {
        width: 85px;
        height: 85px;
    }

    .org-card-photo-placeholder {
        width: 85px;
        height: 85px;
        margin-bottom: 3px;
        font-size: 34px;
    }

    .org-card-name {
        font-size: 18px;
    }

    .org-card-title {
        font-size: 14px;
    }
}

/* ========================================
   RESPONSIVE - MOBILE
   ======================================== */

@media (max-width: 768px) {
    .sgd-organization-wrapper {
        padding: 0 10px;
        margin: 15px auto;
    }

    .org-level {
        margin-bottom: 25px;
    }

    .org-level-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    /* 3-4 kişi mobilde 2'şer grid */
    .org-members[data-count="3"],
    .org-members[data-count="4"],
    .org-members:not([data-count="1"]):not([data-count="2"]) {
        grid-template-columns: repeat(2, 1fr);
    }

    .org-members {
        gap: 8px;
    }

    .org-card {
        padding: 10px 6px;
    }

    .org-card-photo {
        width: 80px;
        height: 80px;
        margin-bottom: 3px;
    }

    .org-card-photo img {
        width: 80px;
        height: 80px;
    }

    .org-card-photo-placeholder {
        width: 80px;
        height: 80px;
        margin-bottom: 3px;
        font-size: 32px;
    }

    .org-card-name {
        font-size: 17px;
    }

    .org-card-title {
        font-size: 14px;
    }
}

/* ========================================
   RESPONSIVE - SMALL MOBILE
   ======================================== */

@media (max-width: 480px) {
    .sgd-organization-wrapper {
        padding: 0 8px;
        margin: 12px auto;
    }

    .org-level {
        margin-bottom: 20px;
    }

    .org-level-title {
        font-size: 22px;
        margin-bottom: 12px;
        padding-bottom: 8px;
    }

    /* Tek sütun */
    .org-members {
        grid-template-columns: 1fr !important;
        max-width: 250px;
        margin: 0 auto;
        gap: 10px;
    }

    .org-card {
        padding: 12px 8px;
    }

    .org-card-photo {
        width: 90px;
        height: 90px;
        margin-bottom: 3px;
    }

    .org-card-photo img {
        width: 90px;
        height: 90px;
    }

    .org-card-photo-placeholder {
        width: 90px;
        height: 90px;
        margin-bottom: 3px;
        font-size: 36px;
    }

    .org-card-name {
        font-size: 18px;
    }

    .org-card-title {
        font-size: 15px;
    }
}
