/* YENİ YÖNETİM KARTI TASARIMI */
.yk-card-new {
    background: var(--black-soft);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    border: 2px solid transparent;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
    display: flex;
    flex-direction: column;
}

.yk-card-new:hover {
    border-color: var(--orange-primary);
    transform: translateY(-5px);
}

.yk-card-new .yk-foto-new {
    padding: 0;
    margin: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.yk-card-new .yk-foto-new::after {
    content: none;
}

.yk-card-new .yk-foto-new img {
    width: 100%;
    height: 100%;
    display: block;
    border: none;
    border-radius: 0;
    box-shadow: none;
    object-fit: cover;
    object-position: top center;
}

.yk-card-new .yk-info-new {
    padding: 16px;
    text-align: center;
    background: none;
    border-top: none;
    margin-top: 0;
    color: white;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.yk-card-new .yk-unvan-new {
    font-size: 10px;
    color: var(--orange-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 6px;
    opacity: 0.9;
}

.yk-card-new .yk-isim-new {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
    line-height: 1.3;
}

.yk-card-new .yk-isyeri-new {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-weight: 600;
}

/* Çerçeve Efekti */
.yk-card-new::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    z-index: -1;
    border-radius: var(--radius);
    background: linear-gradient(135deg, var(--orange-dark), var(--black), var(--orange-primary));
    background-size: 200% 200%;
    transition: opacity 0.4s, background-position 0.5s;
    opacity: 0;
}

.yk-card-new:hover::before {
    opacity: 1;
    animation: gradient-animation 3s ease infinite;
}

@keyframes gradient-animation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Grid sistemi için */
.yk-grid-new-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-bottom: 24px; align-items: start; }
.yk-grid-new-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

/* Yönetim kartları — responsive */
@media (max-width: 1024px) {
    .yk-grid-new-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .yk-grid-new-2 { grid-template-columns: 1fr; }
    .yk-grid-new-3 { grid-template-columns: 1fr; }
}
