/* Member Page Styles */

.member-group {
    margin-bottom: 80px;

    /* Top line for title */
    .group-title {
        font-size: 27px;
        font-weight: 700;
        color: #005770;
        margin-bottom: 30px;
        position: relative;
        padding-top: 15px;
        font-weight: 700;

        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 40px;
            height: 3px;
            background-color: #005770;
        }
    }
}

.member-card {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;

    .profile-image-wrap {
        width: 131px;
        flex-shrink: 0;

        .placeholder-img {
            width: 100%;
            height: 184px;
            background-color: #F2F2F2;
            border-radius: 6px;
            overflow: hidden;  
    
		    img {
		        width: 100%;
		        height: 100%;
		        object-fit: cover; 
		        /* object-fit: contain; */ 
		        object-position: center; 
		    }
        }
    }

    .member-info {
        flex: 1;
        /* padding-top: 10px; */

        .info-header {
            margin-bottom: 14px;

            .name {
                font-size: 22px;
                font-weight: 700;
                color: #252525;
                line-height: 1.9;
            }
            
            .name .sub-text {
                font-size: 14px;
                font-weight: normal;
                color: #666;
                line-height: 1.9;
            }
        }

        .info-body {
            display: flex;
            gap: 40px;

            .info-col {
                flex: 1;

                .col-title {
                    font-size: 20px;
                    font-weight: 700;
                    color: #252525;
                    margin-bottom: 20px;
                    border-bottom: 1px solid #CDD1D5;
                    padding-bottom: 11px;
                    line-height: 1.9;
                }

                .info-list {
                    list-style: none;
                    padding: 0;
                    margin: 0;

                    li {
                        font-size: 17px;
                        color: #454545;
                        margin-bottom: 12px;
                        padding-left: 16px;
                        position: relative;
                        line-height: 1.7;
                        font-weight: 400;

                        &::before {
                            content: '';
                            position: absolute;
                            left: 0;
                            top: 10px;
                            width: 5px;
                            height: 5px;
                            background-color: #005770;
                            border-radius: 50%;
                        }
                    }
                }
            }
        }
    }
}

/* Responsive */
@media (max-width: 1300px) {
    .member-card {
        flex-direction: column;
        gap: 20px;

        .profile-image-wrap {
            width: 150px;
            margin: 0 auto;
        }

        .member-info {
            text-align: center;

            .info-body {
                flex-direction: column;
                gap: 20px;
                text-align: left;
            }
        }
    }
}