/* Board Profile Styles */
.board-profile {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 4rem;
    align-items: flex-start;
    margin-bottom: 4rem;
    background: #fff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.profile-image {
    position: sticky;
    top: 100px;
}

.profile-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.profile-content h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.profile-content h3 {
    font-size: 1.3rem;
    color: #00a86b;
    margin-bottom: 2rem;
    font-weight: bold;
}

.profile-bio p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #555;
    text-align: justify;
}

/* Placeholder Image */
.placeholder-image {
    width: 100%;
    height: 450px;
    background: linear-gradient(135deg, #00a86b, #008a5a);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .board-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }
    
    .profile-image {
        position: static;
    }
    
    .profile-image img,
    .placeholder-image {
        height: 300px;
    }
    
    .placeholder-image {
        font-size: 3rem;
    }
    
    .profile-content h2 {
        font-size: 1.8rem;
    }
    
    .profile-bio p {
        font-size: 1rem;
    }
}