.bio-container {
    background-color: #eaeaea;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    position: relative;
    display: flex;
    flex-direction: column;

    padding: var(--space-2xl);
    max-width: 1050px;
    margin: 60px auto;

    align-items: stretch;
    margin-top: 150px;
}
/* Title */
.bio-title {
    margin-bottom: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-primary);
}

/* Top section */
.bio-top {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

/* Image */
.bio-image {
    border: 5px solid white; 
}

.bio-image img {
    width: 250px;
    height: auto;
    display: block;
    background-color: white;
}

.caption {
    font-size: var(--text-sm);
    color: #666;
    padding-top: 10px;
    background-color: white;
}

/* Text */
.bio-text {
    flex: 1;
    font-family: var(--font-primary);
}

.bio-text p {
    margin-bottom: var(--space-sm);
}

/* p + p {
  margin-top: var(--space-md);
} */

/* Full width section */

.bio-full p {
    margin-bottom: var(--space-md);
    font-family: var(--font-primary);
}

.bio-text a,
.bio-full a {
    text-decoration: none;
    color: var(--color-secondary);
}

/* Responsive */
@media (max-width: 950px) {
    .bio-top {
        flex-direction: column;
    }

    .bio-image img {
        width: 100%;
    }
}