.membership-profile-container {
max-width: 800px;
margin: 40px auto;
padding: 0 20px;
}
.membership-profile-content {
background: #fff;
padding: 30px;
border: 1px solid #ddd;
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
border-radius: 4px;
}
.membership-profile-header {
display: flex;
align-items: center;
gap: 30px;
margin-bottom: 30px;
padding-bottom: 30px;
border-bottom: 2px solid #f0f0f0;
}
.membership-profile-image {
flex-shrink: 0;
}
.membership-profile-image img.profile-avatar,
.membership-profile-image img.avatar {
border-radius: 50%;
width: 150px;
height: 150px;
object-fit: cover;
border: 3px solid #f0f0f0;
display: block;
}
.membership-profile-info {
flex: 1;
}
.membership-profile-name {
margin: 0 0 10px 0;
font-size: 32px;
color: #333;
}
.membership-profile-grupo {
margin: 0;
font-size: 16px;
color: #666;
}
.membership-profile-bio {
margin-bottom: 30px;
padding-bottom: 30px;
border-bottom: 2px solid #f0f0f0;
}
.membership-profile-bio h2 {
font-size: 24px;
color: #333;
margin: 0 0 15px 0;
}
.membership-profile-bio-content {
font-size: 16px;
line-height: 1.6;
color: #555;
}
.membership-profile-bio-content p {
margin: 0 0 15px 0;
}
.membership-profile-bio-content p:last-child {
margin-bottom: 0;
}
.membership-profile-details {
display: grid;
gap: 20px;
}
.membership-profile-field {
padding: 15px;
background: #f9f9f9;
border-left: 4px solid #0073aa;
border-radius: 4px;
}
.membership-profile-field strong {
display: block;
margin-bottom: 5px;
color: #333;
font-size: 14px;
text-transform: uppercase;
letter-spacing: 0.5px;
}
.membership-profile-field span {
display: block;
color: #666;
font-size: 16px;
}
.membership-profile-field a {
color: #0073aa;
text-decoration: none;
}
.membership-profile-field a:hover {
text-decoration: underline;
}
@media screen and (max-width: 600px) {
.membership-profile-header {
flex-direction: column;
text-align: center;
}
.membership-profile-name {
font-size: 24px;
}
.membership-profile-image img.profile-avatar {
width: 120px;
height: 120px;
}
}