/* RLISA Board Section */
.rlisa-board {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    font-family: "Segoe UI", Arial, sans-serif;
}

/* Main Title */
.board-title {
    text-align: center;
    margin-bottom: 35px;
}

.board-title h2 {
    color: #0b4da2;
    font-size: 34px;
    font-weight: 700;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.board-title h2::after {
    content: "";
    width: 80px;
    height: 4px;
    background: #0b4da2;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 5px;
}

/* Professional Card */
.board-card {
    background: #ffffff;
    border-left: 6px solid #0b4da2;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.board-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(11,77,162,0.18);
}

.board-card h3 {
    background: linear-gradient(135deg, #0b4da2, #1c74d9);
    color: #fff;
    margin: -25px -25px 20px;
    padding: 15px 25px;
    border-radius: 12px 12px 0 0;
    font-size: 22px;
    font-weight: 600;
}

/* Officer Rows */
.officer-row {
    display: flex;
    border-bottom: 1px solid #e5edf7;
    padding: 12px 0;
    align-items: flex-start;
}

.officer-row:last-child {
    border-bottom: none;
}

.designation {
    width: 220px;
    font-weight: 700;
    color: #0b4da2;
}

.name {
    flex: 1;
    color: #333;
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .officer-row {
        flex-direction: column;
    }

    .designation {
        width: 100%;
        margin-bottom: 5px;
    }

    .board-title h2 {
        font-size: 28px;
    }
}