/* biography-archive.css
   member-archive.cssの内容をbiography用にクラス名を置換 */
.biography-archive-wrapper {
    width: var(--section-width);
    margin: 0 auto;
}

.biography-item {
    display: flex;
    margin-bottom: 40px;
}

.biography-photo {
    width: 300px;
    height: 300px;
    overflow: hidden;
    flex-shrink: 0;
    padding-right: 100px;
}

.biography-photo img {
    width: 100%;
    height: 100%;
}

.biography-info {
    flex: 1;
}

.biography-group-photo {
    margin-bottom: 40px;

    text-align: center;
}

.biography-group-photo img {
    max-width: 100%;
    max-height: 500px;
    margin: 0 auto;
}

/* スマートフォン向けメディアクエリ */
@media (max-width: 768px) {
    .biography-archive-wrapper {
        width: var(--section-width-mobile);
        padding: 0 15px;
    }

    .biography-item {
        display: flex;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .biography-photo {
        width: 100%;
        height: 200px;
        overflow: hidden;
        flex-shrink: 0;
        padding-right: 0;
        margin-bottom: 20px;
    }

    .biography-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .biography-info {
        flex: 1;
    }
}