/* About Us Page Section 3 - Modern Additional Board Members */

.board-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.board-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px 40px;
}

.board-member {
    flex-basis: 50%;
    max-width: 50%;
    padding: 0 15px 40px;
}

.member-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.member-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.member-image {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 80px;
    color: white;
    opacity: 0.8;
    font-family: Cairo, sans-serif;
    font-weight: 700;
}

.member-info {
    padding: 30px;
}

.member-name {
    font-family: Cairo, sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1e3c72;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
}

.member-title {
    font-size: 16px;
    font-weight: 600;
    color: #2a5298;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.member-bio {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.member-bio p {
    margin-bottom: 15px;
}

.member-bio p:last-child {
    margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .board-section {
        padding: 60px 20px;
    }
    
    .member-info {
        padding: 25px;
    }
    
    .member-name {
        font-size: 22px;
    }
    
    .member-title {
        font-size: 15px;
    }
    
    .member-bio {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .board-section {
        padding: 50px 20px;
    }
    
    .board-member {
        flex-basis: 100%;
        max-width: 100%;
        padding: 0 0 30px;
    }
    
    .board-row {
        margin-bottom: 30px;
    }
    
    .member-info {
        padding: 20px;
    }
    
    .member-name {
        font-size: 20px;
    }
    
    .member-title {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .member-bio {
        font-size: 14px;
    }
    
    .member-placeholder {
        font-size: 60px;
    }
}

@media (max-width: 480px) {
    .board-section {
        padding: 40px 15px;
    }
    
    .member-info {
        padding: 15px;
    }
    
    .member-name {
        font-size: 18px;
        letter-spacing: 0.5px;
    }
    
    .member-title {
        font-size: 13px;
    }
    
    .member-bio {
        font-size: 13px;
    }
    
    .member-placeholder {
        font-size: 50px;
    }
}
