.team-detail-container {
    max-width: 1200px !important;
    margin: 60px auto !important;
    padding: 0 20px !important;
}

.team-detail-wrapper {
    display: flex !important;
    gap: 40px !important;
    align-items: start !important;
    padding: 35px;
    background: #02457417;
    border-radius: 20px;
    /* box-shadow: 4px 6px 25px 0px #0000001a; */
	
}

.team-detail-image {
    flex: 0 0 300px !important;
}

.team-detail-image img {
	aspect-ratio:300/360;
	object-fit:cover;
/*     width: 100% !important;
    height: auto !important; */
    border-radius: 8px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1) !important;
	display:block;
}

.team-email {
    margin-top: 15px !important;
    font-size: 14px !important;
    color: #666 !important;
}

.team-email a {
    color: #007cba !important;
    text-decoration: underline;
    font-weight: 600;
}

.team-email a:hover {
    color: #7dc242 !important;
}

.team-detail-content {
    flex: 1 !important;
}

.team-detail-title {
    font-size: 30px !important;
    margin: 0 0 5px 0 !important;
    color: #333 !important;
    font-weight: 700 !important;
	color:#1676BA!important;
	
}

.team-detail-role {
    font-size: 1em !important;
    color: #888 !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 25px !important;
}

.team-detail-description {
    font-size: 1.1em !important;
    line-height: 1.7 !important;
    color: #555 !important;
}

.team-detail-description p {
    word-break: break-word;
    margin-bottom: 20px !important;
}
.team-detail-description p a{
	color:#1676BA!important;
}
.team-detail-description p a:hover {
    color: #4EC4CF!important;
	text-decoration:underline;
}

/* Responsive */
@media (max-width: 768px) {
    .team-detail-wrapper {
        flex-direction: column !important;
        gap: 20px !important;
    }
	.team-detail-description{text-align:center!important;}
    
    .team-detail-image {
        flex: none !important;
        max-width: 250px !important;
        margin: 0 auto !important;
        text-align: center;
    }
    .team-detail-image img{
        display: inline-block;
    }
    
    .team-detail-title {
        font-size: 25px !important;
        text-align: center !important;
    }
    
    .team-detail-role {
        text-align: center !important;
    }
    .team-email{
        text-align: center;
    }
}
@media (max-width: 767px) {
    .team-detail-container{
        margin: 50px auto !important;
    }
}