<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* Container */
.container-bio {
    max-width: 56.25rem; /* 900px */
    margin: auto;
    background: white;
    padding: 1.25rem; /* 20px */
    border-radius: 0.5rem; /* 8px */
    box-shadow: 0 0 0.625rem rgba(0, 0, 0, 0.1); /* 10px */
}

/* Profile Header */
.profile-header {
    display: flex;
    align-items: center;
    gap: 1.25rem; /* 20px */
    border-bottom: 0.125rem solid #a4b3bf; /* 2px */
    padding-bottom: 1.25rem; /* 20px */
    margin-bottom: 1.25rem; /* 20px */
}

/* Profile Photo */
.profile-photo {
    width: 9.375rem; /* 150px */
    height: 9.375rem; /* 150px */
    border-radius: 50%;
    border: 0.125rem solid #a4b3bf; /* 2px */
    object-fit: cover;
}

/* Profile Info */
.profile-info h1 {
    font-size: 1.625rem; /* 26px */
    margin: 0;
    color: #333;
}

.short-bio {
    font-size: 1.125rem; /* 18px */
    color: #555;
}

/* Profile Sections */
.profile-sections {
    display: flex;
    gap: 1.25rem; /* 20px */
    flex-wrap: wrap;
}

/* Profile Cards */
.profile-card {
    flex: 1;
    min-width: 15.625rem; /* 250px */
    background: #fff;
    border-radius: 0.5rem; /* 8px */
    padding: 0.9375rem; /* 15px */
    box-shadow: 0 0 0.3125rem rgba(0, 0, 0, 0.1); /* 5px */
}

.profile-card h3 {
    color: #a4b3bf;
    font-size: 1.25rem; /* 20px */
    border-bottom: 0.125rem solid #a4b3bf; /* 2px */
    padding-bottom: 0.3125rem; /* 5px */
    margin-bottom: 0.625rem; /* 10px */
}

.profile-card p {
    font-size: 1rem; /* 16px */
    color: #444;
}

.credential-gallery {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem; /* 10px */
    justify-content: start;
}

.credential-box {
    width: 9.375rem; /* 150px */
    height: auto;
    overflow: hidden;
    border: 0.0625rem solid #ddd; /* 1px */
    border-radius: 0.3125rem; /* 5px */
    padding: 0.3125rem; /* 5px */
    background: #f9f9f9;
    text-align: center;
}

.credential-box img {
    width: 100%;  /* Make image fit inside box */
    height: auto;
    object-fit: contain; /* Prevent stretching */
}
</pre></body></html>