/* リスト全体のコンテナ */
.team-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;
}

/* 1つの効果（1行1個） */
.reaction-list-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 16px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* 1段目：アイコンと名前 */
.row-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.el-icon {
    width: 28px;
    height: 28px;
}

.row-name {
    font-size: 1.25rem;
    font-weight: bold;
    color: #ffffff;
}

/* 2段目：説明文 */
.row-bottom {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

/* --- 指定色の反映 --- */

/* NumGreen: ターコイズ系 */
.text-num-green {
    color: #53CEC0;
    font-weight: 600;
}

/* bule: オレンジ・ゴールド系 */
.text-bule {
    color: #FFD780;
    font-weight: 600;
}