/* PERSONEL BÖLÜMÜ — ana sayfa arka planı main_style.css .personel-section */

.personel-carousel .item {
    padding: 0 2px;
}

.personel-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 12px rgba(29, 43, 57, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 160px;
    margin: 0 auto;
}

.personel-card:hover {
    box-shadow: 0 6px 20px rgba(29, 43, 57, 0.12);
    transform: translateY(-4px);
}

.personel-img-wrapper {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    background-color: #1d2b39;
}

.personel-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.personel-card:hover .personel-img-wrapper img {
    transform: scale(1.05);
}

.personel-info {
    padding: 12px 10px;
    text-align: center;
    flex: 1;
}

.personel-name {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1d2b39 !important;
    margin-bottom: 4px !important;
    padding-top: 0 !important;
}

.personel-gorev {
    font-size: 11px;
    color: #42b06f;
    margin: 0;
    font-weight: 500;
}

/* Ayrı Personelimiz sayfası — grid, daha geniş kart */
.personel-page-wrap {
    background-color: #f6f7f6;
    padding-top: 3rem;
    padding-bottom: 1rem;
}
.personel-card--page {
    max-width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
}
.personel-card--page:hover {
    box-shadow: 0 14px 36px rgba(66, 176, 111, 0.15);
}
.personel-page-wrap .personel-info {
    padding: 16px 14px;
}
.personel-page-wrap .personel-name {
    font-size: 15px !important;
    line-height: 1.3;
}
.personel-page-wrap .personel-gorev {
    font-size: 13px;
}
