/* --- YÖNETİM KURULU – KESİN ÇÖZÜM --- */
.page-content-wrapper,
.content-box {
    position: relative;     /* önemli */
    z-index: 10;            /* menüden yüksek olsun */
}

.content-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-top: 20px;       /* menüyle çakışmasın */
    overflow: visible !important;
}

.board-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    width: 100%;
    position: relative;
    z-index: 20;                 /* en önde olsun */
}

.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 çalışsın diye */
    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;          /* hepsi aynı hizada başlar */
    font-size: 1.42rem;
    font-weight: 700;
    color: #1e293b;
}

/* Mobil */
@media (max-width: 768px) {
    .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; }
}