/* About page — about.html */

.content-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 5px solid var(--theme-teal-dark);
}

.crew-photo {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #eee;
}

main h2 {
    font-family: "Fredoka", sans-serif;
    color: var(--theme-teal-dark);
    margin-bottom: 1rem;
    font-size: 2rem;
}

main p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.bio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.bio-item h3 {
    color: var(--orange);
    font-family: "Fredoka", sans-serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.bio-item p {
    font-size: 0.95rem;
}
