/* about.twig専用CSS */
.about {
    background: #393e46;
}

.about-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    color: #fff;
    margin-bottom: 24px;
    font-size: 2rem;
}

.about-desc {
    color: #eee;
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.7;
    background: rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    padding: 18px 20px;
}

.members-section {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.members-title {
    color: #fff;
    margin-bottom: 24px;
    text-align: center;
}

.members-list {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.member-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    width: 220px;
    min-width: 220px;
    max-width: 220px;
    box-shadow: 0 2px 8px #0001;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.member-icon {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
    background: #eee;
}

.member-info-div {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.member-name {
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 6px;
    line-height: 1;
    display: flex;
    align-items: center;
}

.member-role {
    color: #00adb5;
    font-size: 1rem;
}

.member-comment {
    margin: 8px 0 0 0;
    font-size: 0.98rem;
    color: #333;
    text-align: center;
}

.x-link {
    margin-top: 0px;
    display: inline-block;
    align-items: center;
    vertical-align: middle;
    color: white;

}

.x-icon-bg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #222831;
    box-shadow: 0 1px 4px #0002;
}

.bi-twitter-x {
    font-size: 14px;
}

@media screen and (max-width: 800px) {

    .main-content {
        margin-bottom: 48px;
    }

    .about-section {
        width: 90%;
    }

    .members-list {
        padding: 0;
        margin: 0;
    }

    .member-item {
        margin-bottom: 16px;
        padding: 10px;
        border-radius: 8px;
    }

}