/* assets/css/yonetim-kurulu.css */

.page-content-wrapper {
    padding-top: 155px !important;
    min-height: 100vh;
    background: #f8fafc;
}

.content-box {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 20px;
    overflow: visible !important;
    position: relative;
    z-index: 10;
}

.page-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 900;
    color: #1e40af;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.board-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    width: 100%;
    position: relative;
    z-index: 20;
}

.board-list li {
    display: flex;
    align-items: center;
    padding: 24px 32px;
    background: #ffffff;
    border-radius: 14px;
    border-left: 6px solid #dc2626;
    box-shadow: 0 8px 25px rgba(0,0,0,0.09);
    margin-bottom: 20px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 25;
}

.board-list li:last-child { 
    margin-bottom: 0; 
}

.board-list li:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
    z-index: 30;
}

.board-list .title {
    flex: 0 0 175px;
    font-weight: 700;
    font-size: 1.1rem;
    color: #dc2626;
    background: #fef2f2;
    padding: 11px 20px;
    border-radius: 50px;
    text-align: center;
}

.board-list .member-name {
    padding-left: 32px;
    font-size: 1.42rem;
    font-weight: 700;
    color: #1e293b;
}

/* Mobil */
@media (max-width: 768px) {
    .page-content-wrapper {
        padding-top: 140px !important;
    }
    
    .board-list li {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
        padding: 20px;
    }
    
    .board-list .title {
        flex: none;
        margin-bottom: 12px;
    }
    
    .board-list .member-name { 
        padding-left: 0; 
    }
    
    .page-title {
        font-size: 2rem;
        flex-direction: column;
    }
}