/* ==========================================
   ヘッダー - 大絶賛の声セクション
   ========================================== */
.endorsements {
    margin: 15px 10px;
}

.endorsement-title {
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: #ff0050;
}

.endorsement-list {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.endorsement-item {
    text-align: center;
    width: 75px;
}

.endorsement-photo {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #ff6496;
    margin-bottom: 6px;
    box-shadow: 0 2px 10px rgba(255, 100, 150, 0.3);
}

.endorsement-name {
    font-size: 12px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 3px;
}

.endorsement-followers {
    font-size: 11px;
    color: #ff0050;
    font-weight: 600;
}

/* レスポンシブ対応 - PC */
@media (min-width: 768px) {
    .endorsements {
        margin: 30px 0;
    }
    
    .endorsement-title {
        font-size: 16px;
        margin-bottom: 20px;
    }
    
    .endorsement-list {
        gap: 20px;
    }
    
    .endorsement-item {
        width: 100px;
    }
    
    .endorsement-photo {
        width: 60px;
        height: 60px;
        margin-bottom: 8px;
    }
    
    .endorsement-name {
        font-size: 12px;
        margin-bottom: 3px;
    }
    
    .endorsement-followers {
        font-size: 11px;
    }
}